Selenium Java - Page Object Model
Examine this Base Page method:
What is the issue and how can it be fixed?
public void inputText(By locator, String text) {
WebElement element = driver.findElement(locator);
element.sendKeys();
}What is the issue and how can it be fixed?
