diff options
author | Adam Chlipala <adamc@csail.mit.edu> | 2018-12-25 09:21:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-25 09:21:42 -0500 |
commit | d4620695ec44da55be046f9dee4caf1f29759943 (patch) | |
tree | 1b4ceeea0c028fb354fa28e29bb384d4bb8fc205 /tests/bodyClick.py | |
parent | c9bb1becf98d02123666eb084de88a443e1a2544 (diff) | |
parent | 1a39672b01dc236068475e2d1a8a6f21814cba7e (diff) |
Merge pull request #152 from ashalkhakov/more-tests
More tests.
Diffstat (limited to 'tests/bodyClick.py')
-rw-r--r-- | tests/bodyClick.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bodyClick.py b/tests/bodyClick.py new file mode 100644 index 00000000..0c10d632 --- /dev/null +++ b/tests/bodyClick.py @@ -0,0 +1,18 @@ +import unittest +import base + +class Suite(base.Base): + def test_1(self): + """Test case 1""" + self.start('main') + bd = self.driver.find_element_by_xpath('/html/body') + + bd.click() + alert = self.driver.switch_to.alert + self.assertEqual("You clicked the body.", alert.text) + alert.accept() + + bd.send_keys('h') + alert = self.driver.switch_to.alert + self.assertEqual("Key", alert.text) + alert.accept() |