我正在尝试在 selenium webdriver (2.25) 的 ruby (1.8.7) 脚本中使用 PhantomJS 1.9.1 配置代理。
我看到了几个使用 Firefox 的例子,我用这个浏览器成功地做到了。我使用了这段代码:
profile = Selenium::WebDriver::Firefox::Profile.new
profile.proxy = Selenium::WebDriver::Proxy.new :ssl => 'chronos.landebitel.local:3128'
$browser = Watir::Browser.new :firefox, :profile => profile
但我找不到 phantomjs 的任何示例。我搜索并尝试了许多解决方案,但没有一个有效。
有人可以给我一个例子来帮助我吗?