I have downloaded requirements (appium, npm, sdk, gi) for appium installation but how to install them to make it run on andriod device.
it would great help if you provid the step by step procedure to install.
thankyou.
RAM
Download Necessary Files
- Eclipse Standard: http://www.eclipse.org/downloads/packages/eclipse-standard-43/keplerr (ie eclipse-standard-kepler-R-win32-x86_64.zip)
- Appium for Windows: http://appium.io/ (ie
AppiumForWindows-0.10.1.zip)
- Selenium WebDriver 2.0 (Java Client):
http://selenium.googlecode.com/files/selenium-java-2.35.0.zip
- JDK:
http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
(ie jdk-7u40-windows-x64.exe)
- Android SDK Tools (ADT Bundle for Windows:
http://developer.android.com/sdk/index.html (ie
installer_r22.2.1-windows.exe)
Installation
- Unzip the Downloaded Files
- Create a new folder, C:\AppAutomation and Extract the downloaded
files to, C:\AppAutomation
- Install the Java Development Kit
- NAVIGATE to where the JDK executable has been downloaded
- Install the JDK by DOUBLE-CLICKING the executable and following
through installation wizard
- Install the Android Development Tools Bundle for Windows
- NAVIGATE to where the ADT executable has been downloaded and Install
the ADT by DOUBLE-CLICKING the executable and following through
installation wizard
- When Eclipse restarts, it may complain about missing tools. CLICK OK
- AVD Manager will load, CHECK Tools in the Name column and follow
through with install
Configure Eclipse and Sample Project
- Navigate to the folder where you extracted Eclipse to DOUBLE-CLICK
“C:\AppAutomation\eclipse\eclipse.exe” CLICK “OK” to work space
popup
Install TestNG
- CLICK “Install New Software…” under “HELP” in the Main Menu
- INPUT “http://beust.com/eclipse” in the Work with input box
- CLICK Add… CHECK TestNG in the Name column CLICK Next, Agree to all
the terms, CLICK Finish when wizard completes installation.
Install Android ADT
- CLICK “Install New Software…” under “HELP” in the Main Menu
- INPUT “https://dl-ssl.google.com/android/eclipse/” in the Work with
input box CLICK Add… CHECK Developer Tools in the Name column
- CLICK Next, Agree to all the terms, CLICK Finish when wizard
completes installation. Create Sample Project
- CLICK File > New > Java Project from the main menu
- INPUT “Sample Project” for a project name CLICK Finish
Add Selenium JAR References
- In the Package Explorer, RIGHT-CLICK on the newly created project,
“Sample Project”
- CLICK Configure Build Path… under Build Path in the context menu
CLICK Add External JARS…
- In the JAR Selection dialog, NAVIGATE to the directory where
Selenium has been extracted to (ie C:\AppAutomation\selenium-2.35.0)
SELECT all JARs in the selenium home folder
- CLICK Open
- CLICK Add External JARS… to add remaining JARs
- In the JAR Selection dialog, NAVIGATE to the Selenium\libs directory
(ie C:\AppAutomation\selenium-2.35.0\libs)
- SELECT all JARs in the selenium libs folder
- CLICK Open CLICK OK
I think that’s it…
Next Step… Create a sample script…