from selenium import webdriver
from selenium.webdriver.chrome.options import Options
# 파일 다운로드 경로 변경
op = Options()
op.add_experimental_option('prefs', {'download.default_directory':r'C:\PythonWorkspace'})
driver = webdriver.Chrome(options=op)
driver.get('https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_a_download')
driver.implicitly_wait(10)
driver.switch_to_frame('iframeResult')
elem = driver.find_element_by_xpath('/html/body/p[2]/a')
elem.click()
반응형
'RPA > Python' 카테고리의 다른 글
[email] 이메일 수신 (0) | 2021.05.06 |
---|---|
[email] Gmail 환경설정 및 이메일 발신 (0) | 2021.05.06 |
[selenium] 페이지 로딩까지 대기 (0) | 2021.05.06 |
[selenium] 동적 페이지 스크롤 (0) | 2021.05.06 |
[selenium] iframe 내 Element 접근 (checkbox, radio, select 태그) (0) | 2021.05.06 |