Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I scroll an application using adb?

Tags:

android

adb

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?

like image 276
Alon Shalev Avatar asked Aug 28 '16 09:08

Alon Shalev


1 Answers

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

like image 51
j2ko Avatar answered Sep 17 '22 21:09

j2ko