예제 #1
0
        public PageWithResults SearchByNameAndCountry(string name, string country)
        {
            ConciseApi.InputText(name, SearchField);
            ConciseApi.SelectElementFromList(CountryList, country);
            ConciseApi.ClickOnElement(SearchButton);

            return(new PageWithResults(ConciseApi));
        }