如何在Mozilla – Marionette Web驱动程序中设置特定的下载位置?

如何在Mozilla – Marionette Web驱动程序中设置特定的下载位置?,第1张

概述我有一个自动化脚本,在最近的mozilla更新之前运行良好. selenium-python脚本自动执行我的一些浏览器 *** 作,并将某些报告(csv)保存到定义的位置. 我一直在使用selenium 2.53.6,它使用以下代码: profile = webdriver.firefox.firefox_profile.FirefoxProfile()profile.set_preference('b 我有一个自动化脚本,在最近的mozilla更新之前运行良好. selenium-python脚本自动执行我的一些浏览器 *** 作,并将某些报告(csv)保存到定义的位置.

我一直在使用selenium 2.53.6,它使用以下代码:

profile = webdriver.firefox.firefox_profile.firefoxProfile()profile.set_preference('browser.helperApps.neverAsk.savetodisk',"text/csv,application/pdf,application/octet-stream")profile.set_preference('browser.download.folderList',2)profile.set_preference("browser.download.manager.showWhenStarting",False)profile.set_preference('browser.download.dir','D:\Downloads')driver = webdriver.firefox(firefox_profile=profile)

目前我使用selenium-python 3.0.1和firefox 48.这里我添加了geckodriver路径到环境变量,并能够使用下面的代码启动firefox:

from selenium import webdriverfrom selenium.webdriver.common.desired_capabilitIEs import DesiredCapabilitIEscaps = DesiredCapabilitIEs.firefoxcaps["marionette"] = Truedriver = webdriver.firefox(capabilitIEs=caps)

我很好奇如何在firefox-marionette驱动程序中执行profile.set_preference等效 *** 作.我找不到任何关于它的文件.

请指教.

解决方法 您也可以通过个人资料发布 FirefoxDriver
driver = webdriver.firefox(capabilitIEs=caps,firefox_profile=profile)

您还可以将firefox_profile设置为以下功能: –

caps["firefox_profile"] = profiledriver = webdriver.firefox(capabilitIEs=caps)
总结

以上是内存溢出为你收集整理的如何在Mozilla – Marionette Web驱动程序中设置特定的下载位置?全部内容,希望文章能够帮你解决如何在Mozilla – Marionette Web驱动程序中设置特定的下载位置?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1106726.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存