标签: java selenium-webdriver
使用click()的Selenium webdriver不会点击“上传文件”按钮。我能够使用xpath识别按钮,但有些人无法点击它。有没有其他方法可以这样做?
答案 0 :(得分:0)
要上传文件使用sendKeys,请在sendkeys中发送文件路径
例如:
driver.findElement(By.xpath("//myxpath")).sendKeys("C:\\drive\\NewTextDocument.txt");