You are here

public function Session::switchToIFrame in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/behat/mink/src/Session.php \Behat\Mink\Session::switchToIFrame()

Switches to specific iFrame.

Parameters

string $name iframe name (null for switching back):

File

vendor/behat/mink/src/Session.php, line 312

Class

Session
Mink session.

Namespace

Behat\Mink

Code

public function switchToIFrame($name = null) {
  $this->driver
    ->switchToIFrame($name);
}