1 backdrop_web_test_case.php protected BackdropWebTestCase::assertField($field, $message = '', $group = 'Other')

Asserts that a field exists with the given name or id.

Parameters

$field: Name or id of field to assert.

$message: Message to display.

$group: The group this message belongs to.

Return value

TRUE on pass, FALSE on fail.:

File

core/modules/simpletest/backdrop_web_test_case.php, line 3802

Class

BackdropWebTestCase
Test case for typical Backdrop tests.

Code

protected function assertField($field, $message = '', $group = 'Other') {
  return $this->assertFieldByXPath($this->constructFieldXpath('name', $field) . '|' . $this->constructFieldXpath('id', $field), NULL, $message, $group);
}