Selenium Java - Page Object Model
Given the following Page Object method, what will be the output when calling
loginPage.getWelcomeMessage() if the page contains the text "Welcome, User!"?public String getWelcomeMessage() {
return welcomeText.getText();
}