protected function DrupalWebTestCase::assertFieldChecked

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

Parameters

$id: ID of field to assert.

$message: (optional) Message to display.

Return value

TRUE on pass, FALSE on fail.

12 calls to DrupalWebTestCase::assertFieldChecked()
FormsRebuildTestCase::testRebuildPreservesValues in drupal/modules/simpletest/tests/form.test
Tests preservation of values.
LocaleConfigurationTest::testLanguageConfiguration in drupal/modules/locale/locale.test
Functional tests for adding, editing and deleting languages.
LocaleUserCreationTest::testLocalUserCreation in drupal/modules/locale/locale.test
Functional test for language handling during user creation.
MenuUpgradePathTestCase::testMenuUpgrade in drupal/modules/simpletest/tests/upgrade/upgrade.menu.test
Test a successful upgrade.
MultiStepNodeFormBasicOptionsTest::testMultiStepNodeFormBasicOptions in drupal/modules/node/node.test
Tests changing the default values of basic options to ensure they persist.

... See full list

File

drupal/modules/simpletest/drupal_web_test_case.php, line 3508

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertFieldChecked($id, $message = '') {
  $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,
  )), t('Browser'));
}