IsPostBack) $this->dataBind(); } } class CheckBoxTestCase extends SeleniumTestCase { function setup() { $this->open(Prado::getApplication()->getTestPage(__FILE__)); } function testValidator() { $this->verifyTitle("An AutoPostBack CheckBox"); //test checkbox 2 should fire the validator $this->assertNotVisible("ctl0_Content_validator1"); $this->click("ctl0_Content_checkbox2"); $this->pasue(100); $this->assertVisible("ctl0_Content_validator1"); } } ?>