function DrupalWebTestCase::assertNoFieldByXPath

Asserts that a field doesn't exist or its value doesn't match, by XPath.

Parameters

$xpath: XPath used to find the field.

$value: (optional) Value for the field, to assert that the field's value on the page doesn't match it. You may pass in NULL to skip checking the value, while still checking that the field doesn't exist.

$message: (optional) Message to display.

$group: (optional) The group this message belongs to.

Return value

TRUE on pass, FALSE on fail.

17 calls to DrupalWebTestCase::assertNoFieldByXPath()
BlockTestCase::testBlock in modules/block/block.test
Test configuring and moving a module-define block to specific regions.
DrupalWebTestCase::assertNoField in modules/simpletest/drupal_web_test_case.php
Asserts that a field does not exist with the given name or ID.
DrupalWebTestCase::assertNoFieldById in modules/simpletest/drupal_web_test_case.php
Asserts that a field does not exist with the given ID and value.
DrupalWebTestCase::assertNoFieldByName in modules/simpletest/drupal_web_test_case.php
Asserts that a field does not exist with the given name and value.
FieldFormTestCase::testFieldFormMultivalueWithRequiredRadio in modules/field/tests/field.test
Tests widget handling of multiple required radios.

... See full list

File

modules/simpletest/drupal_web_test_case.php, line 3674

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertNoFieldByXPath($xpath, $value = NULL, $message = '', $group = 'Other') {
    $fields = $this->xpath($xpath);
    // If value specified then check array for match.
    $found = TRUE;
    if (isset($value)) {
        $found = FALSE;
        if ($fields) {
            foreach ($fields as $field) {
                if ($field['value'] == $value) {
                    $found = TRUE;
                }
            }
        }
    }
    return $this->assertFalse($fields && $found, $message, $group);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.