Selenium Java - Page Object Model
Examine the following code snippet:
Assuming the element is present on the page, what is the likely issue here?
@FindBy(id = "password")
private WebElement passwordField;
public void enterPassword(String pwd) {
passwordField.sendKeys(pwd);
}Assuming the element is present on the page, what is the likely issue here?
