Sylius\Behat\Page\Shop\Checkout\SelectPaymentPageInterface::changeShippingMethod PHP 메소드

changeShippingMethod() 공개 메소드

    public function changeShippingMethod();

Usage Example

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