You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm testing the signup form of my app. The form is long enough to require scroll, therebefore Signup button is not visible.
I tried to:
(awaitdriver.elementById('signup')).click();
But crashes because its not on screen.
Then i tried things like:
awaitdriver.moveTo(awaitdriver.elementById('signup'));// seen in https://github.com/admc/wd/blob/master/doc/api.md(awaitdriver.elementById('signup')).moveTo();// seen in https://github.com/admc/wd/blob/master/doc/api.mdawaitdriver.scroll(10,100);// seen in http://appium.io/docs/en/commands/interactions/touch/scroll/
But non of them are working. Is there any method to scroll in android native app?
The text was updated successfully, but these errors were encountered:
I'm testing the signup form of my app. The form is long enough to require scroll, therebefore Signup button is not visible.
I tried to:
But crashes because its not on screen.
Then i tried things like:
But non of them are working. Is there any method to scroll in android native app?
The text was updated successfully, but these errors were encountered: