You are here

public function Session::visit in Zircon Profile 8.0

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

Visit specified URL.

Parameters

string $url url of the page:

File

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

Class

Session
Mink session.

Namespace

Behat\Mink

Code

public function visit($url) {
  $this->driver
    ->visit($url);
}