You are here

public function Session::maximizeWindow in Zircon Profile 8.0

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

Maximize the window if it is not maximized already.

Parameters

string $name window name (null for the main window):

File

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

Class

Session
Mink session.

Namespace

Behat\Mink

Code

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