internal void Profiletitle() { Commondriver.Excellib.PopulateInCollection(Base.Excelpath, "ProfilePage data"); Dropdown.Click(); Commondriver.Wait(10); Fname.Clear(); Fname.SendKeys(Commondriver.Excellib.ReadData(2, "FirstName")); Lname.Clear(); Lname.SendKeys(Commondriver.Excellib.ReadData(2, "LastName")); Commondriver.Wait(10); TitleSave.Click(); Commondriver.Wait(10); }
public void WhenIPressOnSortingDropdown() { Dropdown.Click(_housingLocators.ProductSortingDropdown); }
public static void SelectByValue(this Dropdown dropdown, string value) { dropdown.Click(); dropdown.ItemListPresent.Wait().EqualTo(true); dropdown.GetMenuItemList <Button>().First(x => x.Text.Get() == value).Click(); }