2
votes
1answer
217 views

UIAutomation test invocation from the command line with Xcode 6

Running UIAutomation tests from the command line seems to break often with new Xcode releases (judging by past posts). Having never used the command line scripting for this, I found this post from ...
0
votes
0answers
21 views

UIAutomation hangs on iOS6 from the command line

I have an Javascript automation test on iOS and on my machine with an iOS 7 device it works perfectly fine, but when I try to use it from my integration continuous machine with an ios 6 device (same ...
3
votes
5answers
3k views

Start Instruments from the command line

I followed this site to get started with UI Automation. http://blog.manbolo.com/2012/04/08/ios-automated-tests-with-uiautomation#1.2 I am trying to start Instruments from the command line. ...
5
votes
1answer
2k views

UIAutomation through command line on a real device

I know starting from Xcode 4.2 it is possible to run UIAutomation scripts through command line. I've tried this and is working perfectly fine for me in simulator. I'd like to know how to get this run ...
0
votes
1answer
213 views

Instruments doesn't continue after running from command line

When I run Instruments from the command line using this script instruments -w <DEVICE_ID> -t ...
5
votes
1answer
427 views

UIAutomation - different results from Instruments and Command Line

When I run a UIAutomation script in Instruments, everything works fine but when I run the exact same script from the command line, I get this error : Cannot perform action on invalid element: ...
3
votes
0answers
825 views

Running UIAutomation instruments from command line results in NSInvalidArgumentException

Here is what is happening: I create a brand new "Single View" application in Xcode 4.5.1, build it on the command line using this: xcodebuild -sdk iphonesimulator6.0 clean build ...
0
votes
1answer
750 views

Running Apple Instruments from command line throws: The simulated application quit

This popup prevent other scripts from running and prints the following: instruments[2596] : kCGErrorInvalidConnection: CGSGetCurrentCursorLocation: Invalid connection instruments[2596] : ...
1
vote
2answers
552 views

iOS UIAutomation from the command line

I have a problem with understanding of how it works. I want to run my test on the device, so I have the commands instruments -w [...] -t ...
2
votes
2answers
4k views

How to run UIAutomation script from command line to Simulator

I have automated my iOS application using UIAutomation, To run this I launch iOS Instruments and run the script. If Same automation script I want to run to the device I use the below command which ...