I am doing selenium webdriver. i have some issue.If i click on Browse button then should display popup.so my application not clicking and not opening Browser.
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");
}
I got one issue coming .
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
this type of error coming .
so please any one guide me to over come this issue.
thanks mahesh.k
