在selenium IDE中上传文件的脚本

时间:2012-03-15 11:03:24

标签: testing selenium-ide

上传文件的脚本,在selenium IDE或 如何使用selenium自动上传文件

1 个答案:

答案 0 :(得分:4)

您可以使用

selenium.type("xpath of text box","path of your file")

命令=类型
TARGET = xpath_of_text_box
值= Path_of_your_file

示例:

selenium.type("id=cvfile", "D:\\Automation\\resume.doc");