Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有Selenium RC. 现在我不知道在测试过程中会发生什么,但如果程序被意外杀死,我希望关闭浏览器。顺便说一句,脚本在子进程中运行。
Selenium RC
现在我尝试了方法__del__,但它不起作用,我不知道是否有任何异常。所以我不知道在哪里放置try --- except或with --- in。
__del__
try --- except
with --- in
如果我在主进程中运行脚本,它工作正常。有什么帮助吗?
版本Selenium是 2.33。浏览器是Firefox21.0
Selenium
Firefox
使del方法返回布尔值。成功则为真,否则为假。
如果返回 false,则关闭 main 中的驱动程序。