コード例 #1
0
 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');
 }
コード例 #2
0
ファイル: WebDriverTest.php プロジェクト: surjit/Codeception
 public function testSeeVisible()
 {
     $this->module->amOnPage('/info');
     $this->module->dontSee('Invisible text');
     $this->module->dontSee('Invisible', '.hidden');
     $this->module->seeInPageSource('Invisible text');
 }