Exemplo n.º 1
0
 public function testTextFieldByLabel()
 {
     $this->module->amOnPage('/form/field');
     $this->module->fillField('Name', 'Nothing special');
     $this->module->click('Submit');
     $form = data::get('form');
     $this->assertEquals('Nothing special', $form['name']);
 }
Exemplo n.º 2
0
 public function testExample1()
 {
     $this->module->amOnPage('/form/example1');
     $this->module->see('Login', 'button');
     $this->module->fillField('#LoginForm_username', 'davert');
     $this->module->fillField('#LoginForm_password', '123456');
     $this->module->checkOption('#LoginForm_rememberMe');
     $this->module->click('Login');
     $login = data::get('form');
     $this->assertEquals('davert', $login['LoginForm']['username']);
     $this->assertEquals('123456', $login['LoginForm']['password']);
     $this->assertNotEmpty($login['LoginForm']['rememberMe']);
 }