diff options
author | ctrlaltca@gmail.com <> | 2012-04-13 12:51:46 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2012-04-13 12:51:46 +0000 |
commit | f8256d8e971d3bff952e061ee4e454bef4dc4d67 (patch) | |
tree | a9a5e4f0ca7a39502f76616432020e366aed1ae4 /tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php | |
parent | 8d34dd7caa1d61bcbd1c5a576024da74aa9f1c1f (diff) |
Update ActiveCustomValidator test case to support the new behavior due to the fix of #91
Diffstat (limited to 'tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php')
-rw-r--r-- | tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php b/tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php index 3d7c8293..3346f2b1 100644 --- a/tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php +++ b/tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php @@ -23,9 +23,10 @@ class ActiveCustomValidatorTestCase extends SeleniumTestCase $this->type($base.'textbox1', 'Prado');
$this->pause(800);
- $this->assertNotVisible($base.'validator1');
+ $this->assertVisible($base.'validator1');
- $this->clickAndWait($base.'button1');
+ $this->click($base.'button1');
+ $this->pause(800);
$this->assertNotVisible($base.'validator1');
}
}
|