Esempio n. 1
0
 public void when_I_submit_the_form()
 {
     WeatherSearchPage.Search();
 }
Esempio n. 2
0
 public void and_I_type_city(string city)
 {
     City = city.Trim();
     WeatherSearchPage.TypeCity(city);
 }
Esempio n. 3
0
 public void and_I_type_country(string country)
 {
     Country = country.Trim();
     WeatherSearchPage.TypeCountry(country);
 }
Esempio n. 4
0
 public void given_a_webpage_with_a_form()
 {
     WeatherSearchPage.NavigateTo();
 }