일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Python
- 고차함수
- blinker
- boto3
- 코딩 테스트
- Airflow
- S3
- pandas
- [초급(예비) 개발자 오픈소스 실무 역량강화 교육]
- timestamp
- sort(reverse=True) v.s. reverse
- CI/CD
- PIP
- 순수함수
- functools.wraps
- r-string
- selenium-wire
- sort v.s. sorted
- reverse v.s. reversed
- OS
- 쿼리
- 함수형 프로그래밍
- ds_store
- os.path
- slicing [::-1]
- decorator
- 생각
Archives
- Today
- Total
공부일지
[Python]selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable → send_keys()로 해결하기 본문
Computer/공부정리
[Python]selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable → send_keys()로 해결하기
이르리의 공부일지 2023. 10. 16. 11:06selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable
크롤러에서 발생한 오류이다.
.click() → .send_keys(Keys.ENTER)
하면 해결되는 오류이다.
.send_keys를 쓰려면 아래와 같이 import 해주자.
from selenium.webdriver.common.keys import Keys
왜 .click()이 되다가 안 되는지는 차차 알아봐야할 것 같다.
참고 블로그
[selenium] element 클릭이 되지 않을 때: ElementNotInteractableException Message: element not interactable 에러
python selenium 을 이용하여 chorome webdriver 상에서 자동화 코드를 수행하다가 다음과 같은 에러가 발생했습니다. selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable 에러 발생 이
taste-and-investment.tistory.com
'Computer > 공부정리' 카테고리의 다른 글
[Mac]맥 폴더 경로 이동하는 또 다른 방법 (0) | 2023.10.16 |
---|---|
[Mac][Git]맥에 git 설치 (0) | 2023.10.16 |
[강의요약]개발자들의 성지, 스택오버플로우 파헤치기 (0) | 2023.09.24 |
[VSCode] 스크롤 단축키 (0) | 2023.09.22 |
[VSCode]Editor 와 Terminal 왔다갔다 하는 단축키 (0) | 2023.09.22 |