Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ClickCheckDataStep.php
Go to the documentation of this file.
1 <?php
7 
8 use Magento\ImportExport\Test\Page\Adminhtml\AdminImportIndex;
9 use Magento\Mtf\TestStep\TestStepInterface;
10 
14 class ClickCheckDataStep implements TestStepInterface
15 {
21  private $adminImportIndex;
22 
26  public function __construct(AdminImportIndex $adminImportIndex)
27  {
28  $this->adminImportIndex = $adminImportIndex;
29  }
30 
36  public function run()
37  {
38  $this->adminImportIndex->getFormPageActions()->clickCheckData();
39  }
40 }