我有一個筆記本使用Selenium Web司機Chrome和它是我第一次運行筆記本。如果我再次運行筆記本,它不會工作,給了錯誤信息:
WebDriverException:消息:未知錯誤:無法發現打開的頁麵加亮:# 0 0 x560b13ce5e89 <未知>
這裏的代碼導致錯誤信息:
chromedriver_path = ' / local_disk0 / tmp / chromedriver '
chromebinary_path = / usr / bin / google chrome的
s =服務(ChromeDriverManager () . install ())
選項=選項()
選項。binary_location = chromebinary_path
options.add_argument (“——disable-gpu”)
options.add_argument (“——no-sandbox”)
# options.add_argument (——remote-debugging-port = 9222)
options.add_argument (”——remote-debugging-port = 9230”)
options.add_argument (“——disable-dev-shm-usage”)
選項。無頭= True
司機= webdriver。鉻(service=s, options=options)
同時,年底我筆記本下麵的代碼可能是問題的一部分,不確定:
driver.stop_client ()
driver.close ()
driver.quit ()
s.stop ()
我能改變什麼能夠運行筆記本多少次我想沒有給出錯誤消息。