Boundary Value Analysis
Boundary Value Analysis Boundary value analysis is one of the widely used test case design technique for black box testing. It is used to test boundary values because the input Read more »
adb shell ls
adb shell ls list directory contents ls [options] <directory> STEP 1. adb shell STEP 2. lsls -a do not hide entries starting withls -i print index number of each filels Read more »
adb push
adb push Upload a specified file from your computer to an emulator/device. adb push <local> <remote> adb push test.apk /sdcard Copies <android-sdk-path>/platform-tools/test.apk to /sdcard directory. adb push d:\test.apk /sdcard Copies d:\test.apk Read more »
adb pull
adb pull Download a specified file from an emulator/device to your computer. adb pull <remote> [local] adb pull /sdcard/demo.mp4 download /sdcard/demo.mp4 to <android-sdk-path>/platform-tools directory. adb pull /sdcard/demo.mp4 e:\ download /sdcard/demo.mp4 Read more »
adb shell pm clear
adb shell pm clear Deletes all data associated with a package. adb shell pm clear <PACKAGE> adb shell pm clear com.test.abc Notes: clearing app data, cache Read more about ADB.. Read more »
adb shell pm path
adb shell pm path Print the path to the APK of the given <PACKAGE>. adb shell pm path <PACKAGE> adb shell pm path com.android.phone Read more about ADB.. Read more »
adb shell pm list packages
adb shell pm list packages Prints all packages, optionally only those whose package name contains the text in <FILTER>. adb shell pm list packages [options] <FILTER> adb shell pm list Read more »
adb usb
adb usb restarting ADB in USB mode. adb usb Read more about ADB.. Read more »
adb connect
adb connect use ADB over Wi-Fi adb connect <host>[:<port>] STEP 1. Connect to the device over USB. STEP 2. adb devices List of devices attached ######## device Notes: STEP 1,2 is Read more »
adb uninstall
adb uninstall Removes a android package from the emulator/device. adb uninstall [options] <PACKAGE> adb uninstall com.test.appadb uninstall -k com.test.app Keep the data and cache directories around after package removal. Read Read more »
