标题: 求高人做答 [打印本页] 作者: jackael008 时间: 2005-8-29 17:19 标题: 求高人做答 小弟,现在要解决一问题,就是在开启test case时,需检查当前是否有ie浏览器开着,如开着,需把它关掉。不知如何处理??作者: DontTest 时间: 2005-8-29 17:25
SQASuspendLogOutput
Result = 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,自己该成循环就好了.作者: ilovejolly 时间: 2005-8-29 22:46
如果有时间的话,可以写一些注释,帮人帮到底嘛作者: jackael008 时间: 2005-8-30 09:08
3q!
但好像不是很明白的说作者: ilovejolly 时间: 2005-8-30 09:22
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