public void When_I_select_the_CAMPUS_campus(string campus)
 {
     // tbd - write a test that actually selects the link on the page rather than using the URL
     _campusGivingPage = CampusGivingPage.NavigateTo(_driver, campus);
 }
Beispiel #2
0
 public void GivenIAmOnTheGivingPage(string campus)
 {
     _driver = new ChromeDriver();
     _driver.Manage().Window.Maximize();
     _campusGivingPage = CampusGivingPage.NavigateTo(_driver, campus);
 }