I know i have seen this Question on StackOverFlow but not i am not able to solve my problem:
Error :
org.openqa.selenium.ElementClickInterceptedException: element click intercepted: Element <input type="password" id="Password" name="Password" value="" maxlength="25" placeholder=" " class=""> is not clickable at point (446, 716). Other element would receive the click: <label for="Password">...</label>
(Session info: chrome=99.0.4844.83)
HTML:
<input type="password" id="Password" name="Password" value="" maxlength="25" placeholder=" " class="">
XPATH AND CSS
@FindBy(css = "#Password")
public WebElement password;
@FindBy(xpath = "//input[@id='Password']")
public WebElement password;
My code:
wait.until(ExpectedConditions.elementToBeClickable(password)).click();
wait.until(ExpectedConditions.elementToBeClickable(password)).sendKeys(PASSWORD);
Even JAVASCRIPT Click is not working
executor.executeScript("arguments[0].click();", element);
This is happening for all Checkboxes / input fields on this page. Any solution would be helpful.