You are here

public function EventsTest::testClick in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/behat/mink/driver-testsuite/tests/Js/EventsTest.php \Behat\Mink\Tests\Driver\Js\EventsTest::testClick()

@group mouse-events

File

vendor/behat/mink/driver-testsuite/tests/Js/EventsTest.php, line 12

Class

EventsTest

Namespace

Behat\Mink\Tests\Driver\Js

Code

public function testClick() {
  $this
    ->getSession()
    ->visit($this
    ->pathTo('/js_test.html'));
  $clicker = $this
    ->getAssertSession()
    ->elementExists('css', '.elements div#clicker');
  $this
    ->assertEquals('not clicked', $clicker
    ->getText());
  $clicker
    ->click();
  $this
    ->assertEquals('single clicked', $clicker
    ->getText());
}