You are here

public function WebAssert::fieldEnabled in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/WebAssert.php \Drupal\Tests\WebAssert::fieldEnabled()

Checks that a given form field element is enabled.

Parameters

string $field: One of id|name|label|value for the 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

\Behat\Mink\Exception\ExpectationException

File

core/tests/Drupal/Tests/WebAssert.php, line 609

Class

WebAssert
Defines a class with methods for asserting presence of elements during tests.

Namespace

Drupal\Tests

Code

public function fieldEnabled($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();
  $node = $container
    ->findField($field);
  if ($node === NULL) {
    throw new ElementNotFoundException($this->session
      ->getDriver(), 'field', 'id|name|label|value', $field);
  }
  if ($node
    ->hasAttribute('disabled')) {
    throw new ExpectationException("Field {$field} is not enabled", $this->session
      ->getDriver());
  }
  return $node;
}