Html markup looks like this:
<form id="a_abc_abcd15:form" name="a_abc_abcd15:form xxxxxxx>
And this is the text box markup:
<input id="a_abc_abcd05:userPassword" type="text" name="a_abc_abcd05:userPassword" xxxxxx>
The issue is whatever selector I tried, I get element not interactable.
Here’s my complete code:
void Login() throws InterruptedException {
driver.findElement(By.xpath("/html/body/div[1]/div[3]/div[2]/div/form/table[1]/tbody/tr[1]/td/input")).sendKeys("xxxxx");
Thread.sleep(3000);
driver.findElement(By.name("a_abc_abcd05:userPassword")).sendKeys("xxxxxxx");
driver.findElement(By.xpath("/html/body/div[1]/div[3]/div[2]/div/form/table[1]/tbody/tr[5]/td/input")).click();
driver.manage().timeouts().implicitlyWait(500, TimeUnit.SECONDS);
}
but still the same issue occurs – please help. Thanks in advance