Selenium Java - Page Object Model
Given the following action method in a page object:
What will happen if this method is called with an empty string?
public void enterText(String text) {
inputField.clear();
inputField.sendKeys(text);
}What will happen if this method is called with an empty string?
