You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 2, 2020. It is now read-only.
Timotheus Pokorra edited this page Jun 8, 2015
·
2 revisions
Wait for an element to be clickable
fromselenium.webdriver.common.byimportByfromselenium.webdriver.support.uiimportWebDriverWait# available since 2.4.0fromselenium.webdriver.supportimportexpected_conditionsasEC# available since 2.26.0btnSave=wait.until(EC.element_to_be_clickable((By.XPATH, "//form[@id=\"password-form\"]//input[@class=\"button mainaction\"]")),
"timeout: cannot change password");
btnSave.click()