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/quickstart/Controls/CheckBoxTestCase.php | |
parent | 98e796c1a4f0bda1abc4df7e08df9ddb4f6e50af (diff) |
Added repeater functional tests.
Diffstat (limited to 'tests/FunctionalTests/quickstart/Controls/CheckBoxTestCase.php')
-rw-r--r-- | tests/FunctionalTests/quickstart/Controls/CheckBoxTestCase.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/FunctionalTests/quickstart/Controls/CheckBoxTestCase.php b/tests/FunctionalTests/quickstart/Controls/CheckBoxTestCase.php index a24ce937..a248dd79 100644 --- a/tests/FunctionalTests/quickstart/Controls/CheckBoxTestCase.php +++ b/tests/FunctionalTests/quickstart/Controls/CheckBoxTestCase.php @@ -24,10 +24,10 @@ class CheckBoxTestCase extends SeleniumTestCase // a checkbox causing validation on a textbox
$this->verifyNotVisible('ctl0_body_ctl3');
$this->click("//input[@name='ctl0\$body\$ctl4' and @value='ctl0\$body\$ctl4']", "");
- $this->pause(1000);
+// $this->pause(1000);
$this->verifyVisible('ctl0_body_ctl3');
$this->click("//input[@name='ctl0\$body\$ctl4' and @value='ctl0\$body\$ctl4']", "");
- $this->pause(1000);
+// $this->pause(1000);
$this->verifyVisible('ctl0_body_ctl3');
$this->type("ctl0\$body\$TextBox", "test");
$this->clickAndWait("//input[@name='ctl0\$body\$ctl4' and @value='ctl0\$body\$ctl4']", "");
@@ -36,7 +36,7 @@ class CheckBoxTestCase extends SeleniumTestCase // a checkbox validated by a required field validator
$this->verifyNotVisible('ctl0_body_ctl6');
$this->click("//input[@type='submit' and @value='Submit']", "");
- $this->pause(1000);
+// $this->pause(1000);
$this->verifyVisible('ctl0_body_ctl6');
$this->click("//input[@name='ctl0\$body\$CheckBox' and @value='ctl0\$body\$CheckBox']", "");
$this->clickAndWait("//input[@type='submit' and @value='Submit']", "");
@@ -45,7 +45,7 @@ class CheckBoxTestCase extends SeleniumTestCase // a checkbox validated by a required field validator using AutoPostBack
$this->verifyNotVisible('ctl0_body_ctl7');
$this->click("//input[@name='ctl0\$body\$CheckBox2' and @value='ctl0\$body\$CheckBox2']", "");
- $this->pause(1000);
+// $this->pause(1000);
$this->verifyVisible('ctl0_body_ctl7');
$this->clickAndWait("//input[@name='ctl0\$body\$CheckBox2' and @value='ctl0\$body\$CheckBox2']", "");
$this->verifyNotVisible('ctl0_body_ctl7');
|