Package com.google.sitebricks.acceptance.page

Examples of com.google.sitebricks.acceptance.page.ConversionPage


    Calendar calendar = Calendar.getInstance();
    String msg = "This is a test msg";
    Double dbl = 2.2;
   
      WebDriver driver = AcceptanceTest.createWebDriver();
      ConversionPage page = ConversionPage.open(driver, date, calendar, inboundDateFormat, msg, dbl);
     
      assert page.hasCalendar(calendar) : "Calendar not bound correctly";
      assert page.hasDate(date) : "Date not bound correctly";
      assert page.hasDouble(dbl) : "Double nto bound correctly";
      assert page.hasMessage(msg) : "String not bound correctly";
  }
View Full Code Here

TOP

Related Classes of com.google.sitebricks.acceptance.page.ConversionPage

Copyright © 2018 www.massapicom. 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.