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.findEle
driver.findEle
Try using JavaScript to sendkeys().
WebElement element = driver.findElement(By.name("name")); JavascriptExecutor executor = (JavascriptExecutor)driver; executor.executeScript("arguments[0].click();", element);
More information on JavaScript Executor can be found at JavascriptExecutor - Selenium.