ADB Tutorial

In this ADB Tutorial we will explore some of the more common ADB commands out there. Those are useful both for manual testing and in test automation scripts. Those ADB commands will be the same whether you are on Windows, Mac, or Linux. Learn how to use ADB commands in Java Appium Automation framework: Here is the list of the ADB commands that we covered in this video: Tell ADB which device to execute command on: adb -s *device id* Install application: adb install *path to file* Uninstall application: adb uninstall *package id* Get info about activity in focus: adb shell dumpsys window windows | findstr Focus Take Log from buffer: adb logcat -d Clear Log buffer: adb logcat -c Take Log continuously: adb logcat Take Screenshot: adb shell screencap /sdcard/Android/ Pull/Copy Files from Android device: adb pull /sdcard/Android/ Push/Copy Files to Android device: adb push /sdcard/Android Open device’s shell: adb shell Clear applicatio
Back to Top