python+selenium下载文件——Chrome
Posted 小白龙白龙马
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium下载文件——Chrome相关的知识,希望对你有一定的参考价值。
from selenium import webdriver import time options = webdriver.ChromeOptions() prefs = { ‘profile.default_content_settings.popups‘:0 ,‘download.default_directory‘:‘C:\Users\del\Desktop\1‘} #设置为0表示禁止弹出窗口, #设置文件下载路径 options.add_experimental_option(‘prefs‘,prefs) driver = webdriver.Chrome(chrome_options=options) driver.get("http://sahitest.com/demo/saveAs.htm") driver.find_element_by_link_text(‘testsaveas.zip‘).click() time.sleep(50) driver.quit()
以上是关于python+selenium下载文件——Chrome的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Python + Selenium 中创建随机用户代理?