public function SessionTest::testSwitchToIFrame in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::testSwitchToIFrame()
File
- vendor/behat/ mink/ tests/ SessionTest.php, line 255 
Class
Namespace
Behat\Mink\TestsCode
public function testSwitchToIFrame() {
  $this->driver
    ->expects($this
    ->once())
    ->method('switchToIFrame')
    ->with('test');
  $this->session
    ->switchToIFrame('test');
}