Thursday, January 28, 2016

Quick Appium Server Installation on Mac Machine

Hi Friends, If you guys searching smart way to install Appium Server on Mac then you are at right place. Please follow below steps and Enjoy

Note: Please do not use sudo or root login

Steps to Follow:

1. Check your homebrew version

     $ brew -v

2. If it's not 0.9.5, reinstall it by running these commands:

    $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"

    $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

3. Install node

    $ brew install node

4. Install Appium server

    $ npm install -g appium

5. Install Appium client
    
    $ npm install wd

6. Start Appium Server
   
    $ appium -p=4723 OR $ appium &


Hope this will solve your problem.
Let me know if you like this or have any query.. Happy Testing



No comments:

Post a Comment