I am not able to put any value in my application using WebDriver. My application is using frames.
I am able to clear the value of my textbox with driver.findElement(By.name("name")).clear();
, but I'm unable to put any value using driver.findElement(By.name("name")).sendKeys("manish");
. The click
command works for another button on the same page.