51Testing软件测试论坛
标题:
Selenium怎么实现文件上传的操作
[打印本页]
作者:
jorhna
时间:
2010-4-14 17:50
标题:
Selenium怎么实现文件上传的操作
如题!在Web页面中常会遇到文件上传的功能,比如附件。不知道Selenium是否可以实现这样的操作,请教大家了!
[
本帖最后由 jorhna 于 2010-4-15 16:49 编辑
]
作者:
小米啊
时间:
2010-4-15 09:10
可以实现。可以试结合autoit等。如果上传文件很多的话。可以考虑selenium是否是最适合你的工具。
作者:
jorhna
时间:
2010-4-15 16:49
谢谢指点,可能确实要考虑第三方工具来做了。
作者:
小米啊
时间:
2010-4-15 18:50
找到好的办法,希望能分享给大家,谢谢
作者:
mandy_1982
时间:
2010-4-26 10:28
标题:
selenium 可以在安全模式下运行就好了
selenium 可以在安全模式下运行就不会有上面的问题了
作者:
小米啊
时间:
2010-4-27 08:45
原帖由
mandy_1982
于 2010-4-26 10:28 发表
selenium 可以在安全模式下运行就不会有上面的问题了
不明,能否更详细。在什么安全模式,不会出现上面的什么问题?
作者:
xiaoyaoke
时间:
2010-4-27 13:06
firefox中直接写文件路径到input里面就可以吧?
作者:
robin.von
时间:
2010-5-6 09:25
最近我也碰到这样的问题,经过一段时间的研究以后,找到一个不算太稳定的解决方法。
在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 编辑
]
作者:
Bryce.Guo
时间:
2010-5-10 14:31
请问,如果是flash的上传按钮,如何实现?
作者:
mandy_1982
时间:
2010-5-20 09:45
我也忘记了,我得查查
作者:
mandy_1982
时间:
2010-6-4 12:34
在chrome模式就好了可能是,你试试
作者:
goal1860
时间:
2010-6-7 20:51
-8 谢谢分享,很有借鉴价值!
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2