有人可以告诉我如何使用selenium RC / Webdriver在Gmail / Yahoo邮件中添加附件。
请在这种情况下帮助我。
提前致谢。
答案 0 :(得分:0)
在您的机器中安装Autoit。 编写一个AutoIT脚本,如下所示。
WinWaitActive("Choose file") \\specify the name of the choose window
Send("C:\attach\samplefile.txt") \\location of the file you want to attach
Send("{ENTER}")
编写代码后,将文件另存为attach.exe 将以下行添加到您的selenium代码中(如果使用java)
Runtime.getRuntime().exec("c:\\path\\attach.exe");
以上内容有助于添加附件。希望它有所帮助!
答案 1 :(得分:0)
我使用机器人api找到了这个问题的答案。感谢回复此问题的人。