[我的英语不好。敬请谅解。 : )]
有时即使使用隐式超时,Chrome驱动程序也不会结束。
为防止这种情况,我使用Windows的超时装饰器。
超时装饰器效果很好
但是,Chrome驱动程序无法关闭。
我还检查了它是否是同一对象,但是该对象是相同的。
是什么原因?
似乎正在使用超时装饰器...(Chrome驱动程序也是最新版本。)
self.driver.quit()<----这种方法有问题。
@timeout(10)
def driver_quit(self):
self.driver.quit()
@timeout(120)
def driver_get(self, url):
self.driver.get(url)
def call_url(self, url):
try:
self.driver_get(url)
except Exception as e:
try:
self.driver_quit()
except Exception as e:
pass
def timeout(timeout):
from threading import Thread
import functools
def deco(func):
@functools.wraps(func)
def wrapper(*args, **kwargs):
res = [Exception('function [%s] timeout [%s seconds] exceeded!' % (func.__name__, timeout))]
def newFunc():
try:
res[0] = func(*args, **kwargs)
except Exception as e:
res[0] = e
t = Thread(target=newFunc)
t.daemon = True
try:
t.start()
t.join(timeout)
except Exception as je:
print('error starting thread')
raise je
ret = res[0]
if isinstance(ret, BaseException):
raise ret
return ret
return wrapper
return deco
===============修改后的代码===============
WebDriverException最终发生,
但是Chamedriver关闭了这一行==> driver.close()。
def call_url(self, url):
try:
self.driver_get(url)
except:
try:
self.driver_quit()
except:
pass
finally:
self.driver.close()
self.driver.quit()
答案 0 :(得分:1)
一种解决方法是同时调用driver.quit()
和driver.close()
。
为此,您可以将命令放在finally:
语句中。
您将用try:
和except:
来包装所有自动化,然后在末尾使用finally:
语句。
try:
# do my automated tasks
except:
pass
finally:
driver.close()
driver.quit()
编辑
如果发现这没有帮助,您只需向Selenium和Webdriver维护人员报告错误。
希望这对您有帮助!