0

我有这段代码:

Element.sendKeys(By.xpath("//input[@id='documentUploadT7Form:documentFileUpload:file']"),
        "C:\\Users\\Public\\Pictures\\Sample Pictures\\Koala.jpg", driver, new WebDriverWait(driver, 60L));

在硒 WC 中运行良好。当我们更改为“seleniumgrid and Linux”时,文件不再上传。

您会建议如何使用 selenium 网格在 Linux 中上传文件吗?

4

1 回答 1

0

您使用的路径对于 Linux 是错误的。您需要将 Koala.jpg 文件存储在 linux RC 机器中并在命令中提供该路径。

"C:\\Users\\Public\\Pictures\\Sample Pictures\\Koala.jpg"
于 2013-05-08T06:45:21.283 回答