コード例 #1
0
ファイル: CheckoutContext.php プロジェクト: remyma/Sylius
 /**
  * @When I select :shippingMethod shipping method
  */
 public function iSelectShippingMethod($shippingMethod)
 {
     $this->shippingPage->selectShippingMethod($shippingMethod);
 }
コード例 #2
0
 /**
  * @When /^I change shipping method to "([^"]*)"$/
  */
 public function iChangeShippingMethod($shippingMethodName)
 {
     $this->paymentPage->changeShippingMethod();
     $this->shippingPage->selectShippingMethod($shippingMethodName);
     $this->shippingPage->nextStep();
 }