일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- sort(reverse=True) v.s. reverse
- OS
- sort v.s. sorted
- 코딩 테스트
- PIP
- timestamp
- reverse v.s. reversed
- decorator
- r-string
- boto3
- ds_store
- 고차함수
- 순수함수
- [초급(예비) 개발자 오픈소스 실무 역량강화 교육]
- Python
- selenium-wire
- 쿼리
- S3
- pandas
- os.path
- slicing [::-1]
- Airflow
- 함수형 프로그래밍
- blinker
- functools.wraps
- 생각
- CI/CD
Archives
- Today
- Total
공부일지
[Python]selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable 본문
Computer/Trouble Shooting
[Python]selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable
이르리의 공부일지 2023. 9. 13. 15:40처음에 크롬 드라이버 업뎃해서 안 되는 줄 알았다.
근데 왜인지 모르겠는데(다른 사이트는 괜찮더니)
이 오류는 html element 가져오는 메소드를 변경해주었더니 해결됐다.
수정 전 | 수정 후 |
.click | .send_keys(Keys.ENTER) |
참고 블로그
[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 > Trouble Shooting' 카테고리의 다른 글
[Python] Pandas Timestamp 관련 자주 쓰일 3가지 (0) | 2024.09.22 |
---|---|
[Python] 버전 충돌 해결을 위해 pip 패키지 전체 삭제하는 법 (1) | 2024.09.20 |
[Python]TypeError: expected string or bytes-like object, got 'NoneType' (0) | 2023.09.13 |
[Mac]Bash: /경로/경로/ : is a directory 에러 (0) | 2023.09.12 |
TypeError: '<' not supported between instances of 'float' and 'str' (0) | 2023.09.11 |