0
我想在我的Mac Os
上設置Appium
。我的目標是運行Appium服務器節點,以在多個設備Android(VM)上使用多個測試。 我在Appium網站上使用.dmg文件安裝它,但現在,我需要創建節點以在多個設備(Android)上運行多個測試。要做到這一點,我需要在終端使用「appium」命令,所以我試試這個:npm install -g appium不工作
> brew install node
> npm install -g appium
> npm install wd
> appium &
> node your-appium-test.js
一切都很好,直到「npm install -g appium
」。該命令運行,但在安裝結束時出現錯誤:
生成了9個錯誤。
make: *** [Release/obj.target/validation/src/validation.o] Error 1
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:276:23)
gyp ERR! stack at emitTwo (events.js:100:13)
gyp ERR! stack at ChildProcess.emit (events.js:185:7)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)
gyp ERR! System Darwin 14.3.0
gyp ERR! command "/usr/local/Cellar/node/5.6.0/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/Max/.npm-packages/lib/node_modules/appium/node_modules/ws/node_modules/utf-8-validate
gyp ERR! node -v v5.6.0
gyp ERR! node-gyp -v v3.2.1
gyp ERR! not ok
npm WARN install:[email protected] [email protected] install: `node-gyp rebuild`
npm WARN install:[email protected] Exit status 1
/Users/Max/.npm-packages/lib
└── [email protected]
此後,我不能運行我的 「appium &」 命令,得到這個錯誤
appium &
[1] 9592
Mac$ -bash: appium: command not found
我的問題的任何想法?或者知道用Appium和Selenium Grid運行多個設備測試的方法?
感謝您的幫助
安裝XCode7因爲有口難言的Xcode 6.4,我嘗試安裝7 THX – user3568978
升級到Xcode7,還是一樣的錯誤信息 – user3568978