Selenium Java - Page Object Model
Given the following Page Object method, what will be the output when calling
loginPage.getTitle() if the page title is "Welcome Page"?
public class LoginPage {
WebDriver driver;
public LoginPage(WebDriver driver) {
this.driver = driver;
}
public String getTitle() {
return driver.getTitle();
}
}