summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2012-04-14 14:26:40 +0000
committerctrlaltca@gmail.com <>2012-04-14 14:26:40 +0000
commit46550b64a9be1420c0eb015935b22fc1e48af30e (patch)
treec29f08097a8b3707c98d695ede06720d58689aec /tests/FunctionalTests/tickets
parentec32aa3e046b236c8a0f5aa5ea74d68bb120a6da (diff)
more tests fixing
Diffstat (limited to 'tests/FunctionalTests/tickets')
-rw-r--r--tests/FunctionalTests/tickets/protected/pages/Ticket290.page1
-rw-r--r--tests/FunctionalTests/tickets/protected/pages/Ticket586.page2
-rw-r--r--tests/FunctionalTests/tickets/protected/pages/Ticket719.page1
-rw-r--r--tests/FunctionalTests/tickets/tests/Ticket488TestCase.php4
4 files changed, 5 insertions, 3 deletions
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()