1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Appium インストールのメモ

1
Posted at

Appiumをmacにインストールする上でやったことのメモ

スマホアプリをコードで操作するためにAppiumを導入したのでその過程を記す。

  1. Desktop版をインストールする場合
    GUIで動かしながらUIパーツのxpathを見たり、操作をレコードすることができて便利。
    以下githubからダウンロードできる
    appium/appium-desktop

  2. terminalからのインストールをする場合
    手順解説は散見される。インストールのためにやったことだけ書く。

 brew install nodebrew
 setup_dirs
 nodebrew setup_dirs
 
 nodebrew install-binary latest
 nodebrew use v14.13.1

 echo 'export PATH=$PATH:/Users/[Your Home]/.nodebrew/current/bin' >> ~/.zshrc
source ~/.zshrc

****Restart terminal****

npm install -g appium appium-doctor
appium-doctor --ios  (必要なものが揃っているかの確認)
brew install carthage (揃っていなかったので入れた)
appium-doctor --ios (必要なものが揃っているかの再確認)
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?