How Do I Select A Changed Button In This Case On Selenium
I am trying to wait for 'Agree&Continue' button to showup and interact with .click() The button basically starts off with a 'continue button', then it changed to 'Agree and con
Solution 1:
The element click intercepted: Element is not clickable at point
problem can be caused by several issues so we can not know what exactly happens in your case.
Possibly you should use invisibility_of_element_located
to let some other element disappear or maybe to use JavaScript click or just add some delay.
See here for good explanations of this point.
In case your element is not on the screen you should scroll to it Here is example how to scroll
from selenium.webdriver.common.action_chains importActionChainselement= driver.find_element_by_id("my-id")
actions = ActionChains(driver)
actions.move_to_element(element).perform()
Post a Comment for "How Do I Select A Changed Button In This Case On Selenium"