public function HoverTest::testMouseOverHover in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/driver-testsuite/tests/Css/HoverTest.php \Behat\Mink\Tests\Driver\Css\HoverTest::testMouseOverHover()
@group mouse-events
File
- vendor/
behat/ mink/ driver-testsuite/ tests/ Css/ HoverTest.php, line 12
Class
Namespace
Behat\Mink\Tests\Driver\CssCode
public function testMouseOverHover() {
$this
->getSession()
->visit($this
->pathTo('/css_mouse_events.html'));
$this
->findById('reset-square')
->mouseOver();
$this
->assertActionSquareHeight(100);
$this
->findById('action-square')
->mouseOver();
$this
->assertActionSquareHeight(200);
}