我正在做硒网络驱动程序。我有一些问题。如果我点击浏览按钮,那么应该显示弹出窗口。所以我的应用程序没有点击也没有打开浏览器。
try{
WebElement fileInput = driver.findElement(By.xpath("html/body/form[1]/p[2]/input"));
fileInput.sendKeys("C:\\Documents and Settings\\mahesh\\Desktop\\button then display msg.png");
System.out.println("valid");
}
catch(NoSuchElementException ex) {
System.err.println("invalid");
}
我有一个问题来了。
org.openqa.selenium.NoSuchElementException: Unable to locate element: {"method":"xpath","selector":"html/body/form[1]/p[2]/input"}
Command duration or timeout: 30.06 seconds
这种类型的错误来了。
所以请任何人指导我解决这个问题。
谢谢 mahesh.k