/**
  * 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
 public function open($path)
 {
     parent::open($this->baseUrl . $path, 'true');
 }