Issue
I am looking for a way to scroll up or down with adb
for different types of apps.
How can I scroll apps like Facebook or CNN using an adb
command?
Solution
Scroll up:
adb shell input swipe 300 300 500 1000
Scroll down:
adb shell input swipe 500 1000 300 300
You could adjust coords if you need more precise swipe.
sleep 2
also put a sleep before going for next command
Answered By - j2ko
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.