1

我正在使用 RSelenium 包连接到 firefox,但我希望通过 socks 代理来连接。

在 Python 中,这可以使用 webdriver 包并设置 FirefoxProfile 的首选项来实现,例如 profile=webdriver.FirefoxProfile() profile.set_preference('network.proxy.socks', x.x.x.x) profile.set_preference('network.proxy.socks_port', ****) browser=webdriver.Firefox(profile)

但是,我找不到如何尝试将代理设置为 socks 代理,或在 RSelenium 中设置 socks 端口。我尝试使用 RCurl 选项设置它,如下所示 options(RCurlOptions = list(proxy = "socks5h://x.x.x.x:****")) ,但这给了我以下错误消息 Error in function (type, msg, asError = TRUE) : Can't complete SOCKS5 connection to 0.0.0.0:0. (1) 有人使用 R 代码使用 socks 代理成功连接到 Firefox 吗?

我正在使用 1.3.5 版的 RSelenium 和 28.0 版的 Firefox。

4

1 回答 1

1

未经测试,但类似以下内容应该可以工作:

fprof <- makeFirefoxProfile(list(
  "network.proxy.socks" = "squid.home-server"
  , "network.proxy.socks_port" = 3128L
  , "network.proxy.type" = 1L
)
)
remDr <- remoteDriver(extraCapabilities = fprof)
remDr$open()
于 2015-02-23T10:56:32.820 回答