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/TextBoxTestCase.php | |
parent | 98e796c1a4f0bda1abc4df7e08df9ddb4f6e50af (diff) |
Added repeater functional tests.
Diffstat (limited to 'tests/FunctionalTests/quickstart/Controls/TextBoxTestCase.php')
-rw-r--r-- | tests/FunctionalTests/quickstart/Controls/TextBoxTestCase.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FunctionalTests/quickstart/Controls/TextBoxTestCase.php b/tests/FunctionalTests/quickstart/Controls/TextBoxTestCase.php index e1c76938..cf101502 100644 --- a/tests/FunctionalTests/quickstart/Controls/TextBoxTestCase.php +++ b/tests/FunctionalTests/quickstart/Controls/TextBoxTestCase.php @@ -36,7 +36,7 @@ class TextBoxTestCase extends SeleniumTestCase // auto postback textbox, CausesValidation=true
$this->verifyNotVisible('ctl0_body_ctl7');
$this->type("ctl0\$body\$TextBox3", "test");
- $this->pause(1000);
+// $this->pause(1000);
$this->verifyVisible('ctl0_body_ctl7');
$this->typeAndWait("ctl0\$body\$TextBox3", "non test");
$this->verifyNotVisible('ctl0_body_ctl7');
@@ -83,7 +83,7 @@ End of message // textbox associated with a validator
$this->verifyNotVisible('ctl0_body_ctl15');
$this->type("ctl0\$body\$MultiTextBox3", "demo");
- $this->pause(1000);
+// $this->pause(1000);
$this->verifyVisible('ctl0_body_ctl15');
$this->typeAndWait("ctl0\$body\$MultiTextBox3", "non demo");
$this->verifyNotVisible('ctl0_body_ctl15');
|