OSError:[Errno 8]尝试使用browsermobproxy启动服务器时出现Exec格式错误

时间:2017-08-28 21:00:05

标签: python selenium selenium-chromedriver browsermob browsermob-proxy

Got the following error when I tried to run this script:

from browsermobproxy import Server
server = Server("path/to/browsermob-proxy")
server.start()
proxy = server.create_proxy()

from selenium import webdriver
profile  = webdriver.FirefoxProfile()
profile.set_proxy(proxy.selenium_proxy())
driver = webdriver.Firefox(firefox_profile=profile)


proxy.new_har("google")
driver.get("http://www.google.co.uk")
proxy.har # returns a HAR JSON blob

server.stop()
driver.quit()

https://browsermob-proxy-py.readthedocs.io/en/stable/index.html

取得上述代码

我尝试使用broswermobproxy和selenium导出HAR文件。

软件规格:

操作系统:Ubuntu 16.04 脚本语言:Python(2.7.8) 自动Web浏览器:Selenium(3.5.0) BrowserMob-Proxy:0.8.0和2.1.4(分别从pip和https://bmp.lightbody.net/安装)

我尝试添加shebang系列,但它没有帮助。不知道我为什么会收到错误。任何帮助将不胜感激。谢谢。

1 个答案:

答案 0 :(得分:0)

您是否尝试将#!/ bin / sh添加到文件的开头?