9 use Magento\Mtf\TestStep\TestStepInterface;
10 use Magento\SalesRule\Test\Page\Adminhtml\PromoQuoteEdit;
11 use Magento\SalesRule\Test\Page\Adminhtml\PromoQuoteIndex;
23 private $promoQuoteIndex;
30 private $promoQuoteEdit;
45 PromoQuoteIndex $promoQuoteIndex,
46 PromoQuoteEdit $promoQuoteEdit,
49 $this->promoQuoteIndex = $promoQuoteIndex;
50 $this->promoQuoteEdit = $promoQuoteEdit;
51 $this->salesRules = $salesRules;
61 $this->promoQuoteIndex->open();
62 foreach ($this->salesRules as $salesRuleName) {
63 $filter = [
'name' => $salesRuleName];
64 $this->promoQuoteIndex->getPromoQuoteGrid()->searchAndOpen($filter);
65 $this->promoQuoteEdit->getFormPageActions()->delete();
66 $this->promoQuoteEdit->getModalBlock()->acceptAlert();
__construct(PromoQuoteIndex $promoQuoteIndex, PromoQuoteEdit $promoQuoteEdit, array $salesRules)