我目前正在尝试使用 BrowserMob Proxy (v2.1.1) + Selenium (v2.5.3) for Python (v2.6) 来测试页面加载时间并将它们输出到 HAR 文件。我需要同时测试 Chrome 和 IE。我目前让它在 Chrome 上完美运行,它在 IE 上运行没有错误,但它没有将正确的数据捕获到 HAR 文件中。
这张图片是我得到的两个不同 HAR 文件的比较。第一个是 IE 的结果,第二个是 Chrome 的结果。我需要对两者都一样。我觉得我设置代理的方式有问题,但根据http://www.seleniumhq.org/docs/04_webdriver_advanced.jsp对于 Chrome/IE 来说应该基本相同我有它。我的想法是它没有使用正确的代理端口或其他东西,但我不知道如何修复它
正如你所看到的,它似乎也在捕捉 selenium 在页面上所做的事情,这不是我想要的。这是我正在使用的代码:
class SeleniumObject:
def __init__(self):
# Start up the server
self.server = Server(Config.BAT_PATH) #resolves to the location of browsermob-proxy-2.1.1/bin/browsermob-proxy.bat
self.server.start()
self.proxy = self.server.create_proxy()
def setupDriver(self, browser):
self.browser = browser.lower()
PROXY = self.proxy.proxy
# Chrome
if self.browser == 'chrome':
options = webdriver.ChromeOptions()
options.add_argument("--start-maximized")
desired_capabilities = webdriver.DesiredCapabilities.CHROME.copy()
# Change the proxy properties of that copy.
desired_capabilities['proxy'] = {
"httpProxy":PROXY,
"ftpProxy":PROXY,
"sslProxy":PROXY,
"noProxy":None,
"proxyType":"MANUAL",
"class":"org.openqa.selenium.Proxy",
"autodetect":False
}
self.driver = webdriver.Chrome(chrome_options=options, desired_capabilities=desired_capabilities)
# IE
if self.browser == 'ie':
desired_capabilities = webdriver.DesiredCapabilities.HTMLUNITWITHJS.copy()
desired_capabilities['proxy'] = {
"httpProxy":PROXY,
"ftpProxy":PROXY,
"sslProxy":PROXY,
"noProxy":None,
"proxyType":"MANUAL",
"class":"org.openqa.selenium.Proxy",
"autodetect":False
}
self.driver = webdriver.Ie(capabilities=desired_capabilities)
def outputHAR(self):
# Output the data as a HAR file
self.har_json = json.dumps(self.proxy.har, indent=4, sort_keys=True) # returns a HAR JSON blob
open(self.browser + '-load-summary-' + self.sample_time + '.har', 'w').write(self.har_json)
def setSampleTime(self):
self.sample_time = datetime.now().strftime("%Y-%m-%d_%H-%M-%S")
def shutDown(self):
self.setRegKey("ProxyEnable", 0) # Forces the internet setting to stop using the proxy in case there was an error
self.driver.quit()
self.proxy.close()
self.server.stop()
selenium = SeleniumObject()
selenium.setupDriver("chrome")
selenium.setSampleTime()
selenium.proxy.new_har("W3Schools")
selenium.driver.get("http://www.w3schools.com")
selenium.outputHAR()
selenium.shutDown()
print "Done!"