我正在尝试使用Python中的Selenium从网站下载文件。为了做到这一点,我已经读过我需要更改我的Firefox配置文件中的设置以避免打开下载对话窗口。我在下面提供了示例代码。这段代码在家里工作得非常好,但是我的工作PC无法正常运行。我怀疑Python不能改变firefox配置文件的设置,即使下面的代码没有抛出错误但工作正常,最后打开下载对话窗口。
from selenium import webdriver
import os
profile = webdriver.FirefoxProfile("C:\\Users\\Ric\\Documents\\Python Scripts\\FirefoxProfileCopies\\ric.copy")
profile.set_preference('browser.download.folderList', 2)
profile.set_preference('browser.download.manager.showWhenStarting', False)
profile.set_preference('browser.download.dir', os.getcwd())
profile.set_preference('browser.helperApps.neverAsk.saveToDisk',('application/vnd.ms-excel'))
browser = webdriver.Firefox(profile)
browser.get("http://www.sample-videos.com/download-sample-xls.php")
elem1 = browser.find_element_by_css_selector(".push-form > table:nth-child(2) > tbody:nth-child(2) > tr:nth-child(4) > td:nth-child(4) > a:nth-child(1)")
elem1.click()
此代码与我的Firefox及其在家中的配置文件完美配合,但与我的计算机无法正常工作。有人知道为什么会这样吗?提前谢谢。
修改
我尝试从Microsoft网页添加所有MIME
类型,但仍会打开下载管理器窗口。在打开下载链接并尝试使用about:config
查看已使用的firefox配置文件的设置时停止执行代码时,将显示以下值: