2016-01-23 276 views
0

每當我嘗試它說Chrome瀏覽器意外關閉,並要求重新打開。在蟒蛇到底給了錯誤:Python Selenium:無法打開Chrome瀏覽器

raise exception_class(message, screen, stacktrace) 
selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: was killed 
    (Driver info: chromedriver=2.0,platform=Mac OS X 10.10.2 x86_64) 

我的代碼是:

driver = None 
profile = webdriver.Chrome('/Setups/chromedriver') 
driver.set_window_size(1128, 768) # optional 
url = 'http://google.com' 
driver.get(url) 

更新:在詳細模式下運行給出了這樣的:

enter image description here

回答

0

您試圖設置大小爲none的對象。嘗試

driver = webdriver.Chrome('/Setups/chromedriver') 
driver.set_window_size(1128, 768) 
+0

同樣的錯誤,儘管從我的身邊是愚蠢的:'riverException:消息:未知錯誤:Chrome的啓動失敗:在killed' – Volatil3

+1

如果不使用最新的Chrome版本的驅動程序下載,然後再試一次。 – Guy

+0

* Google Chrome \t 47.0.2526.111(官方版本)(64位)* 這是最新版本嗎? – Volatil3

相關問題