不是一個完整的答案,但更多的在你的方向:)
不可能使用的webdriver(見http://jimevansmusic.blogspot.nl/2012/07/webdriver-y-u-no-have-http-status-codes.html)。
可能的解決方案:
- 使用Selenium ::客戶
- 使用代理
解決方案1(硒::客戶端):
您可以用它做Selenium(也被Watir Webdriver使用)。 檢查這裏:http://blog.testingbot.com/2011/12/21/capture-network-traffic-with-selenium
require "rubygems"
gem "selenium-client"
require "selenium/client"
gem 'test-unit'
require 'test/unit'
# since this code comes from their site (should not be needed)
gem "testingbot"
require "testingbot"
class ExampleTest < TestingBot::TestCase
attr_reader :browser
def setup
@browser = Selenium::Client::Driver.new \
:host => "hub.testingbot.com",
:port => 4444,
:browser => "firefox",
:version => "8",
:platform => "WINDOWS",
:url => "http://www.google.com",
:timeout_in_second => 60
browser.start_new_browser_session(:captureNetworkTraffic => true)
end
def teardown
browser.close_current_browser_session
end
def test_command
browser.open "/"
p browser.browser_network_traffic
end
end
文章認爲,這將在Firefox 8打開谷歌和返回的網絡流量。一個響應的一個例子是:
"403 GET http://localhost:5555/favicon.ico1333 bytes 94ms
(2011-12-21T15:53:06.352+0100 - 2011-12-21T15:53:06.446+0100
Request Headers - Host => localhost:5555 -
User-Agent => Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0.1) Gecko/20100101
Firefox/8.0.1 - Accept => image/png,image/*;q=0.8,*/*;q=0.5 -
Accept-Language => en-us,en;q=0.5 - Accept-Encoding => gzip, deflate - Accept-Charset => ISO-8859-1,utf-8;q=0.7,*;q=0.7 -
Proxy-Connection => keep-aliveResponse Headers - Date => Wed, 21 Dec 2011 14:53:06 GMT -
Server => Jetty/5.1.x (Windows 7/6.1 x86 java/1.6.0_26 - Content-Type => text/html -
Content-Length => 1333 - Via => 1.1 (jetty)
溶液2(代理):
檢查http://bmp.lightbody.net/與https://github.com/jarib/browsermob-proxy-rb在一起。
如果您使用Net :: HTTP庫,這與watir有什麼關係? –
我在這裏給了我的sudo,但我想在watir中做到這一點,這就是爲什麼標記爲watir,有沒有辦法用watir捕獲網絡流量? –