Chrome 驱动程序首选项列表 - Selenium 4.0

发布于 2025-01-21 03:23:44 字数 726 浏览 0 评论 0原文

我正在寻找等效命令,以设置Selenium中Chrome Driver的首选项。

fp = webdriver.FirefoxProfile()
        fp.set_preference("browser.download.folderList", 2)
        fp.set_preference("browser.download.manager.showWhenStarting", False)
        fp.set_preference("browser.download.dir", os.path.abspath(folder_to_save))
        fp.set_preference("browser.helperApps.neverAsk.saveToDisk",
                          "application/xapk-package-archive;application/vnd.android.package- 
archive")  # application/octet-stream;application/vnd.android.package-archive;application/zip;
        opts = FirefoxOptions()
        opts.add_argument("--headless")

我搜索了Selenium文档,但在某个地方迷路了,找不到有关Chrome下载文件夹的任何内容。

感谢您,谢谢!!!

I am looking for the equivalent commands to set preferences for Chrome Driver in Selenium.

fp = webdriver.FirefoxProfile()
        fp.set_preference("browser.download.folderList", 2)
        fp.set_preference("browser.download.manager.showWhenStarting", False)
        fp.set_preference("browser.download.dir", os.path.abspath(folder_to_save))
        fp.set_preference("browser.helperApps.neverAsk.saveToDisk",
                          "application/xapk-package-archive;application/vnd.android.package- 
archive")  # application/octet-stream;application/vnd.android.package-archive;application/zip;
        opts = FirefoxOptions()
        opts.add_argument("--headless")

I searched the Selenium Documentation but got lost there somewhere and couldnt find anything about download folders in Chrome.

Help is appreciated, thank you!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文