RemoteWebDriver SetFileDetector 给出异常 org.openqa.selenium.UnsupportedCommandException:
我正在尝试使用 RemoteWebDriver 在 google chrome 中使用 webDriver 上传文件。 所以我使用 SetFileDetector(new LocalFileDetector()) 然后 driver.findElement(By.id('abc')).sendKeys(value);
但我收到异常 org.openqa.selenium.UnsupportedCommandException:。
I am trying to upload a file using webDriver in google chrome using RemoteWebDriver.
So I am using SetFileDetector(new LocalFileDetector()) and then driver.findElement(By.id('abc')).sendKeys(value);
But I am getting an exception org.openqa.selenium.UnsupportedCommandException:.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据此问题页面 http://code.google.com/p/ selenium/issues/detail?id=2653 如果您使用 ChromeDriver(),而不是 RemoteWebDriver(),则可能会发生这种情况。
According to this issue page http://code.google.com/p/selenium/issues/detail?id=2653 this might happen if you use ChromeDriver(), not RemoteWebDriver().