Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
GridPageActions.php
Go to the documentation of this file.
1 <?php
8 
14 {
20  protected $addNewButton = '#add';
21 
27  protected $createStoreButton = '#add_group';
28 
34  public function addNew()
35  {
36  $this->_rootElement->find($this->addNewButton)->click();
37  }
38 
44  public function createStoreGroup()
45  {
46  $this->_rootElement->find($this->createStoreButton)->click();
47  }
48 }