gpt4 book ai didi

python - Selenium:退出Python脚本而不关闭浏览器

转载 作者:行者123 更新时间:2023-12-02 03:35:32 27 4
gpt4 key购买 nike

我使用以下方法来处理使用 Ctrl + C 终止正在运行的 Python 脚本的情况。

except KeyboardInterrupt:
print "ABORTED"

但是,这也会终止我的 Selenium WebDriver 浏览器。

有没有办法终止脚本并使浏览器保持事件状态,以便我可以继续使用它?

我通常做的是通过 Ctrl + Z 暂停脚本。不幸的是,这通常会导致浏览器卡住并且不响应。

最佳答案

您可以将 CTRL+C+sys.exit() 替换为 quit() 方法,以终止 Python 脚本而不关闭浏览器 session 。只需使用以下表格:

user_choice = raw_input('Please click ENTER button to close application')
if not user_choice:
print "ABORTED"
quit()

关于python - Selenium:退出Python脚本而不关闭浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36334983/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com