This is HTML where I try to find selected input
I try to sendkey() to this input like this
String xPath = "//*[@id='id_username']";
WebDriverWait wait = new WebDriverWait(driver, 30);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath(xPath))).sendKeys("text");
Always get this error org.openqa.selenium.TimeoutException. Usually I get this error when element is not visible in setted time.
There is no iframe in entire html.
Which may be the cause?
