class HiddenFieldSelector

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/HiddenFieldSelector.php \Drupal\Tests\HiddenFieldSelector
  2. 8.9.x core/tests/Drupal/Tests/HiddenFieldSelector.php \Drupal\Tests\HiddenFieldSelector
  3. 10 core/tests/Drupal/Tests/HiddenFieldSelector.php \Drupal\Tests\HiddenFieldSelector

Extends PartialNamedSelector to allow retrieval of hidden fields.

Hierarchy

Expanded class hierarchy of HiddenFieldSelector

See also

\Behat\Mink\Selector\PartialNamedSelector

File

core/tests/Drupal/Tests/HiddenFieldSelector.php, line 14

Namespace

Drupal\Tests
View source
class HiddenFieldSelector extends PartialNamedSelector {
    
    /**
     * {@inheritdoc}
     */
    public function __construct() {
        $xpath = ".//input[%lowercaseType% = 'hidden' and (%idOrNameMatch% or %valueMatch%)]";
        $this->registerNamedXpath('hidden_field', $xpath);
        parent::__construct();
    }

}

Members

Title Sort descending Modifiers Object type Summary
HiddenFieldSelector::__construct public function

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