如何使用PhantomJS記錄Webdriver上的所有HTTP請求和頁面加載響應? 我使用Python和我的超級簡單的測試腳本是這樣的:使用Webdriver和PhantomJS記錄HTTP流量
from selenium import webdriver
driver = webdriver.PhantomJS()
driver.get('http://www.golem.de')
我已經找到了PhantomJS功能:
page.onResourceRequested = function (request) {
console.log('Request ' + JSON.stringify(request, undefined, 4));
};
但我不知道如何使用Selenium粘在一起這Webdriver分別是Ghostdriver。 我怎麼能這樣做?
我最近發現可以通過驅動程序以HAR格式獲得一些HTTP信息。 get_log(「har」)',但是我在每一種形式的重定向中都進行了搜索,每一種重定向都沒有被報告。有什麼建議麼? – Thorben