Oct 17, 2017

Install Appium with terminal on MAC by using node.js

Appium is a server written in Node.js. It can be built and installed directly from NPM. To install it, First you need to have brew installed in your machine then install the node by using brew and finally install the appium server from npm.

Follow the below commands to install appium on your mac.


1. Run below command in the terminal if you don't have brew installed on your mac.
    • ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2. Run below commands step by step in the terminal to install appium on back end in your system
    • brew install node
    • npm install -g appium
    • npm install wd

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


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

No comments:

Post a Comment

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...