taler-typescript-core

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

commit 3264067ce3b563c846e1247d71a87c7faaaa93b1
parent 6492b6488a6b781361b4eec965deb584080b1eb5
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Sat, 12 Nov 2016 13:13:25 +0100

selenium: fixing non-clickable element by sleep(). To be improved.

Diffstat:
Mmanifest.json | 0
Mselenium/test.py | 2+-
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/manifest.json b/manifest.json diff --git a/selenium/test.py b/selenium/test.py @@ -110,7 +110,7 @@ def make_donation(client, amount_menuentry=None): sys.exit(1) confirm_taler.click() # Taler as payment option chosen # explicit get() is needed, it hangs (sometimes) otherwise - time.sleep(1) + time.sleep(3) #FIXME use better way to 'Ok' Taler at checkout page client.get(client.current_url) try: confirm_pay = wait.until(EC.element_to_be_clickable((By.XPATH, "//button[@class='accept']")))