jackael008 发表于 2005-8-29 17:19:03

求高人做答

小弟,现在要解决一问题,就是在开启test case时,需检查当前是否有ie浏览器开着,如开着,需把它关掉。不知如何处理??

DontTest 发表于 2005-8-29 17:25:22

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:16

如果有时间的话,可以写一些注释,帮人帮到底嘛

jackael008 发表于 2005-8-30 09:08:45

3q!
但好像不是很明白的说

ilovejolly 发表于 2005-8-30 09:22:04

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

这个脚本我觉得还是有点问题,没运行过。楼主最好自己动手试一试,光看别人说是学不到东西的!

jackael008 发表于 2005-8-30 09:26:21

好噶,我仔细去看看,谢谢版主~~~~

tomzhang 发表于 2005-12-22 12:34:11

好东东!!
页: [1]
查看完整版本: 求高人做答