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

            action.LongPress(element);
            action.Release();
            action.Perform();
        }