Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
MultishippingCheckoutCart.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Mtf\Client\Locator;
10 use Magento\Mtf\Factory\Factory;
11 use Magento\Mtf\Page\Page;
12 
16 class MultishippingCheckoutCart extends Page
17 {
21  const MCA = 'multishipping/checkout/cart';
22 
28  protected $multishippingLinkBlock = '.action.multicheckout';
29 
35  public function getMultishippingLinkBlock()
36  {
37  return Factory::getBlockFactory()->getMagentoMultishippingCheckoutLink(
38  $this->browser->find($this->multishippingLinkBlock, Locator::SELECTOR_CSS)
39  );
40  }
41 }