내용
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element ... is not clickable at point (600, 21). Other element would receive the click: ...
엘리먼트(element)가 클릭이 안될 때 나오는 예외입니다.
해결방법
변경 전
driver.find_element(By.CSS_SELECTOR, "#id").click()
변경 후
driver.find_element(By.CSS_SELECTOR, "#id").send_keys(Keys.ENTER)
728x90
'Python > Selenium' 카테고리의 다른 글
[Selenium] 백그라운드로 실행 ( 창 안보이게 실행 ) (0) | 2023.05.21 |
---|---|
[Selenium] 브라우저 종료 (close, quit 차이) (0) | 2023.05.20 |
[Selenium] DeprecationWarning: executable_path has been deprecated, please pass in a Service object (0) | 2023.05.02 |
[Selenium] 브라우저 종료하지 않고 유지하기 (0) | 2023.05.01 |
[Selenium] AttributeError: 'WebDriver' object has no attribute 'find_element_by_css_selector' (0) | 2023.05.01 |
댓글