Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
OpenProductAttributesPageStep.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Catalog\Test\Page\Adminhtml\CatalogProductAttributeIndex;
10 use Magento\Mtf\TestStep\TestStepInterface;
11 
15 class OpenProductAttributesPageStep implements TestStepInterface
16 {
23 
28  public function __construct(CatalogProductAttributeIndex $catalogProductAttributeIndex)
29  {
30  $this->catalogProductAttributeIndex = $catalogProductAttributeIndex;
31  }
32 
38  public function run()
39  {
40  $this->catalogProductAttributeIndex->open();
41  }
42 }
__construct(CatalogProductAttributeIndex $catalogProductAttributeIndex)