Beispiel #1
0
        private static List <AndroidElement> GetElementsByText(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(new List <AndroidElement>(driver.FindElements(By.XPath("//*[contains(text(),\"" + text + "\")]"))));
            }
            catch
            {
                throw new ArgumentException($"Element with provided text was not found.");
            }
        }
Beispiel #2
0
        private static List <AndroidElement> GetElementsByXpath(string xpath)
        {
            var driver = OpenCommand.GetDriver();
            var wait   = new WebDriverWait(driver, TimeSpan.FromSeconds(7));

            try
            {
                wait.Until(ExpectedConditions.ElementIsVisible(By.XPath(xpath)));
                return(new List <AndroidElement>(driver.FindElements(By.XPath(xpath))));
            }
            catch
            {
                throw new ArgumentException($"Element with provided xpath was not found.");
            }
        }
Beispiel #3
0
        private static List <AndroidElement> GetElementsByAccessibilityId(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(new List <AndroidElement>(driver.FindElementsByAccessibilityId(accessibilityId)));
            }
            catch
            {
                throw new ArgumentException($"Element with provided accessibility id was not found.");
            }
        }
Beispiel #4
0
        private static AndroidElement GetElementByPartialId(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(driver.FindElement(By.XPath("//*[contains(@content-desc,\"" + partialId + "\")]")));
            }
            catch
            {
                throw new ArgumentException($"Element with provided partial id was not found.");
            }
        }
Beispiel #5
0
        private static AndroidElement GetElementById(string id)
        {
            var driver = OpenCommand.GetDriver();
            var wait   = new WebDriverWait(driver, TimeSpan.FromSeconds(7));

            try
            {
                wait.Until(ExpectedConditions.ElementIsVisible(By.Id(id)));
                return(driver.FindElementById(id));
            }
            catch
            {
                throw new ArgumentException($"Element with provided id was not found.");
            }
        }
Beispiel #6
0
        public void Execute(Arguments arguments)
        {
            arguments.Search.Value = "com.flipkart.android:id/search_widget_textbox";
            arguments.By.Value     = "id";
            ElementHelper.GetElement(arguments.By.Value.ToLower(), arguments.Search.Value).Click();
            Thread.Sleep(500);
            arguments.Search.Value = "Search grocery products in Supermart";
            arguments.By.Value     = "accessibilityid";
            ElementHelper.GetElement(arguments.By.Value, arguments.Search.Value).SendKeys(arguments.keyword.Value);
            Thread.Sleep(100);
            arguments.Search.Value = "980, 1694";
            arguments.By.Value     = "xy";
            TouchAction clickAction = new TouchAction(OpenCommand.GetDriver());
            var         coordinates = arguments.Search.Value.Split(',');

            clickAction.Tap(int.Parse(coordinates[0]), int.Parse(coordinates[1])).Perform();
            Thread.Sleep(2000);
        }
Beispiel #7
0
        public void Execute(Arguments arguments)
        {
            var driver = OpenCommand.GetDriver();

            driver.Quit();
        }