Esempio n. 1
0
 /**
  * @Given /^I have completed addressing step with email "([^"]+)" and ("([^"]+)" as shipping country)$/
  * @When /^I complete addressing step with email "([^"]+)" and ("([^"]+)" as shipping country)$/
  */
 public function iCompleteAddressingStepWithEmail($email, AddressInterface $address)
 {
     $this->addressPage->open();
     $this->iSpecifyTheEmail($email);
     $this->iSpecifyTheShippingAddressAs($address);
     $this->iCompleteTheAddressingStep();
 }