-
Python으로 Selenium 이용 시 Element CheckPython 2019. 4. 15. 17:55반응형
1. from selenium.common.exceptions import NoSuchElementException # Import 추가
2. try - except 방법
try:
element = driver.find_element_by_partial_link_text("text")
except NoSuchElementException:
print("No Found")
3. if로 element check
if not element:
print("No Element found")
else:
driver.find_element_by_xpath("""Copy XPath""").click()반응형'Python' 카테고리의 다른 글
windows에서 virtualenv 이용시 패키지 설치 방법 (1) 2020.08.20 파이썬 - 정규식 (0) 2019.10.24 파이썬3 피라미드 (0) 2017.12.25 파이썬3 계산기 (0) 2017.12.25 파이썬 아나콘다 Python3, Python2 동시 설치(다중커널 설치) (0) 2017.09.28 댓글