Selenium Java - Page Object Model
Consider this Page Object method:
What will this method return if the login button is hidden on the page?
public boolean isLoginButtonDisplayed() {
return loginButton.isDisplayed();
}What will this method return if the login button is hidden on the page?
