protected function DrupalWebTestCase::assertFieldById

7.x drupal_web_test_case.php protected DrupalWebTestCase::assertFieldById($id, $value = '', $message = '')

Asserts that a field exists in the current page with the given id and value.

Parameters

$id: Id of field to assert.

$value: Value of the field to assert.

$message: Message to display.

$group: The group this message belongs to.

Return value

TRUE on pass, FALSE on fail.

2 calls to DrupalWebTestCase::assertFieldById()
FieldUIManageFieldsTestCase::testDefaultValue in drupal-7.x/modules/field_ui/field_ui.test
Tests that default value is correctly validated and saved.
FormsRebuildTestCase::testRebuildPreservesValues in drupal-7.x/modules/simpletest/tests/form.test
Tests preservation of values.

File

drupal-7.x/modules/simpletest/drupal_web_test_case.php, line 3376

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertFieldById($id, $value = '', $message = '') {
  return $this->assertFieldByXPath($this->constructFieldXpath('id', $id), $value, $message ? $message : t('Found field by id @id', array('@id' => $id)), t('Browser'));
}