This commit is contained in:
Marcello Stanisci 2017-06-28 20:58:12 +02:00
parent 8fc959c3fa
commit fc02e229d9
No known key found for this signature in database
GPG Key ID: 8D526861953F4C0F

View File

@ -260,8 +260,10 @@ def withdraw(client, amount_menuentry=None):
try:
logger.info("Polling for the button")
exchange_input = client.find_element(By.XPATH, "//input[@class='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")