Visit specified URL and automatically start session if not already running.
string $url url of the page:
void
public function visit(string $url) { // start session if needed if (!$this->isStarted()) { $this->start(); } $this->driver ->visit($url); }