summaryrefslogtreecommitdiff
path: root/tests/both.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/both.py')
-rw-r--r--tests/both.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/both.py b/tests/both.py
new file mode 100644
index 00000000..c3a8e8ee
--- /dev/null
+++ b/tests/both.py
@@ -0,0 +1,12 @@
+import unittest
+import base
+
+class Suite(base.Base):
+ def test_1(self):
+ """Test case 1"""
+ self.start('Both/main')
+ t = self.xpath('form/input[@type=\'text\']')
+ t.send_keys('hello')
+ l = self.xpath('form/input[@type=\'submit\']')
+ l.click()
+ self.assertEqual("", self.body_text())