selenium skeleton

This commit is contained in:
Florian Dold 2016-03-02 02:32:41 +01:00
parent 8714240c90
commit 660a53a641

21
test/integration/tests.py Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/python3
import unittest
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
class PythonOrgSearch(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Chrome()
def test_taler_reachable(self):
driver = self.driver
driver.get("https://bank.demo.taler.net")
def tearDown(self):
self.driver.close()
if __name__ == "__main__":
unittest.main()