public function EventsTest::testDoubleClick in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/driver-testsuite/tests/Js/EventsTest.php \Behat\Mink\Tests\Driver\Js\EventsTest::testDoubleClick()
@group mouse-events
File
- vendor/
behat/ mink/ driver-testsuite/ tests/ Js/ EventsTest.php, line 25
Class
Namespace
Behat\Mink\Tests\Driver\JsCode
public function testDoubleClick() {
$this
->getSession()
->visit($this
->pathTo('/js_test.html'));
$clicker = $this
->getAssertSession()
->elementExists('css', '.elements div#clicker');
$this
->assertEquals('not clicked', $clicker
->getText());
$clicker
->doubleClick();
$this
->assertEquals('double clicked', $clicker
->getText());
}