From 8b6f6c82e4a4780d402eb01aa963cb5e748086e0 Mon Sep 17 00:00:00 2001 From: Peter Rehm Date: Tue, 7 Feb 2017 10:02:41 +0100 Subject: [PATCH] Removed comments --- src/Session.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Session.php b/src/Session.php index 8b92e2ab0..583f936ab 100644 --- a/src/Session.php +++ b/src/Session.php @@ -143,9 +143,7 @@ public function getSelectorsHandler() */ public function visit($url) { - // start session if needed $this->start(); - $this->driver->visit($url); } @@ -364,7 +362,6 @@ public function wait($time, $condition = 'false') */ public function resizeWindow($width, $height, $name = null) { - // start session if needed $this->start(); $this->driver->resizeWindow($width, $height, $name); } @@ -376,7 +373,6 @@ public function resizeWindow($width, $height, $name = null) */ public function maximizeWindow($name = null) { - // start session if needed $this->start(); $this->driver->maximizeWindow($name); }