summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/tickets/tests/Ticket72TestCase.php')
-rw-r--r--tests/FunctionalTests/tickets/tests/Ticket72TestCase.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php
new file mode 100644
index 00000000..6d864899
--- /dev/null
+++ b/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php
@@ -0,0 +1,16 @@
+<?php
+
+class Ticket72TestCase extends SeleniumTestCase
+{
+ function test()
+ {
+ $this->open('tickets/index.php?page=Ticket72');
+ $this->type("ctl0\$Content\$K1", "abc");
+ $this->type("ctl0\$Content\$K2", "efg");
+ $this->clickAndWait("//input[@type='submit' and @value='Send']", "");
+ $this->verifyTextPresent("efg", "");
+ $this->verifyTextNotPresent("abcefg", "");
+ }
+}
+
+?> \ No newline at end of file