Package test.pageobject_example.pages

Examples of test.pageobject_example.pages.GoogleSearchPage.open()


    public static void testGoogleSearch(){
      //Create a new instance of GoogleSearch page
      GoogleSearchPage googleSearchPage = new GoogleSearchPage(new HtmlUnitDriver());

        // go to Google ("http://www.google.com")
      googleSearchPage.open();

        // Enter something to search for
      googleSearchPage.enterSearchForm("Cheese!");

        // Now submit the form, and get the next page object
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.