如何处理多个打开的窗口

时间:2011-04-08 14:25:07

标签: qtp

在Windows应用程序中,如果为一个窗口编写脚本,并且如果在同一窗口中打开多次,则脚本会失败并出错。

1 个答案:

答案 0 :(得分:1)

对于这种情况..为什么不在脚本中添加Check。检查应用程序是否存在。

例如:

   if javawindow(xxxxx).Exist(0) then
      ' some code for not opening the same window.          
   else
      'some code for opening the window.
   end if