gpt4 book ai didi

ruby - 在 ruby​​ 中为 selenium chrome 驱动程序设置代理

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

Browsermob 代理:-

https://github.com/jarib/browsermob-proxy-rb

我可以为 firefox 配置文件创建和设置代理,但不能在 chrome 上创建和设置代理。

我不知道我必须使用哪些选项让 chrome 设置代理。

我正在使用以下代码:-

对于火狐:-

require 'selenium/webdriver'
require 'browsermob/proxy'

server = BrowserMob::Proxy::Server.new("/path/to/downloads/browsermob-proxy/bin/browsermob-proxy") #=> #<BrowserMob::Proxy::Server:0x000001022c6ea8 ...>
server.start

proxy = server.create_proxy #=> #<BrowserMob::Proxy::Client:0x0000010224bdc0 ...>

profile = Selenium::WebDriver::Firefox::Profile.new #=> #<Selenium::WebDriver::Firefox::Profile:0x000001022bf748 ...>
profile.proxy = proxy.selenium_proxy

driver = Selenium::WebDriver.for :firefox, :profile => profile

proxy.new_har "google"
driver.get "http://google.com"

har = proxy.har #=> #<HAR::Archive:0x-27066c42d7e75fa6>
har.entries.first.request.url #=> "http://google.com"
har.save_to "/tmp/google.har"

proxy.close
driver.quit

对于 Chrome :-

require 'selenium/webdriver'
require 'browsermob/proxy'

server = BrowserMob::Proxy::Server.new("/path/to/downloads/browsermob-proxy/bin/browsermob-proxy") #=> #<BrowserMob::Proxy::Server:0x000001022c6ea8 ...>
server.start

proxy = server.create_proxy #=> #<BrowserMob::Proxy::Client:0x0000010224bdc0 ...>

profile = Selenium::WebDriver::Chrome::Profile.new #=>
profile.proxy = proxy.selenium_proxy

driver = Selenium::WebDriver.for :chrome, :prefs => profile

proxy.new_har "google"
driver.get "http://google.com"

har = proxy.har #=> #<HAR::Archive:0x-27066c42d7e75fa6>
har.entries.first.request.url #=> "http://google.com"
har.save_to "/tmp/google.har"

proxy.close
driver.quit

在 chrome 中,错误抛出在下面一行

profile.proxy = proxy.selenium_proxy

错误:- NoMethodError:# 的未定义方法 `proxy='

如何在 chrome 驱动程序配置文件上设置代理?

最佳答案

嘿,不确定是否已经解决了这个问题,我遇到了同样的问题,但最终通过使用这段代码解决了这个问题:

require 'selenium/webdriver'
require 'browsermob/proxy'

server = BrowserMob::Proxy::Server.new("/path/to/downloads/browsermob-proxy/bin/browsermob-proxy") #=> #<BrowserMob::Proxy::Server:0x000001022c6ea8 ...>
server.start

proxy = Selenium::WebDriver::Proxy.new(:http => @proxy.selenium_proxy.http)
caps = Selenium::WebDriver::Remote::Capabilities.chrome(:proxy => proxy)
driver = Selenium::WebDriver.for(:chrome, :desired_capabilities => caps)

然后你可以使用har=proxy.har保存har文件

通过使用它,您基本上可以避免 chromedriver 指向错误的端口和本地主机。此外,这种方法也适用于 IEdriver,只需将大写字母更改为

Selenium::WebDriver::Remote::Capabilities.internetexplorer(:proxy => proxy)

希望这种方法有所帮助:)

关于ruby - 在 ruby​​ 中为 selenium chrome 驱动程序设置代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29163640/

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