Automated UI Testing using the Automation instrument included with Instruments for iOS development.

learn more… | top users | synonyms

0
votes
0answers
61 views

UI automation of Settings, Iphone

I am trying UI Automation in iphone for connecting to any given wifi network. I want to automate settings app. It should automatically open up settings->switch on wifi->connect to given ap by ...
0
votes
0answers
21 views

access APNS notifications in UIAutomation testing iOS

I am working on UIAutomation testing for my iPad app. There are APNS notifications received when one user shares files with other user. I need to look at what notifications are there and then tap on ...
0
votes
1answer
34 views

UIAutomation iOS - delete a table cell

I am working on deleting a table cell. I thought it will be done this way. var myCell = cells["abc"]; var deleteSwitch = myCell.switches()[0]; deleteSwitch.tap(); but, when I tried to ...
2
votes
1answer
52 views

Change international settings during iOS automation

I'd like to have my iOS automation be able to set the devices language before running a specific test. Has anyone solved this problem? I really wish the iOS automation framework allowed me to hit ...
0
votes
1answer
64 views

Handling custom javascript exceptions in iOS's UIAutomation UIATarget.onAlert

I've set up some UIAutomation scripts that will eventually become jenkins tests. The UIAutomation scripts do not output in jenkins-friendly format, so I'm using tuneup_js, specifically this failure ...
0
votes
0answers
42 views

Issue with IOS Instruments running from command line on build machine

I've successfully run IOS UI Automation Instruments from command line on my local Mac. When it starts to test, the simulator will automatically pop up and then do the stuff. However, when I SSH to a ...
0
votes
0answers
37 views

UIAutomation different behavior on iPad and on iPhone

