/**
  * Open tab.
  *
  * @param string $tabName
  * @return Tab
  */
 public function openTab($tabName)
 {
     parent::openTab($tabName);
     $this->getTemplateBlock()->waitLoader();
     return $this;
 }
Esempio n. 2
0
 /**
  * Open product tab.
  *
  * @param string $tabName
  * @return Tab
  */
 public function openTab($tabName)
 {
     $this->_rootElement->find($this->productInfo)->click();
     parent::openTab($tabName);
     $this->getTemplateBlock()->waitLoader();
     return $this;
 }