本帖最后由 想回到从前 于 2010-5-25 10:10 编辑
在做一个CD安装的驱动程序,在安装过程中会弹出一个"Hardware Installation"窗口,但我现在的语句当窗口弹出时不能运行Send("{left}")后面的代码,有的时候还会跳成不是当前窗口(即hardware installation窗口为当前1,2秒钟就跳到这个小窗口后面的全屏窗口为当前窗口,一开始误认为执行了,但实际上关程序时才发现hardware installation这个窗口在后面显示了).
注:_ScreenCapture_CaptureWnd($pic_folder &"\WHQL1.jpg",$whql1_handle)和_TestLog_Event("Windows Security1", " ", $pic_folder &"\WHQL1.jpg")都是成功的.然后窗口貌似就跑到后面去了.
希望高手帮助....谢谢.
关于这个的一段代码: $i=1000
Do
sleep ($i)
_ScreenCapture_Capture($pic_folder &""& $i &"second.jpg")
_TestLog_Message("Installation page" &$i, " ",$pic_folder &""& $i &"second.jpg")
$i=$i+2000
Until WinExists("Hardware Installation")
;---------------check if "windows security" dialog prompt----------------
If not WinActive("Hardware Installation") Then WinActivate("Hardware Installation")
Sleep(1000)
WinWaitActive("Hardware Installation") ; windows secuity for audio
$whql1_handle=WinGetHandle("Hardware Installation")
_ScreenCapture_CaptureWnd($pic_folder &"\WHQL1.jpg",$whql1_handle)
_TestLog_Event("Windows Security1", " ", $pic_folder &"\WHQL1.jpg")
send("{left}")
sleep(1000)
send("{enter}")
|