1
運行時,我得到這個錯誤我的分裂腳本斯普林特(PhantomJS)拋出錯誤
錯誤:
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'close'",)
in <bound method Service.__del__ of
<selenium.webdriver.phantomjs.service.Service object at 0x7fa709da3fd0>> ignored
即使沒有我的代碼甚至使用屬性close
。
代碼:
from splinter import Browser
browser = Browser('phantomjs')
browser.visit('https://example.com/')
我也嘗試添加browser.driver.close()
到最後,並沒有解決它