diff options
author | ctrlaltca@gmail.com <> | 2012-04-14 14:26:40 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2012-04-14 14:26:40 +0000 |
commit | 46550b64a9be1420c0eb015935b22fc1e48af30e (patch) | |
tree | c29f08097a8b3707c98d695ede06720d58689aec /tests/FunctionalTests | |
parent | ec32aa3e046b236c8a0f5aa5ea74d68bb120a6da (diff) |
more tests fixing
Diffstat (limited to 'tests/FunctionalTests')
5 files changed, 6 insertions, 4 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.php b/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.php index e88f10de..54c99c64 100644 --- a/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.php +++ b/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.php @@ -13,7 +13,7 @@ class CustomValidatorByPass extends TPage $Client->setOnComplete('$(\'loginLoader\').hide();');
//$Client->setOnValidationError('alert(\'Authentication Failed\');');
- $Client->setOnValidationSuccess('new Effect.Fade(\'loginBox\')');
+ //$Client->setOnValidationSuccess('new Effect.Fade(\'loginBox\')');
}
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket290.page b/tests/FunctionalTests/tickets/protected/pages/Ticket290.page index a785d5db..e9d40b92 100644 --- a/tests/FunctionalTests/tickets/protected/pages/Ticket290.page +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket290.page @@ -1,4 +1,5 @@ <com:TContent ID="Content"> + <h3>Needs manual testing</h3> <com:TPanel ID="panel1" DefaultButton="button2" Style="border:1px solid #ccc; padding:2em"> <com:TTextBox ID="textbox1" /> diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket586.page b/tests/FunctionalTests/tickets/protected/pages/Ticket586.page index 93c27385..29751cab 100644 --- a/tests/FunctionalTests/tickets/protected/pages/Ticket586.page +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket586.page @@ -1,5 +1,5 @@ <com:TContent ID="Content">
-
+<h3>Needs manual testing</h3>
<com:TPanel DefaultButton="button2" Style="border:1px solid #ccc; padding:2em;">
<com:TTextBox ID="text1" />
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket719.page b/tests/FunctionalTests/tickets/protected/pages/Ticket719.page index a64c5c55..b36d2d66 100644 --- a/tests/FunctionalTests/tickets/protected/pages/Ticket719.page +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket719.page @@ -1,4 +1,5 @@ <com:TContent id="Content"> +<h3>Needs manual testing</h3> <style> .autocomplete { diff --git a/tests/FunctionalTests/tickets/tests/Ticket488TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket488TestCase.php index f0159d05..2a83fac9 100644 --- a/tests/FunctionalTests/tickets/tests/Ticket488TestCase.php +++ b/tests/FunctionalTests/tickets/tests/Ticket488TestCase.php @@ -15,7 +15,7 @@ class Ticket488TestCase extends SeleniumTestCase $this->click("checkLogin");
$this->pause(800);
$this->assertVisible("validator1");
- $this->assertVisible("validator2");
+ $this->assertNotVisible("validator2");
$this->type('Username', 'tea');
$this->type('Password', 'mmama');
@@ -26,10 +26,10 @@ class Ticket488TestCase extends SeleniumTestCase $this->assertVisible("validator2");
$this->type('Password', 'test');
+ $this->click("checkLogin");
$this->pause(800);
$this->assertNotVisible("validator1");
$this->assertNotVisible("validator2");
- $this->assertNotVisible('loginBox');
}
function test_more()
|