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";
}