Merge pull request #25 from vonrosen/ari-3724

Allow flash requests to be detected. For https://webarchive.jira.com/browse/ARI-3724
This commit is contained in:
Noah Levitt 2014-06-06 15:15:24 -07:00
commit e3c23a0f2b

View File

@ -203,7 +203,8 @@ class Chrome:
"--disable-web-sockets", "--disable-cache",
"--window-size=1100,900", "--no-default-browser-check",
"--disable-first-run-ui", "--no-first-run",
"--homepage=about:blank", "about:blank"]
"--homepage=about:blank", "--disable-direct-npapi-requests",
"about:blank"]
self.logger.info("running {}".format(chrome_args))
self.chrome_process = subprocess.Popen(chrome_args, env=new_env, start_new_session=True)
self.logger.info("chrome running, pid {}".format(self.chrome_process.pid))