selenium如何避免代碼終端造成的内存占用

selenium如何避免代碼終端造成的内存占用

selenium如何避免当代码出现错误,自行停止程序,
导致代码运行不到这句driver.close()关闭浏览器的代码后,出现大量浏览器资源占用linux服务器内存的情况

try:

spider = webdriver.Chrome(path)

spider.get(url)

cookies = spider.get_cookies()

print(f"main: cookies = {cookies}")

spider.delete_all_cookies()

spider.close()

except:

pass

for handle in spider.window_handles: #窗口跳转

spider.switch_to.window(handle)

spider.quit()


回答:

try except finally

以上是 selenium如何避免代碼終端造成的内存占用 的全部内容, 来源链接: utcz.com/p/938007.html

回到顶部