Showing posts with label command prompt. Show all posts
Showing posts with label command prompt. Show all posts

Oct 24, 2017

How to know the list of available emulators and connected devices

To find the list of available emulators in your system, follow the below steps.


1. Open the command prompt  / terminal
2. Navigate to android sdk path upto the tools folder (E:\Android_Studio\tools) and run the below command

  • emulator -list-avds





















To find out list of connect devices in your system, follow the below steps.


1. Open the command prompt / terminal
2. Navigate to android sdk path upto the platform-tools folder (E:\Android_Studio\platform-tools) and run the below command

  • adb devices



Oct 17, 2017

Appium installation with command line on Windows by using node.js

Appium is a server written in Node.js. It can be built and installed directly from NPM. You can able to start and stop the server without GUI help and able to see the logs in the same command prompt for every action what you perform.

To install it, First install the node.js then install the appium server from npm.

Follow the below steps to install appium on your Winodws.


1. Download latest node.js MSI from node.js website and install it. This will also installs node’s npm tool (node package manager) which we will use to install Appium Server. Once install, it will automatically set the path in environment variables.















2. After node.js installation, run the below commands step by step in command prompt to install the appium on back end in your system
    • npm install -g appium
    • npm install wd

Check appium is installed in your machine by following the below step


    • Open command prompt
    • Type 'appium' and press enter
    • You can see the below one if appium is installed successfully on your machine













Mobile App Automation with Appium on Android Emulator/Device

Overview :- Appium  is an open source test automation tool for mobile applications. It allows you to test all the three types of mobile...