How to setup Appium in Ubuntu for android

前端 未结 9 2239
無奈伤痛
無奈伤痛 2020-11-29 08:28

I am new in appium(automation testing technology).

I\'m using a PC running Ubuntu Linux.

I have searched about this topic but I have not got any

9条回答
  •  感情败类
    2020-11-29 09:08

    It is very simple and easy, Please check the below steps!.

    1) Install latest Node.js

    Terminal commands:

    curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
    sudo apt-get install -y nodejs  
    

    More information please check official website.

    2) Install latest Appium

    Terminal commands :

    npm install -g appium
    

    or

    sudo npm install -g appium
    

    More information please check official documentation.

提交回复
热议问题