I have this page where there is a textbox and there is save button associated with each text box. I need to click on the save button so that it will save the value in text b
In Selenium IDE try:
sendKeysAndWait id=mybutton ${KEY_ENTER}
same with Webdriver:
WebElement element_p = (new WebDriverWait(_driver, 3)) .until(ExpectedConditions.visibilityOfElementLocated(By .id("myButton"))); element_p.sendKeys(Keys.RETURN);