0

有人可以告诉我如何使用 selenium RC/Webdriver 在 Gmail/Yahoo 邮件中添加附件。

请在这种情况下帮助我。

提前致谢。

4

2 回答 2

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");  

以上将有助于添加附件。希望能帮助到你!

于 2013-02-13T08:34:33.663 回答
0

我使用机器人 api 找到了这个问题的答案。感谢回答这个问题的人。

于 2014-05-14T10:47:53.100 回答