public function tearDown()
 {
     parent::tearDown();
     if ($this->webDriver !== NULL) {
         $this->webDriver->close();
     }
 }
 protected function tearDown()
 {
     parent::tearDown();
     if (!is_null($this->remoteWebDriver)) {
         $this->remoteWebDriver->close();
         $this->remoteWebDriver = null;
     }
 }
Beispiel #3
0
 protected function tearDown()
 {
     $this->webDriver->close();
 }
 public function tearDown()
 {
     $this->webDriver->close();
 }