function UiHelperTrait::cssSelect

Same name and namespace in other branches
  1. 10 core/tests/Drupal/Tests/UiHelperTrait.php \Drupal\Tests\UiHelperTrait::cssSelect()
  2. 11.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.

37 calls to UiHelperTrait::cssSelect()
AjaxBlockTest::testAddAjaxBlock in core/modules/layout_builder/tests/src/FunctionalJavascript/AjaxBlockTest.php
Tests configuring a field block for a user field.
BasicTest::testViewsWizardAndListing in core/modules/views/tests/src/Functional/Wizard/BasicTest.php
BlockContentTypeTest::testBlockContentTypeEditing in core/modules/block_content/tests/src/Functional/BlockContentTypeTest.php
Tests editing a block type using the UI.
BulkFormAccessTest::testNodeEditAccess in core/modules/node/tests/src/Functional/Views/BulkFormAccessTest.php
Tests if nodes that may not be edited, can not be edited in bulk.
ConfigImportUploadTest::testImport in core/modules/config/tests/src/Functional/ConfigImportUploadTest.php
Tests importing configuration.

... See full list

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.