public void ThenIShouldGetTheFindFlightsPage() { _findFlightsPage = PageFactory.CreateFlightsPage(_context); Assert.IsTrue(_findFlightsPage.HasBodyText, "Unable to find the text on the Find Flights page."); }
public PageObjectSteps(WebTestContext context) { _context = context; _loginPage = PageFactory.CreateLoginPage(context); _findFlightsPage = PageFactory.CreateFlightsPage(context); }