Saturday, June 13, 2015

Appium : Setting up the environment for Android automation


To setup Appium for mobile automation, you will need below items to be configured in your test environment.

1. Appium server :

 1.1 Download Appium server from official site
 1.2 After installation , Appium server UI














2. Android SDK & ANDROID_HOME Configuration:

   2.1 Download Android sdk from official site
   2.2 Now configure the ANDROID_HOME
















2.3 Select "path" and click edit button,
2.4 Add below two parameters
        %ANDROID_HOME%\tools;
       %ANDROID_HOME%\platform-tools
2.5 To check if ANDROID_HOME configured properly or not, open command prompt and type
    adb











3. Java JDK & JAVA_HOME Configuration:

    3.1 Download Java jdk from official site
    3.2 Install the jdk on your test machine where you want to setup the environment
    3.3 Now configure the JAVA_HOME























You can see the JAVA_HOME configuration in below video:



Thank you!!

No comments:

Post a Comment

Robot Framework : Sample code to verify if Robot Framework is installed properly ? - part2

Sample code to verify if Robot Framework is installed properly ? 1. Create a file name test.robot and save it. *** Test Cases *** Sample ...