// Enter something to search for
googleSearchPage.enterSearchForm("Cheese!");
// Now submit the form, and get the next page object
GoogleSearchResultPage googleSearchResultPage = googleSearchPage.submitForm();
// Verify: Check the title of the page
String pageTitle = googleSearchResultPage.getTitle();
System.out.println("Page title is: " + pageTitle);
assertTrue("Got title: " + pageTitle, pageTitle.contains("Cheese!"));
}