You are here

protected function TestBase::click in The CodeMirror Editor 8

Clicks button or link located by it's XPath query.

Overrides UiHelperTrait::click

1 call to TestBase::click()
FormatterTest::testFormatter in tests/src/FunctionalJavascript/FormatterTest.php
Test callback.

File

tests/src/FunctionalJavascript/TestBase.php, line 74

Class

TestBase
Base class for CodeMirror editor tests.

Namespace

Drupal\Tests\codemirror_editor\FunctionalJavascript

Code

protected function click($xpath) {
  $this
    ->getSession()
    ->getDriver()
    ->click($xpath);
}