summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/protected/pages/Validation/CheckBox.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/protected/pages/Validation/CheckBox.php')
-rw-r--r--tests/FunctionalTests/protected/pages/Validation/CheckBox.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/FunctionalTests/protected/pages/Validation/CheckBox.php b/tests/FunctionalTests/protected/pages/Validation/CheckBox.php
new file mode 100644
index 00000000..b85bf383
--- /dev/null
+++ b/tests/FunctionalTests/protected/pages/Validation/CheckBox.php
@@ -0,0 +1,31 @@
+<?php
+
+class CheckBox extends TPage
+{
+ protected function onLoad($param)
+ {
+ if(!$this->IsPostBack)
+ $this->dataBind();
+ }
+}
+
+class CheckBoxTestCase extends SeleniumTestCase
+{
+ function setup()
+ {
+ $this->open(Prado::getApplication()->getTestPage(__FILE__));
+ }
+
+ function testValidator()
+ {
+ $this->assertTextPresent("Basic TRequiredFieldValidator Test1");
+ $this->assertNotVisible("validator1");
+ $this->click("button1");
+ $this->assertVisible("validator1");
+ $this->type("text1", "test");
+ $this->clickAndWait("button1");
+ $this->assertNotVisible("validator1");
+ }
+}
+
+?> \ No newline at end of file