Exemplo n.º 1
0
 /**
  * @When I register with email :email and password :password
  */
 public function iRegisterWithEmailAndPassword($email, $password)
 {
     $this->registerPage->open();
     $this->registerPage->specifyEmail($email);
     $this->registerPage->specifyPassword($password);
     $this->registerPage->verifyPassword($password);
     $this->registerPage->specifyFirstName('Carrot');
     $this->registerPage->specifyLastName('Ironfoundersson');
     $this->registerPage->register();
 }
Exemplo n.º 2
0
 /**
  * @When I register this account
  * @When I try to register this account
  */
 public function iRegisterThisAccount()
 {
     $this->registerPage->register();
 }