Mr.Lee 发表于 2010-6-9 10:12:16

selenium 上传文件疑问?

各位高手:
    我刚开始使用selenium,在上传文件的时候,selenium ide无法录制成功,麻烦各位高手能提供好的解决方案。谢谢了!

Mr.Lee 发表于 2010-6-9 16:04:05

没有人遇到过,上传的问题吗?

云层 发表于 2010-6-9 16:10:04

没试过,现在试试

Mr.Lee 发表于 2010-6-9 16:28:40

终于有人回复了,呵呵,我这里上传文件好像是ajax做的,所以这边似乎单纯的录制执行处理不好,有其他方法可以处理吗?

Mr.Lee 发表于 2010-6-9 16:29:39

另外,我这里需要上传的是图片并且需要显示出来

云层 发表于 2010-6-9 16:46:48

悲剧的是在我的discuz.net上我也出现了对象无法识别的问题,所以我也没做出来哈哈

wugecat 发表于 2010-6-9 17:02:01

直接输入文件的路径吧

云层 发表于 2010-6-9 17:03:17

找到一个解决的方法,因为js不允许修改<input type="file">这类表单,所以最后的type是没法实现的,现在只有在Selenium RC模式下用*chrome模拟,而core模式要等他们修复bug了。

原文
can't seem to use Selenium Core to upload a file; when I try to type in the file upload text field, nothing happens!

    Unfortunately, this is yet another JavaScript security restriction; JS is not allowed to modify the value of <input type="file"> form fields. You can work around this by running your tests under Selenium IDE or under Selenium RC running in the experimental "*chrome" mode for Firefox, but at present there is no way to do this on any other browser. This is filed as bug SEL-63, but there may be no way to fix it in Selenium Core.

Mr.Lee 发表于 2010-6-9 17:19:57

我就是在Selenium RC下export 成python文件执行的,一样的效果,他默认的就是chrome浏览。
郁闷啊。

云层 发表于 2010-6-9 17:39:37

我刚才试了试,换成firefox就好了,我以前用IE的,希望你对你有用处

IDE录制C#,到RC上执行通过

Mr.Lee 发表于 2010-6-9 17:46:41

你的意思是录制的时候,生成C#的source?并且export出来,到RC里执行?

Mr.Lee 发表于 2010-6-9 17:59:20

不好意思,我之前只使用过python RC ,用C# RC的话,应该是需要编译的吧?

Mr.Lee 发表于 2010-6-9 18:32:39

hi,云层,我对selenium IDE+C#RC的组合不是很熟悉,你能详细的说明一下是怎么做的吗?求解,先谢谢了。

云层 发表于 2010-6-9 22:46:39

和你用python没啥区别吧,在c#里面导入两个dll库文件把代码贴进去就行了,我以前是用IE模拟出的问题,换了firefox就行了,你用html方式回放应该也可以通过的

Mr.Lee 发表于 2010-6-10 10:21:24

哦,云层,那你用vs建的工程运行的?还是直接在xp下的终端执行的,我之前生成python文件修改完后,直接执行python文件就行,如果生产c#的话,该怎么执行?还要做什么其他的工作?

云层 发表于 2010-6-21 11:40:54

我是ide录制成c#,然后在c#直接new unittest,然后倒入3个selenium库就行了,我用vs跑selenium rc的

ahtest 发表于 2010-7-14 17:07:31

ff上很好用
type 'up' , filepath
ie上就不行。。。看来要用其它的脚本代替了。。。
页: [1]
查看完整版本: selenium 上传文件疑问?