RPA/Python

[selenium] 파일 다운로드 경로 변경

꼰대 2021. 5. 6. 15:19

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()

반응형