You are here

public function Session::getWindowNames in Zircon Profile 8.0

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

Return the names of all open windows.

Return value

array Array of all open window's names.

File

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

Class

Session
Mink session.

Namespace

Behat\Mink

Code

public function getWindowNames() {
  return $this->driver
    ->getWindowNames();
}