function DrupalWebTestCase::assertFieldByName
Asserts that a field exists in the current page with the given name and value.
Parameters
$name: Name of field to assert.
$value: (optional) Value of the field to assert. You may pass in NULL (default) to skip checking the actual value, while still checking that the field exists.
$message: Message to display.
$group: The group this message belongs to.
Return value
TRUE on pass, FALSE on fail.
50 calls to DrupalWebTestCase::assertFieldByName()
- AggregatorConfigurationTestCase::testSettingsPage in modules/
aggregator/ aggregator.test - Tests the settings form to ensure the correct default values are used.
- AggregatorRenderingTestCase::testBlockLinks in modules/
aggregator/ aggregator.test - Adds a feed block to the page and checks its links.
- CommentAnonymous::testAnonymous in modules/
comment/ comment.test - Test anonymous comment functionality.
- CommentHelperCase::postComment in modules/
comment/ comment.test - Post comment.
- CommentPreviewTest::testCommentEditPreviewSave in modules/
comment/ comment.test - Test comment edit, preview, and save.
File
-
modules/
simpletest/ drupal_web_test_case.php, line 3708
Class
- DrupalWebTestCase
- Test case for typical Drupal tests.
Code
protected function assertFieldByName($name, $value = NULL, $message = NULL) {
if (!isset($message)) {
if (!isset($value)) {
$message = t('Found field with name @name', array(
'@name' => var_export($name, TRUE),
));
}
else {
$message = t('Found field with name @name and value @value', array(
'@name' => var_export($name, TRUE),
'@value' => var_export($value, TRUE),
));
}
}
return $this->assertFieldByXPath($this->constructFieldXpath('name', $name), $value, $message, t('Browser'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.