求高人做答
小弟,现在要解决一问题,就是在开启test case时,需检查当前是否有ie浏览器开着,如开着,需把它关掉。不知如何处理?? SQASuspendLogOutputResult = WindowVP (Exists, "Caption={* - Microsoft Internet Explorer}", "VP=Test;Wait=1,3")
SQAResumeLogOutput
if Result=1 then
Window SetContext, "Caption={* - Microsoft Internet Explorer}", ""
Window CloseWin, "", ""
end if
如果考虑有多个IE,自己该成循环就好了. 如果有时间的话,可以写一些注释,帮人帮到底嘛 3q!
但好像不是很明白的说 SQASuspendLogOutput ------不用管
Result = WindowVP (Exists, "Caption={* - Microsoft Internet Explorer}", "VP=Test;Wait=1,3")------窗口验证,*是通配符,表示所有窗口。这句的意思是,只要有窗口存在,windowvp就返回1,否则返回0
SQAResumeLogOutput ------不用管
if Result=1 then
Window SetContext, "Caption={* - Microsoft Internet Explorer}", "" ------可以理解为焦点放到这个窗口上,就是马上要对这个窗口进行操作
Window CloseWin, "", "" ------关闭这个窗口
end if
这个脚本我觉得还是有点问题,没运行过。楼主最好自己动手试一试,光看别人说是学不到东西的! 好噶,我仔细去看看,谢谢版主~~~~ 好东东!!
页:
[1]