刚开始学习使用RF进行UI自动化测试时,经常会遇到运行第二遍时无法显示log,于是查找了一下原因。
之所以会出现这个问题,是因为运行一次后chromedriver.exe,IEDriverServer.exe进程仍在运行中,将进程关闭掉后再次运行则log显示正常。
关闭进程的方法:
第一种:每次运行后,手动关闭chromedriver.exe或者IEDriverServer.exe
第二种:在每个Test_Case的最后面添加Close All Browsers(当测试用例执行失败时,则无法关闭浏览器驱动进程)
第三种:Library添加OperatingSystem库后,创建关键字“Close_Browsers_Driver”,将该关键字放在Test_Case最前面,则会在执行Test_Case开始时将已运行的浏览器驱动关闭。
${RunOutput}= | Run | taskkill \ /F /IM chromedriver.exe |
log | ${RunOutput}= | |
${RunOutput}= | Run | taskkill \ /F /IM ieromedriver.exe |
log | ${RunOutput}= | < |