I have installed appium-1.5.1 from MAC terminal. The installation is ok but I need the path where it is installed for some reason. Can anyone please tell me where is the installation directory in?
相关问题
- Appium & Webdriver (webdriverjs) - cannot execute
- How to get app information like app version, devic
- How to use VBA or Powershell to export lists from
- How to trigger a click on a chrome extension butto
- driver.quit() does not close browser windows
相关文章
- appiumUI自动化send_keys()或者set_value()输入字符不识别,提示Did y
- Appium: “An element could not be located on the pa
- Reading data from Excel in Haskell
- Toad: 10.6: Seek clear instructions on automating
- How to Perform Scroll up and Down in Android For L
- Need to mock google OAuth2 service
- Python | PhantomJS not clicking on element
- An unknown server-side error occurred while proces
You can find it here:
/Applications/Appium.app
. Just change directory to root from your home directory (i.e.cd /
), and you'll see theApplications
directory.If you installed the GUI appium app (the app whose icon you can click in your Mac's Launchpad), then as orde suggested earlier, just see
/Applications/Appium.app
But if you say you installed appium via your terminal, I'm going to take a guess that you installed it using npm. If you installed appium by typing something like
npm install -g appium
, then all the below is for you:You can find the appium executable by typing this into your terminal:
the output of typing this command in your terminal should be something like this (the path may be different for you):
If 'which' gave you a filepath like this, then this path is your appium executable file (the file that is run if you type 'appium' into your terminal).
If you want to find appium's actual installed files, then take the path you just got above, and run the following command, replacing my path with yours:
the result of that command will look something like this:
the end of this line, after the arrow, is the location of your appium installation relative to the executable file. In my example, the full installation is therefore located at
/usr/local/lib/node_modules/appium/
Hope it helps!