コード例 #1
0
ファイル: ProductForm.php プロジェクト: Zash22/magento
 /**
  * Open tab.
  *
  * @param string $tabName
  * @return Tab
  */
 public function openTab($tabName)
 {
     if (!$this->isTabVisible($tabName)) {
         $this->showAdvancedSettings();
     }
     return parent::openTab($tabName);
 }
コード例 #2
0
ファイル: CustomerForm.php プロジェクト: nja78/magento2
 /**
  * Open tab.
  *
  * @param string $tabName
  * @return CustomerForm
  */
 public function openTab($tabName)
 {
     parent::openTab($tabName);
     $this->waitForElementNotVisible($this->tabReadiness);
     return $this;
 }
コード例 #3
0
 /**
  * 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);
 }
コード例 #4
0
 /**
  * Open tab.
  *
  * @param string $tabName
  * @return Tab
  */
 public function openTab($tabName)
 {
     $this->showAdvancedSettings();
     return parent::openTab($tabName);
 }