Beispiel #1
0
        public void GivenTheJobCriteriaHasBeenSearchedFor()
        {
            MultiplePages.Keyword("Surgeon");
//            MultiplePages.Country("United Kingdom");
//            MultiplePages.Region("Greater Manchester");
//            MultiplePages.Location("Manchester");
//            MultiplePages.Industry("Medical");
//            MultiplePages.Discipline("Surgeon");
            MultiplePages.GoButton();
            JobBoardPage.BaseURL();
        }
Beispiel #2
0
 public void WhenIClickGo()
 {
     MultiplePages.GoButton();
 }
Beispiel #3
0
 public void WhenISelectAIntoTheDisciplineField(string discipline)
 {
     MultiplePages.Discipline(discipline);
 }
Beispiel #4
0
 public void WhenISelectAIntoTheIndustryField(string industry)
 {
     MultiplePages.Industry(industry);
 }
Beispiel #5
0
 public void WhenISelectAIntoTheLocationField(string location)
 {
     MultiplePages.Location(location);
 }
Beispiel #6
0
 public void WhenISelectAIntoTheRegionField(string region)
 {
     MultiplePages.Region(region);
 }
Beispiel #7
0
 public void WhenISelectAIntoTheCountryField(string country)
 {
     MultiplePages.Country(country);
 }
Beispiel #8
0
 public void WhenIEnterIntoTheKeywordsField(string keyword)
 {
     MultiplePages.Keyword(keyword);
 }