return elementFound;
}
//waitFor_ methods
public boolean waitForEditable(String locator) {
Wait w = new WaitForElementToBeEditable(locator);
try {
w.wait("Element " + locator + " not editable after " + timeoutSeconds + " seconds", Long.parseLong(timeoutMilliseconds));
}
catch (SeleniumException e) {
if (isKnownSeleniumBug(e)) {
waitForEditable(locator);
}