diff options
author | xue <> | 2006-02-13 22:12:50 +0000 |
---|---|---|
committer | xue <> | 2006-02-13 22:12:50 +0000 |
commit | 3e60cbad4b79301ae086ecacbdc63af333532a43 (patch) | |
tree | aaa72887f9e5eaf94305c8a08a07f7a735c378ac /tests/FunctionalTests/protected/pages | |
parent | 98e796c1a4f0bda1abc4df7e08df9ddb4f6e50af (diff) |
Added repeater functional tests.
Diffstat (limited to 'tests/FunctionalTests/protected/pages')
-rw-r--r-- | tests/FunctionalTests/protected/pages/Validation/CheckBox.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FunctionalTests/protected/pages/Validation/CheckBox.php b/tests/FunctionalTests/protected/pages/Validation/CheckBox.php index 8154210c..2c83ad16 100644 --- a/tests/FunctionalTests/protected/pages/Validation/CheckBox.php +++ b/tests/FunctionalTests/protected/pages/Validation/CheckBox.php @@ -23,12 +23,12 @@ class CheckBoxTestCase2 extends SeleniumTestCase //test checkbox 2 should fire the validator
$this->assertNotVisible("ctl0_Content_validator1");
$this->click("ctl0_Content_checkbox2");
- $this->pause(100);
+// $this->pause(100);
$this->assertVisible("ctl0_Content_validator1");
//write some text, and see what it
$this->type('ctl0_Content_TextBox', "hello");
- $this->pause(100);
+// $this->pause(100);
$this->assertNotVisible("ctl0_Content_validator1");
$this->clickAndWait("ctl0_Content_checkbox2"); //submit
$this->assertNotVisible("ctl0_Content_validator1");
|