如何使用 Watir 获取浏览器 IP?我正在使用代理,我想验证它是否正常工作。如果代理正在工作,也许还有其他方法?
这是我当前的代码:
profile = Selenium::WebDriver::Firefox::Profile.new
profile.proxy = Selenium::WebDriver::Proxy.new :http => 'my.proxy.com', :ssl => 'my.proxy.com'
browser = Watir::Browser.new :firefox, :profile => profile
browser.goto 'http://someurl.com'
浏览器将打开 url,尽管代理不工作。
感谢帮助