Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
UpdateGrid.php
Go to the documentation of this file.
1 <?php
7 
8 use Magento\Mtf\Client\Locator;
9 use Magento\Setup\Test\Fixture\Extension;
10 
16 class UpdateGrid extends AbstractGrid
17 {
23  protected $updateAllButton = "[ng-click*='updateAll']";
24 
30  protected $dataGrid = '#updateExtensionGrid';
31 
37  public function clickUpdateAllButton()
38  {
39  $this->_rootElement->find($this->updateAllButton, Locator::SELECTOR_CSS)->click();
40  }
41 }