Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
magento2-base
dev
tests
functional
tests
app
Magento
SalesRule
Test
TestStep
ApplySalesRuleOnCheckoutStep.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\SalesRule\Test\TestStep
;
8
9
use Magento\Checkout\Test\Page\CheckoutOnepage;
10
use
Magento\SalesRule\Test\Fixture\SalesRule
;
11
use Magento\Mtf\TestStep\TestStepInterface;
12
16
class
ApplySalesRuleOnCheckoutStep
implements
TestStepInterface
17
{
23
protected
$checkoutOnepage
;
24
30
protected
$salesRule
;
31
37
public
function
__construct
(CheckoutOnepage
$checkoutOnepage
, SalesRule
$salesRule
=
null
)
38
{
39
$this->checkoutOnepage =
$checkoutOnepage
;
40
$this->salesRule =
$salesRule
;
41
}
42
48
public
function
run
()
49
{
50
if
($this->salesRule !==
null
) {
51
$this->checkoutOnepage->getDiscountCodesBlock()->applyCouponCode($this->salesRule->getCouponCode());
52
}
53
}
54
}
Magento\SalesRule\Test\TestStep\ApplySalesRuleOnCheckoutStep\$checkoutOnepage
$checkoutOnepage
Definition:
ApplySalesRuleOnCheckoutStep.php:23
Magento\SalesRule\Test\TestStep\ApplySalesRuleOnCheckoutStep
Definition:
ApplySalesRuleOnCheckoutStep.php:16
Magento\SalesRule\Test\Fixture\SalesRule
Definition:
ConditionsSerialized.php:7
Magento\SalesRule\Test\TestStep\ApplySalesRuleOnCheckoutStep\__construct
__construct(CheckoutOnepage $checkoutOnepage, SalesRule $salesRule=null)
Definition:
ApplySalesRuleOnCheckoutStep.php:37
Magento\SalesRule\Test\TestStep
Definition:
ApplySalesRuleOnBackendStep.php:7
Magento\SalesRule\Test\TestStep\ApplySalesRuleOnCheckoutStep\run
run()
Definition:
ApplySalesRuleOnCheckoutStep.php:48
Magento\SalesRule\Test\TestStep\ApplySalesRuleOnCheckoutStep\$salesRule
$salesRule
Definition:
ApplySalesRuleOnCheckoutStep.php:30