private static AndroidElement GetElementByXpath(string xpath) { var driver = OpenCommand.GetDriver(); var wait = new WebDriverWait(driver, TimeSpan.FromSeconds(7)); try { wait.Until(ExpectedConditions.ElementIsVisible(By.XPath(xpath))); return(driver.FindElement(By.XPath(xpath))); } catch { throw new ArgumentException($"Element with provided xpath was not found."); } }
public void Execute(Arguments arguments) { var by = arguments.By.Value.ToLower(); if (by == "xy") { TouchAction clickAction = new TouchAction(OpenCommand.GetDriver()); var coordinates = arguments.Search.Value.Split(','); clickAction.Tap(int.Parse(coordinates[0]), int.Parse(coordinates[1])).Perform(); } else { ElementHelper.GetElement(by, arguments.Search.Value).Click(); } }
private static AndroidElement GetElementByAccessibilityId(string accessibilityId) { var driver = OpenCommand.GetDriver(); var wait = new WebDriverWait(driver, TimeSpan.FromSeconds(7)); try { wait.Until(ExpectedConditions.ElementIsVisible(By.XPath("//*[contains(@content-desc,\"" + accessibilityId + "\")]"))); return(driver.FindElementByAccessibilityId(accessibilityId)); } catch { throw new ArgumentException($"Element with provided accessibility id was not found."); } }
private static AndroidElement GetElementByText(string text) { var driver = OpenCommand.GetDriver(); var wait = new WebDriverWait(driver, TimeSpan.FromSeconds(7)); try { wait.Until(ExpectedConditions.ElementIsVisible(By.XPath("//*[contains(text(),\"" + text + "\")]"))); return(driver.FindElement(By.XPath("//*[contains(text(),\"" + text + "\")]"))); } catch { throw new ArgumentException($"Element with provided text was not found."); } }
private static List <AndroidElement> GetElementsByPartialId(string partialId) { var driver = OpenCommand.GetDriver(); var wait = new WebDriverWait(driver, TimeSpan.FromSeconds(7)); try { wait.Until(ExpectedConditions.ElementIsVisible(By.XPath("//*[contains(@content-desc,\"" + partialId + "\")]"))); return(new List <AndroidElement>(driver.FindElements(By.XPath("//*[contains(@content-desc,\"" + partialId + "\")]")))); } catch { throw new ArgumentException($"Element with provided partial id was not found."); } }
private static List <AndroidElement> GetElementsById(string id) { var driver = OpenCommand.GetDriver(); var wait = new WebDriverWait(driver, TimeSpan.FromSeconds(7)); try { wait.Until(ExpectedConditions.ElementIsVisible(By.Id(id))); return(new List <AndroidElement>(driver.FindElementsById(id))); } catch { throw new ArgumentException($"Element with provided id was not found."); } }
public void Execute(Arguments arguments) { var driver = OpenCommand.GetDriver(); string keycode = arguments.KeyCode.Value.ToLower(); switch (keycode) { case "back": driver.PressKeyCode(AndroidKeyCode.Back); break; default: throw new ArgumentException($"Provided button name is invalid."); } }
public void Execute(Arguments arguments) { var driver = OpenCommand.GetDriver(); if (arguments.By.Value != "" && arguments.Search.Value != "") { driver.HideKeyboard(); SrollToElement(driver, arguments); } else if (arguments.ScrollAmount.Value != 0) { float top = 0.9f; float bottom = 0.1f; float swipeAmmount = arguments.ScrollAmount.Value / 100f * (top - bottom); SwipeVertical(driver, top, top - swipeAmmount, 0.5, 250, arguments.SwipeDir.Value); } else { throw new ArgumentException($"The id and text are not defined. You should provide one of them."); } }
public void Execute(Arguments arguments) { var driver = OpenCommand.GetDriver(); driver.Quit(); }