반응형
selenium에서 element를 가져올때, 종종 잘못된 경로로 인해 가져오지 못할때가 있습니다.
이때, NoSuchElementException을 사용해주면 좋습니다.
from selenium.common.exceptions import NoSuchElementException
````
try:
``````
except NoSuchElementException:
``````
위 코드로 try 하위에서 발생한 element undefined 에러는 대응이 가능합니다.
'개발' 카테고리의 다른 글
[Proxy] Proxy 종류 (0) | 2022.04.27 |
---|---|
[Selenium] 엘리먼트 속성 가져오기 (0) | 2022.04.20 |
[Selenium] unknown error: Chrome failed to start: exited abnormally (0) | 2022.04.14 |
[Selenium] DeprecationWarning: executable_path has been deprecated, please pass in a Service object (0) | 2022.04.13 |
JWT token expire하는 법 (0) | 2022.03.24 |