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.

57 calls to WebTestBase::assertFieldByName()
AggregatorConfigurationTest::testSettingsPage in drupal/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorConfigurationTest.php
Tests the settings form to ensure the correct default values are used.
AggregatorRenderingTest::testBlockLinks in drupal/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php
Add a feed block to the page and checks its links.
ArbitraryRebuildTest::testUserRegistrationMultipleField in drupal/core/modules/system/lib/Drupal/system/Tests/Form/ArbitraryRebuildTest.php
Tests a rebuild caused by a multiple value field.
ArbitraryRebuildTest::testUserRegistrationRebuild in drupal/core/modules/system/lib/Drupal/system/Tests/Form/ArbitraryRebuildTest.php
Tests a basic rebuild with the user registration form.
CommentAnonymousTest::testAnonymous in drupal/core/modules/comment/lib/Drupal/comment/Tests/CommentAnonymousTest.php
Tests anonymous comment functionality.

... See full list

File

drupal/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php, line 2603
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);
}