protected void DoubleTap(IWebElement element)
        {
            WaitForElement(element);
            TouchActions action = new TouchActions(DriverFactory.INSTANCE);

            action.DoubleTap(element);
            action.Perform();
        }
Esempio n. 2
0
        protected void doubleTap(IWebElement element)
        {
            WaitForElement(element);
            //IWebElement iElement = driver.FindElement(element);
            TouchActions action = new TouchActions(DriverFactory.GetDriver());

            action.DoubleTap(element);
            action.Perform();
        }