taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 660a53a64128a5c2471d69ac82ffd312f42e9b0d
parent 8714240c909d9c2f2deeb6ae99f219295f67c708
Author: Florian Dold <florian.dold@gmail.com>
Date:   Wed,  2 Mar 2016 02:32:41 +0100

selenium skeleton

Diffstat:
Atest/integration/tests.py | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)

diff --git a/test/integration/tests.py b/test/integration/tests.py @@ -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()