selenium之关闭窗口close与quit_Junit 博客分类: Testing_自动化测试
程序员文章站
2024-03-23 18:38:22
...
=
更新了新版本之后,更新了系统之后,发现老版本的close不管用了。
unit测试老是卡着不退出。
非要手动kill掉chrome进程才行。
查了下,应该是close和quit的版本更新了。
另外,selenium的css选择器,老版本与新版本的jquery差距不小,坑很多。
=
以下from:https://blog.csdn.net/huilan_same/article/details/52329804
这是close()的说明:
Closes the current window.
关闭当前窗口。
这是quit()的说明:
Quits the driver and closes every associated window.
退出驱动并关闭所有关联的窗口。
摘自 https://blog.csdn.net/huilan_same/article/details/52329804
=
=
=