public static void SelectElementByText(By locator, string visibleText) { _select = new SelectElement(GenericHelper.GetElement(locator)); _select.SelectByText(visibleText); }
public static void CheckACheckBox(By locator) { _element = GenericHelper.GetElement(locator); _element.Click(); }
public static void SelectElementByIndex(By locator, int indextValue) { _select = new SelectElement(GenericHelper.GetElement(locator)); _select.SelectByIndex(indextValue); }
public static void ClickLink(By locator) { _element = GenericHelper.GetElement(locator); _element.Click(); }
public static void ClickRadioButton(By locator) { _element = GenericHelper.GetElement(locator); _element.Click(); }
public static void ClearText(By locator) { _element = GenericHelper.GetElement(locator); _element.Clear(); }
public static void SendText(By locator, string text) { _element = GenericHelper.GetElement(locator); _element.SendKeys(text); }
public static bool IsButtonEnable(By locator) { _element = GenericHelper.GetElement(locator); return(_element.Enabled); }