|
4#
楼主 |
发表于 2014-5-21 18:32:44
|
只看该作者
研究了一段时间,终于知道怎么回事了,现在把代码贴出来,跟大家一起分享一下
autoit里面的代码
Local $wh = WinActive("打开")
If $wh==0 Then
MsgBox(64,"hello","NoWindorw!!!")
Else
ControlSetText($wh,"","[CLASS:Edit; INSTANCE:1]","D:\myTestTool\newTool\config.exe")
ControlClick("打开","打开(0)","取消")
Send("!O")
EndIf
selenium的java代码
driver.findElement(By.id("pzfileuploadifyUploader")).click();//点击上传按钮
Thread.sleep(5000);
java.lang.Runtime.getRuntime().exec("D:\\autoTest\\autoitCode\\config.exe");//调用autoit生成的config.exe |
|