I'm trying to write automated UI test with UIAutomation and found diffence in behavior on iPad and on iPhone. I've got table cell with text field inside and try to reach that field (to insert text ...
0
votes
0answers
64 views

iOS code coverage for UIAutomation functional tests

I want to generate the code coverage files for our iOS App. The problem is that when I build the code with the test coverage settings it builds and then the Simulator launches the App. Now I want to ...
0
votes
0answers
75 views

Setting Version of iOS simulator from Command line

Context: Running automated scripts using Xcode's UIAutomation with simulators 6.1 and 5.1 Xcode version is 4.6.1 Problem: When running a shell script from the Terminal, UIAutomation ALWAYS opens up ...
0
votes
1answer
25 views

UIACollection view total cell count issue

I am working on UIAutomation for an app and facing some issue while collecting the cells for a collection view on the app. When I do collectionView.cells() in javascript for UIAutomation, I get back ...
0
votes
0answers
21 views

Delete cells in tableview - Automation testing UI using instruments

I have a table view. I want to delete cells in that tableview. Can someone explain how to do that ? this is my code but its not working var target = app.frontMostApp().mainWindow(); //enter edit ...
0
votes
1answer
40 views

Match two strings in automation testing UI - iOS

I am writing automation test scripts using Automation tool in instruments for my iPad app. In the login screen, when user taps on login button without entering any information, I display an error ...
0
votes
0answers
60 views

Automation testing UI using Instruments - iOS

I have an iPad app and I am writing automation tests for it. I tap on mainButton and it opens up a view controller. This view controller has UICollectionView in it with two cells. Each of the cell has ...
0
votes
1answer
73 views

My Monkey Talk scripts are running fine but the record/play button gets disabled

Every things is recording and running fine but after running once or twice the record/play buttons gets disabled and I don't know why Restarting the device and exiting the Monkey Talk works 95% of ...
0
votes
0answers
84 views

UICollectionView and collection view cells not appearing on element tree

I am working on UIAutomation for an ios app and logging an element tree for all the elements inside an UITableView. It does provide me with the name and value pairs for all table groups and table ...
0
votes
3answers
55 views

change iphone language so app launches in respective locale?

is there a way to change the iphone International language in an automated way so that when we launch the app it shows up localized for the target locale (ll-CC)? Thanks a bunch for your help!
0
votes
1answer
49 views

firstWithPredicate not accepting date

I working on UIAutomation for an app, and have a cells on a table view which has data and time as two separate elements. Below is the code I am using to get a cell matching the date or time passed ...
0
votes
1answer
59 views

save logs in UIAutomation Tests in text file

I want to save logs created in text file. When we run any script for Automation, .plist is created in specified folder of Logging tab in instruments. How can I make this conversion or is there any ...
0
votes
0answers
36 views

String to set on a UIAElement value attribute instead of name attribute

I am working on UIAutomation for an iOS app, where I get an element (in my case element is UIView and say its named as "View1") on the app using its accessibility identifier (say accessibility ...
6
votes
2answers
127 views

UIAutomation: Any way to dismiss “Would Like To Use Your Current Location” alert?

my app is using location services, and for automated testing I want to be able to dismiss the "APP Would Like To Use Your Current Location" popup. However when I try to do this in Instruments with a ...
2
votes
1answer
82 views

How to Automate Selecting Date from UIDatePicker using KIF Framework

I'm automating my app using KIF Framework. For one of the Scenarios I need to automate Date selection from UIDatePicker. Has anyone done this before ? and throw some idea as to how to proceed or ...
1
vote
1answer
73 views

How to group subviews for automation?

I am currently automating my iOS app. What I am currently facing is the problem to group my subviews in order to separate them from the others. Ok, to be clear, here is what I have: Custom view ...
1
vote
1answer
240 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. ...
0
votes
1answer
88 views

import tuneup.js file not found

Using the Xcode iOS Instruments UI Automation tuneup.js javascript library https://github.com/alexvollmer/tuneup_js . I'm having challenges understanding the current working diretory of my launched ...
0
votes
1answer
46 views

Search a text/element in UIAElementArray

I am dealing with UIAElementArray for the ios automation and looking for an easier way to search inside the UIAElementArray. Below is the code: var textArray = this.myCollectionViews.staticTexts(); ...
0
votes
1answer
161 views

tuneup.js reports “Can't find variable” for test() method

enter code hereBecause I can't get pass/fail logging to work correctly with the 4.6 version of Instruments, I'm trying to use the tuneup.js library, but I keep getting the following error whenever I ...
0
votes
1answer
37 views

How to make a web request with Apple's UIAutomation JS framework

Is it possible to make a simple web request using the JS UIAutomation framework provided by Apple? I tried couple of variations including browser's XMLHttpRequest var request = new XMLHttpRequest() ...
1
vote
1answer
73 views

Subviews not shown in hierarchy even if parent view is accessibly disabled

I have a Nib file with the following hierarchy: parent view -image -label -label Long press gesture recognizer I have disabled parent view's Accessibility and enabled the accessibility on its ...
0
votes
0answers
62 views

Accessibility identifier to a table view section

I am adding accessibility identifiers to all the elements inside my project so that I can use them when I write testing automation script. However I noticed that the under table view, I have table ...
1
vote
1answer
95 views

How to use node modules with in UIAutomation

According to apple's documentation I can import one JS file into another with an import statement. And yes I am able to use JS functions and recursively call other JS functions. But can I include ...
0
votes
1answer
152 views

Using the javascript generated by MonkeyTalk with EAGLView

I have the following monkeytalk file as a proof of concept, which taps the correct screen regions: EAGLView * Drag 40 60 40 60 EAGLView * Drag 269 274 36 68 this runs fine and when I try to export ...
1
vote
1answer
119 views

How do you set the accessibility label on an image that is drawn with Core Graphics?

I am trying to write UIAutomation tests around some core graphics logic. Currently we are using core graphics to draw an image. I'm trying to set the accessibility label/identifier/value on the ...
0
votes
1answer
268 views

Error running UI Automation from command line

I think this is a first - I'm getting an error and the exception constant that I'm getting back returns nothing when I search for it on Google. Basically I'm trying to run UI Automation on my iOS app ...
0
votes
1answer
70 views

Is there any way to test the code coverage of UIAutomation tests?

I am using UIAutomation to test an app, and I would like to find out my code coverage. But since javascript has no preprocessor, that means that gcov and similar are not an option. Has anyone come up ...
0
votes
2answers
228 views

Cannot perform action on invalid element: UIAElementNil

Script threw an uncaught JavaScript error: Cannot perform action on invalid element: UIAElementNil from target.frontMostApp().mainWindow().popover().actionSheet().buttons()["Save Note"] Code: var ...
0
votes
2answers
347 views

Instruments Automation Tool: Script Ended Without Explicitly Closing This Test

I was playing around with the Automation tool in Instruments today but have had problems writing a working test. The following example will exit with Issue: Script ended without explicting closing ...
0
votes
1answer
217 views

iOS Instruments Automation “setValue” not working

I just want to test my iOS UI with UI Automation but I got stuck when it comes to enter text into UITextFields. The documentation says that the method "setValue(...)" should do the trick but it ...
4
votes
1answer
493 views

iOS UI Automation element finds no sub-elements

I'm just starting out with UI Automation for my iOS app and am already having trouble. I'm unable to attach screen shots so I'll do my best to describe my scenario. I'm building for iOS 6.0 and am ...
0
votes
0answers
36 views

UI Automation display informations from other Instruments

If you are using the UI Automation from Instruments and in parallel running for example Profile Instrument, is it possible for the UI Automation to use the information for the Profile ? for example my ...
0
votes
2answers
143 views

Activate the Breakpoints in UI Automation Instrument for iOS

Is there a way of activating the Breakpoints in Xcode Instruments Automation after writing several scripts because it would seem that there are there but just inactive. I was wondering if I could ...
1
vote
1answer
69 views

Tap on absolute coordinates

I'm trying to perform a tap on custom NavigationBar that is instantiated with a view. As I seem to be not able to select it first and then tap, I wanted to perform a tap using custom coordinates ...
0
votes
1answer
46 views

Testing Bool property in app using UIAutomation

I have a property in app of type boolean as in: @property (nonatomic, readwrite) BOOL isPresent; If 'isPresent' is true, then my app displays a notification label on the top of the screen and if it ...
1
vote
1answer
102 views

Getting element using withName of Number in UIAElementArray

I am trying to get to a element (using javascript) which is inside UIAElementArray that has a number name like 1. So when I try to get the element say with array()["1"] I am still getting the ...
0
votes
0answers
38 views

Can I tap iPhone simulator back button with the help of script in UIAutomation Instruments? If yes, then how to do the same?

I want to close the application, kill it (its instance) from background and re-launch it again. So is there any way to do this, directly or indirectly??
0
votes
0answers
59 views

Accessing tableviews using accessibility identifiers UIAutomation

I have two table views on the app say TableViewA and TableViewB. Both my tableviews has groups and cells. My TableviewB (along with its groups and cells) is a subview of cells of TableViewA. So in ...
1
vote
2answers
132 views

iOS UIAutomation : Command line Instruments sets environment variables using -e. Is there a way to access those variables in javascript's UIATarget?

iOS UIAutomation - Command line Instruments sets environment variables using -e. Is there a way to access those variables in javascript's UIATarget?
0
votes
1answer
39 views

How to get the next cell in a TableView of UIAutomation

In UIAutomation is there something similar to sibling in DOM - https://developer.mozilla.org/en-US/docs/DOM/Node.nextSibling or next in jQuery - http://docs.jquery.com/Traversing/next After I get a ...
0
votes
1answer
99 views

Identifying a cell in UIAutomation with name

I am trying how to identify a cell in a table view, using name using UIAutomation framework. This is a screenshot from editor view of instruments. I tried the following approaches but didn't ...
0
votes
0answers
134 views

“An error occurred while trying to run the script.” in the UI Automation instrument?

When I try to run a UI Automation script on iOS 6 with iphone simulator 6.0 I am getting the following error: "An error occurred while trying to run the script." Please Help! While working fine with ...
1
vote
2answers
210 views

mobile app testing in watir

I have been trying to locate WATIR/Webdriver gem for automating mobile applications. So far I am successful in finding the resources for Mobile Website testing but could not find Mobile Application ...

1 2 3 4 5 6