public function BambooTwigTestBase::assertElementPresent in Bamboo Twig 8
Same name and namespace in other branches
- 8.5 tests/src/Functional/BambooTwigTestBase.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigTestBase::assertElementPresent()
- 8.2 tests/src/Functional/BambooTwigTestBase.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigTestBase::assertElementPresent()
- 8.3 tests/src/Functional/BambooTwigTestBase.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigTestBase::assertElementPresent()
- 8.4 tests/src/Functional/BambooTwigTestBase.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigTestBase::assertElementPresent()
Asserts that the element with the given CSS selector is present.
Parameters
string $css_selector: The CSS selector identifying the element to check.
Throws
Behat\Mink\Exception\ElementHtmlException When the condition is not fulfilled.
Overrides AssertLegacyTrait::assertElementPresent
See also
\Behat\Mink\WebAssert::elementExists
13 calls to BambooTwigTestBase::assertElementPresent()
- BambooTwigConfigsTest::testGetConfig in tests/
src/ Functional/ BambooTwigConfigsTest.php - @covers Drupal\bamboo_twig_config\TwigExtension\Configs::getConfig
- BambooTwigConfigsTest::testGetState in tests/
src/ Functional/ BambooTwigConfigsTest.php - @covers Drupal\bamboo_twig_config\TwigExtension\Configs::getState
- BambooTwigFilesTest::testExtensionGuesser in tests/
src/ Functional/ BambooTwigFilesTest.php - @covers Drupal\bamboo_twig_files\TwigExtension\Files::extensionGuesser
- BambooTwigFilesTest::testThemeUrl in tests/
src/ Functional/ BambooTwigFilesTest.php - @covers Drupal\bamboo_twig_files\TwigExtension\Files::themeUrl
- BambooTwigLoaderTest::testBlock in tests/
src/ Functional/ BambooTwigLoadersTest.php - @covers Drupal\bamboo_twig_loaders\TwigExtension\Loader::loadBlock
File
- tests/
src/ Functional/ BambooTwigTestBase.php, line 58
Class
- BambooTwigTestBase
- Has some additional helper methods to make test code more readable.
Namespace
Drupal\Tests\bamboo_twig\FunctionalCode
public function assertElementPresent($css_selector) {
$this
->assertSession()
->elementExists('css', $css_selector);
}