You are here

public function Session::restart in Zircon Profile 8.0

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

Restart session driver.

File

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

Class

Session
Mink session.

Namespace

Behat\Mink

Code

public function restart() {
  $this->driver
    ->stop();
  $this->driver
    ->start();
}