gpt4 book ai didi

ruby - 如何使用 Ruby 在 Selenium WebDriver Remote 上设置 firefox 配置文件

转载 作者:数据小太阳 更新时间:2023-10-29 08:02:58 24 4
gpt4 key购买 nike

我想为以下驱动程序设置 Firefox 配置文件:

driver = Selenium::WebDriver.for :remote, :url => "http://localhost:4444/wd/hub", :desired_capabilities => :firefox

我试过添加:

profile = Selenium::WebDriver::Firefox::Profile.new
profile['browser.download.downloadDir'] = '/home/seluser'
driver = Selenium::WebDriver.for :remote, :url => "http://localhost:4444/wd/hub", :desired_capabilities => :firefox, :profile => profile

但是profile选项不存在

谢谢

最佳答案

你应该尝试如下:-

profile = Selenium::WebDriver::Firefox::Profile.new
profile['browser.download.downloadDir'] = '/home/seluser'

capabilities = Selenium::WebDriver::Remote::Capabilities.firefox(:firefox_profile => profile)

driver = Selenium::WebDriver.for :remote, :url => "http://localhost:4444/wd/hub", :desired_capabilities => capabilities

注意:- 你应该关注this了解有关 Ruby 绑定(bind)的更多信息。

希望对您有所帮助...:)

关于ruby - 如何使用 Ruby 在 Selenium WebDriver Remote 上设置 firefox 配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38222446/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com