Note: Setting up ADB on the computer is just half the equation since you’ll also need to do some things on the smartphone or tablet to accept the ADB commands. Phone Setup Launch the Settings application on your phone. Tap the About Phone option generally near the bottom of the list (this is hidden behindContinue reading “How to Setup the Android Debug Bridge (ADB) on Windows”
Category Archives: Technical
1. To identify your device and launch an application on Android Device through Appium
Preface: Dear Reader, please note that I will be explaining the details in layman terms so as to reach more audience who are very new to Android / iOS Automation. Prerequisites : In order to run the Code on your device – the phone must be in Developer mode. The Phone is converted into Developer mode byContinue reading “1. To identify your device and launch an application on Android Device through Appium”
Difference Between AndroidDrive, iOSDriver and AppiumDriver
The Differences are as Follows: RemoteWebDriver: This driver class comes directly from the upstream Selenium project. This is a pretty generic driver where initialising the driver means making network requests to a Selenium hub to start a driver session. Since Appium operates on the client-server model, Appium uses this to initialise a driver session. However,Continue reading “Difference Between AndroidDrive, iOSDriver and AppiumDriver”
Android Automation Setup on Windows/ MAC: Requirements
To Automate Android and iOS we will be using Appium. To set up the Appium server on your site you will need the following to be installed on Your Machine : JDK You can get the latest JDK from the JDK – Java SE Development Kit 8u112 After Installing the package on to MAC Set JAVA_HOMEContinue reading “Android Automation Setup on Windows/ MAC: Requirements”
Android Automation Framework Development
I have been lately exploring “Appium framework” and trying to explore its uses and working. Usually I have a habit of making notes of what ever I learn, this time I wanted to try something new by helping other by sharing my experience on the same. What will be covered in this column : Basics ofContinue reading “Android Automation Framework Development”
Setting JAVA_HOME PATH on MAC
Open Terminal Confirm you have JDK by typing “which java”. It should show something like /usr/bin/java. Check you have the needed version of Java, by typing “java -version”. JAVA_HOME is essentially the full path of the directory that contains a sub-directory named bin which in turn contains the java For Mac OSX – it isContinue reading “Setting JAVA_HOME PATH on MAC”
Setting ANDROID_HOME PATH on MAC
Where the Android-SDK is installed depends on how you installed it. If you downloaded the SDK through their website and then dragged/dropped the Application to your Applications folder, it’s most likely here: /Applications/ADT/sdk (as it is in your case). If you installed the SDK using Homebrew (brew install android-sdk), then it’s located here: /usr/local/Cellar/android-sdk/{YOUR_SDK_VERSION_NUMBER} IfContinue reading “Setting ANDROID_HOME PATH on MAC”