Reputation: 1260
I worked out an "Hello iOS" app by Xcode and can test it by Appium on iOS Simulator. However, I got the following error message when I tried to test the same app on a real iPhone/iPad device.
Here are my environment.
I tried this command "brew install --HEAD ideviceinstaller" but got another error message.
Any solution for it? Thanks!
Upvotes: 1
Views: 3529
Reputation: 21
This worked for me using this version 1.4.13
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
Upvotes: 0
Reputation: 1260
The problem is solved by running these commands:
cd /usr/local/Library
brew update
brew install ideviceinstaller
Upvotes: 3
Reputation: 595
Have you enabled Enable UI Automation
in device Developer settings panel?
Upvotes: 0