コード例 #1
0
 /**
  * overload default method call and add some more actions,
  * for example resizing window to maximum available space
  *
  * @param string $url  url, which we want to open
  * $return @inheritdoc
  */
 protected function open($url)
 {
     $this->windowMaximize();
     parent::open($url);
     $this->windowMaximize();
     $this->checkPageError();
 }
コード例 #2
0
ファイル: TestCase.php プロジェクト: esmo/opus4-selenium
 public function open($path)
 {
     parent::open($this->baseUrl . $path, 'true');
 }