selectShippingMethod() public method

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