function UiHelperTrait::cssSelect

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/UiHelperTrait.php \Drupal\Tests\UiHelperTrait::cssSelect()
  2. 10 core/tests/Drupal/Tests/UiHelperTrait.php \Drupal\Tests\UiHelperTrait::cssSelect()
  3. 8.9.x core/tests/Drupal/Tests/UiHelperTrait.php \Drupal\Tests\UiHelperTrait::cssSelect()

Searches elements using a CSS selector in the raw content.

The search is relative to the root element (HTML tag normally) of the page.

Parameters

string $selector: CSS selector to use in the search.

Return value

\Behat\Mink\Element\NodeElement[] The list of elements on the page that match the selector.

3 calls to UiHelperTrait::cssSelect()
ConfigImportUploadTest::testImport in core/modules/config/tests/src/Functional/ConfigImportUploadTest.php
Tests importing configuration.
NestedFormTest::testNestedEntityFormEntityLevelValidation in core/modules/field/tests/src/Functional/NestedFormTest.php
Tests entity level validation within subforms.
UiHelperTrait::checkForMetaRefresh in core/tests/Drupal/Tests/UiHelperTrait.php
Checks for meta refresh tag and if found call drupalGet() recursively.

File

core/tests/Drupal/Tests/UiHelperTrait.php, line 557

Class

UiHelperTrait
Provides UI helper methods.

Namespace

Drupal\Tests

Code

protected function cssSelect($selector) {
  return $this->getSession()
    ->getPage()
    ->findAll('css', $selector);
}

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