taler-typescript-core

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

commit b4525c567a038ee4b821b1c99b78e672e2ad6e1c
parent 0f9fef41b069a29b5b25308b34fbb6db51fe2305
Author: Florian Dold <florian.dold@gmail.com>
Date:   Sun, 29 Oct 2017 23:40:40 +0100

increse selenium timeout

Diffstat:
Mselenium/withdraw_buy.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/selenium/withdraw_buy.py b/selenium/withdraw_buy.py @@ -161,7 +161,7 @@ def buy_article(client, title, fulfillment_url=None): return False client.get(parse.urljoin(taler_baseurl, "shop")) - wait = WebDriverWait(client, 10) + wait = WebDriverWait(client, 20) try: teaser = wait.until(EC.element_to_be_clickable((By.XPATH, "//h3/a[@href=\"/essay/%s\"]" % title))) @@ -178,7 +178,7 @@ def buy_article(client, title, fulfillment_url=None): "//button[@class='pure-button button-success']"))) logger.info("Pay button turned clickable") except TimeoutException: - logger.error('Could not confirm payment on blog') + logger.error('Could not confirm payment on blog (timed out)') print_log(client) abort(client) confirm_pay.click()