基于命令行的工具进行自动化测试,最终要根据输出的信息进行判断,当成功才进行下一步的操作,因此需要在脚本中,实现对关键字的检测。文章源自陈学虎-https://chenxuehu.com/article/2020/07/7610.html
@Echo off for /f "tokens=*" %%w in ('type d:\f2020-06-19-16-31-08.log') do ( rem echo %%w echo %%w | findstr 68 >nul && ( echo pass ) || ( echo fail ) ) pause
文章源自陈学虎-https://chenxuehu.com/article/2020/07/7610.html
这样就实现了,当出现某个关键字的时候,处理 pass 逻辑中的代码,否则处理 fail 中的逻辑。文章源自陈学虎-https://chenxuehu.com/article/2020/07/7610.html
文章源自陈学虎-https://chenxuehu.com/article/2020/07/7610.html 文章源自陈学虎-https://chenxuehu.com/article/2020/07/7610.html
评论