Ejemplo n.º 1
0
        public virtual void ScrollTo(string automationId)
        {
            var action = new TouchActions(Driver);

            action.Scroll(0, 100)
            .Perform();
        }
Ejemplo n.º 2
0
        public void scrollDown()
        {
            TouchActions actions = new TouchActions(driver);

            actions.Scroll(50, 0);
        }