protected function WebTestBase::assertFieldByName

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

Parameters

$name: Name of field to assert.

$value: Value of the field to assert.

$message: (optional) A message to display with the assertion. Do not translate messages: use format_string() to embed variables in the message text, not t(). If left blank, a default message will be displayed.

$group: (optional) The group this message is in, which is displayed in a column in test output. Use 'Debug' to indicate this is debugging output. Do not translate this string. Defaults to 'Browser'; most tests do not override this default.

Return value

TRUE on pass, FALSE on fail.

65 calls to WebTestBase::assertFieldByName()

File

drupal/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php, line 2791
Definition of Drupal\simpletest\WebTestBase.

Class

WebTestBase
Test case for typical Drupal tests.

Namespace

Drupal\simpletest

Code

protected function assertFieldByName($name, $value = NULL, $message = NULL, $group = 'Browser') {
  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, $group);
}