Example #1
0
 /**
  * Open tab.
  *
  * @param string $tabName
  * @return Tab
  */
 public function openTab($tabName)
 {
     if (!$this->isTabVisible($tabName)) {
         $this->showAdvancedSettings();
     }
     return parent::openTab($tabName);
 }
Example #2
0
 /**
  * Open tab.
  *
  * @param string $tabName
  * @return CustomerForm
  */
 public function openTab($tabName)
 {
     parent::openTab($tabName);
     $this->waitForElementNotVisible($this->tabReadiness);
     return $this;
 }
 /**
  * Open tab.
  *
  * @param string $tabName
  * @return Tab
  */
 public function openTab($tabName)
 {
     $this->browser->find($this->pageTitle)->click();
     // Handle menu overlap problem
     return parent::openTab($tabName);
 }
Example #4
0
 /**
  * Open tab.
  *
  * @param string $tabName
  * @return Tab
  */
 public function openTab($tabName)
 {
     $this->showAdvancedSettings();
     return parent::openTab($tabName);
 }