|
最近我也碰到这样的问题,经过一段时间的研究以后,找到一个不算太稳定的解决方法。
在FireFox中,selenium是通过直接给file控件的text input里输入路径实现文件上传的,操作过程中不会弹出选择文件的对话框,
但我们公司在实现过程中,对这个控件做了包装,用了Ajax的DIV显示上传选中的文件,没有TextInput部分了,刚开始偶是感觉做不了了,后来找了一些资料,解决的思路如下:
首先把页面的焦点设到File控件上,然后模拟发送一个空格键,就可以弹出选择文件窗口了,然后用AutoIt对这个窗口进行操作。
下面的代码在 Firefox3.6.3 英文版测试通过,在firefox3.5.9上一直不能打开选择文件的窗口。IE上需要改一下打开弹出窗口部分的代码。要注意运行时保证测试浏览器的窗口为当前窗口,否则发送空格键不能弹出选择文件窗口。
Java部分打开选择文件的对话框部分代码如下:
if (!isElementPresent(locator)){
return "LOCATOR NOT FOUND:" + locator;
}
focus(locator);
keyPressNative(java.awt.event.KeyEvent.VK_SPACE+ "");
return SUCCESS;
实现AutoIt调用部分的代码如下:
File f = new File(file);
if (!f.exists()){
return "File not found.";
}
File exeFile = new File(uploadFileExe);
if (!exeFile.exists()){
return "AutoIt file not found.";
}
String filename = file;
try {
filename = f.getCanonicalPath();
} catch (IOException e1) {
e1.printStackTrace();
return "Get canonical path failed.";
}
int result = -1;
try
{
java.lang.Process process = java.lang.Runtime.getRuntime().exec(uploadFileExe + " " + filename);
result = process.waitFor();
} catch (Exception e)
{
e.printStackTrace();
}
return String.valueOf(result);
AutoIt的代码如下:
Dim $titleEn = "File Upload"
Dim $titleCn = "文件上载"
Dim $titleIECn = "选择文件"
Dim $timeout = 0;
Dim $handle
Dim $file = "test"
If $CmdLine[0] > 0 Then
$file = $CmdLine[1]
Else
Exit(1)
EndIf
While ($timeout < 3)
If (WinExists($titleEn)) Then
$handle = WinGetHandle($titleEn)
ExitLoop
ElseIf (WinExists($titleCn)) Then
$handle = WinGetHandle($titleCn)
ExitLoop
ElseIf (WinExists($titleIECn)) Then
$handle = WinGetHandle($titleIECn)
ExitLoop
EndIf
Sleep(1000);
$timeout = $timeout + 1
WEnd
If (Not FileExists($file)) Then
If ($handle <> "") Then
WinClose($handle)
EndIf
Exit(1)
EndIf
If ($handle <> "") Then
ControlSetText($handle,"","Edit1",$file)
Sleep(200)
ControlClick($handle,"","Button2")
Sleep(200)
Exit(0)
Else
Exit(1)
EndIf
[ 本帖最后由 robin.von 于 2010-5-6 09:26 编辑 ] |
|