summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests
diff options
context:
space:
mode:
authortof <>2008-04-17 17:18:25 +0000
committertof <>2008-04-17 17:18:25 +0000
commitb38c19252593b2fea1ad2597d587741fe48f1c67 (patch)
treec8d01a58a2404f432882472c79ffb73485eb5220 /tests/FunctionalTests/tickets/tests
parent91dd9ff8da6a2f8260d184da167e9ed6b45a6b02 (diff)
Implemented #745
Diffstat (limited to 'tests/FunctionalTests/tickets/tests')
-rw-r--r--tests/FunctionalTests/tickets/tests/Ticket745TestCase.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket745TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket745TestCase.php
new file mode 100644
index 00000000..492b10ae
--- /dev/null
+++ b/tests/FunctionalTests/tickets/tests/Ticket745TestCase.php
@@ -0,0 +1,18 @@
+<?php
+class Ticket745TestCase extends SeleniumTestCase
+{
+ function test()
+ {
+ $base = 'ctl0_Content_';
+ $this->open('tickets/index.php?page=Ticket745');
+ $this->assertTitle("Verifying Ticket 745");
+
+ $this->select($base.'Wizard1_DropDownList1', 'Green');
+ $this->click($base.'Wizard1_ctl4_ctl1');
+ $this->pause(800);
+ $this->assertTextPresent ('Step 3 of 3');
+
+ }
+
+}
+?> \ No newline at end of file