Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ProceedToMultipleAddressCheckoutStep.php
Go to the documentation of this file.
1 <?php
7 
8 use Magento\Checkout\Test\Page\CheckoutCart;
9 use Magento\Mtf\TestStep\TestStepInterface;
10 
14 class ProceedToMultipleAddressCheckoutStep implements TestStepInterface
15 {
21  protected $checkoutCart;
22 
27  {
28  $this->checkoutCart = $checkoutCart;
29  }
30 
36  public function run()
37  {
38  $this->checkoutCart->open();
39  $this->checkoutCart->getMultipleAddressCheckoutBlock()->multipleAddressesCheckout();
40  }
41 }