function WebAssert::hiddenFieldExists
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/WebAssert.php \Drupal\Tests\WebAssert::hiddenFieldExists()
- 10 core/tests/Drupal/Tests/WebAssert.php \Drupal\Tests\WebAssert::hiddenFieldExists()
- 11.x core/tests/Drupal/Tests/WebAssert.php \Drupal\Tests\WebAssert::hiddenFieldExists()
Checks that specific hidden field exists.
Parameters
string $field: One of id|name|value for the hidden field.
\Behat\Mink\Element\TraversableElement $container: (optional) The document to check against. Defaults to the current page.
Return value
\Behat\Mink\Element\NodeElement The matching element.
Throws
\Behat\Mink\Exception\ElementNotFoundException
2 calls to WebAssert::hiddenFieldExists()
- WebAssert::hiddenFieldValueEquals in core/
tests/ Drupal/ Tests/ WebAssert.php - Checks that specific hidden field have provided value.
- WebAssert::hiddenFieldValueNotEquals in core/
tests/ Drupal/ Tests/ WebAssert.php - Checks that specific hidden field doesn't have the provided value.
File
-
core/
tests/ Drupal/ Tests/ WebAssert.php, line 640
Class
- WebAssert
- Defines a class with methods for asserting presence of elements during tests.
Namespace
Drupal\TestsCode
public function hiddenFieldExists($field, TraversableElement $container = NULL) {
if (func_num_args() > 2) {
@trigger_error('Calling ' . __METHOD__ . ' with more than two arguments is deprecated in drupal:9.1.0 and will throw an \\InvalidArgumentException in drupal:10.0.0. See https://www.drupal.org/node/3162537', E_USER_DEPRECATED);
}
$container = $container ?: $this->session
->getPage();
if ($node = $container->find('hidden_field_selector', [
'hidden_field',
$field,
])) {
return $node;
}
throw new ElementNotFoundException($this->session
->getDriver(), 'form hidden field', 'id|name|value', $field);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.