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
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element is not clickable at point (508, 30). Other element would receive the click:
...
The text was updated successfully, but these errors were encountered:
My apologies for the delay @Tylersuard, I'm so focused on YouTube that I rarely check issues on Github :(
My rule of thumb with those types of errors is - if it doesn't work with Python, it doesn't mean it's not gonna work with Javascript ;)
So try something along these lines: driver.execute_script("arguments[0].click();", the_element_I_want_to_click_on)
Instead of: the_element_I_want_to_click_on.click()
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element is not clickable at point (508, 30). Other element would receive the click:
The text was updated successfully, but these errors were encountered: