public function NodeElementTest::testIsVisible in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/tests/Element/NodeElementTest.php \Behat\Mink\Tests\Element\NodeElementTest::testIsVisible()
File
- vendor/
behat/ mink/ tests/ Element/ NodeElementTest.php, line 410
Class
Namespace
Behat\Mink\Tests\ElementCode
public function testIsVisible() {
$node = new NodeElement('some_xpath', $this->session);
$this->driver
->expects($this
->exactly(2))
->method('isVisible')
->with('some_xpath')
->will($this
->onConsecutiveCalls(true, false));
$this
->assertTrue($node
->isVisible());
$this
->assertFalse($node
->isVisible());
}