Sylius\Behat\Page\Shop\Checkout\SelectShippingPageInterface::selectShippingMethod PHP Method

selectShippingMethod() public method

public selectShippingMethod ( string $shippingMethod )
$shippingMethod string
    public function selectShippingMethod($shippingMethod);

Usage Example

Esempio n. 1
0
 /**
  * @When /^I change shipping method to "([^"]*)"$/
  */
 public function iChangeShippingMethod($shippingMethodName)
 {
     $this->selectPaymentPage->changeShippingMethod();
     $this->selectShippingPage->selectShippingMethod($shippingMethodName);
     $this->selectShippingPage->nextStep();
 }