0

Got the following error when I tried to run this script: OSERROR:[錯誤8]嘗試使用browsermobproxy

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() 

啓動服務器時Exec的格式錯誤從https://browsermob-proxy-py.readthedocs.io/en/stable/index.html

我試圖用出口和broswermobproxy硒HAR文件拍攝了上面的代碼。

軟件規格:

操作系統:Ubuntu的16.04 腳本語言:Python的(2.7.8) 自動化Web瀏覽器:硒(3.5.0) BrowserMob代理:0.8.0和2.1.4(安裝分別來自pip和https://bmp.lightbody.net/

我嘗試添加shebang行但它沒有幫助。不知道爲什麼我得到錯誤。任何幫助將不勝感激。謝謝。

回答

0

您是否嘗試將#!/ bin/sh添加到文件的開頭?