執行多個用例的時候,會拋出異常:web
File "xxxxxx.py", line 16, in get_driver driver = webdriver.Chrome(executable_path="chromedriver.exe") File "D:\Python3\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 61, in __init__ self.service.start() File "D:\Python3\lib\site-packages\selenium\webdriver\chrome\service.py", line 66, in start self.service_args, env=env, stdout=PIPE, stderr=PIPE) File "D:\Python3\lib\subprocess.py", line 754, in __init__ _cleanup() File "D:\Python3\lib\subprocess.py", line 474, in _cleanup res = inst._internal_poll(_deadstate=sys.maxsize) File "D:\Python3\lib\subprocess.py", line 1149, in _internal_poll if _WaitForSingleObject(self._handle, 0) == _WAIT_OBJECT_0: OSError: [WinError 6] 句柄無效。
關閉driver 時 , 使用 driver.quit()代替 driver.close()。chrome
以前使用 driver.close() 時,用例執行結束有時會不能成功關閉chromedriver.exe,致使後臺含有多個chromedriver.exe 進程(能夠經過任務管理器查看)。ui
改用 driver.quit()以後,用例執行結束能夠看到後臺不會含有 chromedriver.exe 進程。該問題就解決了。spa
區別code
close:只會關閉焦點所在的當前窗口blog
quit:會關閉全部關聯的窗口進程
因此推薦使用quit 。get