protected function WebTestBase::assertFieldChecked

Asserts that a checkbox field in the current page is checked.

Parameters

$id: Id of 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.

16 calls to WebTestBase::assertFieldChecked()
LanguageConfigurationElementTest::testLanguageConfigurationElement in drupal/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationElementTest.php
Tests the language settings have been saved.
LanguageConfigurationTest::testLanguageConfiguration in drupal/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationTest.php
Functional tests for adding, editing and deleting languages.
LanguageCustomLanguageConfigurationTest::testLanguageConfiguration in drupal/core/modules/language/lib/Drupal/language/Tests/LanguageCustomLanguageConfigurationTest.php
Functional tests for adding, editing and deleting languages.
LanguageListTest::testLanguageList in drupal/core/modules/language/lib/Drupal/language/Tests/LanguageListTest.php
Functional tests for adding, editing and deleting languages.
MultiStepNodeFormBasicOptionsTest::testMultiStepNodeFormBasicOptions in drupal/core/modules/node/lib/Drupal/node/Tests/MultiStepNodeFormBasicOptionsTest.php
Tests changing the default values of basic options to ensure they persist.

... See full list

File

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

Class

WebTestBase
Test case for typical Drupal tests.

Namespace

Drupal\simpletest

Code

protected function assertFieldChecked($id, $message = '', $group = 'Browser') {
  $elements = $this
    ->xpath('//input[@id=:id]', array(
    ':id' => $id,
  ));
  return $this
    ->assertTrue(isset($elements[0]) && !empty($elements[0]['checked']), $message ? $message : t('Checkbox field @id is checked.', array(
    '@id' => $id,
  )), $group);
}