現在、BrowserMob Proxy (v2.1.1) + Selenium (v2.5.3) for Python (v2.6) を使用して、ページの読み込み時間をテストし、HAR ファイルに出力しようとしています。Chrome と IE の両方をテストする必要があります。現在、Chrome で完全に動作しており、IE ではエラーなく動作しますが、正しいデータを HAR ファイルにキャプチャしません。
この画像は、取得している 2 つの異なる HAR ファイルを比較したものです。1 つ目は IE の結果で、2 つ目は Chrome の結果です。両方で同じものを取得する必要があります。プロキシの設定方法に何か問題があると感じていますが、http://www.seleniumhq.org/docs/04_webdriver_advanced.jspによると、基本的に Chrome/IE のように同じことになるはずです私はそれを持ってます。私の考えでは、適切なプロキシ ポートまたは何かを使用していないのですが、修正方法がわかりません。
ご覧のとおり、セレンがページで行っていることもキャプチャしているようですが、これは私が望んでいるものではありません。これは私が使用しているコードです:
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!"