public function testClickEventOnCheckbox()
 {
     $this->module->amOnPage('/form/checkbox');
     $this->module->uncheckOption('#checkin');
     $this->module->dontSee('ticked', '#notice');
     $this->module->checkOption('#checkin');
     $this->module->see('ticked', '#notice');
 }
Beispiel #2
0
 public function testSubmitUnchecked()
 {
     $this->module->amOnPage('/form/unchecked');
     $this->module->seeCheckboxIsChecked('#checkbox');
     $this->module->uncheckOption('#checkbox');
     $this->module->click('#submit');
     $this->module->see('0', '#notice');
 }