We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2af378f commit 4e3cdc2Copy full SHA for 4e3cdc2
1 file changed
api.py
@@ -71,7 +71,7 @@ def setup(self, username, password, panel):
71
self.driver.find_element_by_id("username-real").send_keys(username)
72
self.driver.find_element_by_id("pass-real").send_keys(password)
73
# Login
74
- WebDriverWait(self.driver, self.timeout/2).until(expected_conditions.element_to_be_clickable((By.CLASS_NAME, "button-login"))).click()
+ force_click(WebDriverWait(self.driver, self.timeout/2).until(expected_conditions.element_to_be_clickable((By.CLASS_NAME, "button-login"))))
75
76
# Clicking on the button of the "YOUR ACCOUNT IS APPROVED!"
77
try:
0 commit comments