gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-wallet-webex] branch master updated: Fix #5095.


From: gnunet
Subject: [GNUnet-SVN] [taler-wallet-webex] branch master updated: Fix #5095.
Date: Wed, 28 Jun 2017 20:58:23 +0200

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository wallet-webex.

The following commit(s) were added to refs/heads/master by this push:
     new fc02e229 Fix #5095.
fc02e229 is described below

commit fc02e229d9494b19461d11934036690e74773e2a
Author: Marcello Stanisci <address@hidden>
AuthorDate: Wed Jun 28 20:58:12 2017 +0200

    Fix #5095.
---
 selenium/withdraw_buy.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/selenium/withdraw_buy.py b/selenium/withdraw_buy.py
index 13fb67b3..df130242 100644
--- a/selenium/withdraw_buy.py
+++ b/selenium/withdraw_buy.py
@@ -260,8 +260,10 @@ def withdraw(client, amount_menuentry=None):
     try:
         logger.info("Polling for the button")
         exchange_input = client.find_element(By.XPATH, 
"//address@hidden'url']")
-        # Bad: see #5095
-        exchange_input.send_keys("https://exchange.test.taler.net/";)
+        # Construct Exchange URL
+        l = list(parse.urlsplit(taler_baseurl))
+        l[1] = "exchange" + "." + l[1]
+        exchange_input.send_keys(parse.urlunsplit(l))
         accept_exchange = wait.until(EC.element_to_be_clickable((By.XPATH, 
"//button[1]")))
     except TimeoutException:
         logger.error("Could not confirm exchange")

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]