For my e2e tests on iOS
, I'm running some appium
commands like the following examples:
browser.execute("mobile: scroll", {
element: elementId,
toVisible: true
});
or simply
browser.execute("mobile: scroll", {
direction: "up"
});
but I noticed that the scroll incredibly slow. Is there a way to increase the speed and gain time running my tests? I have already check out the documentation here but haven't found anything interesting.
Any clue ?