Tagged Questions
0
votes
1answer
68 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
2answers
30 views
How to know any UI rendering is completed in automation code
I am wanting to know a button is rendered on main window UI or not. This button rendering is depending on server response result (written in Objective C). If server response comes perfectly it becomes ...
0
votes
0answers
21 views
How to know a process is completed in UIAutomation
I m new in UIAutomation. I want to know how will I know if some process is completed in UI. Like I have a login screen and after Login successful I m fetching data from server and then one Alert is ...
2
votes
1answer
56 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
0answers
43 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
1answer
54 views
Automation Tasks for a game in iphone
I was wondering if it's possible to create a script for automatization of tasks, especially
in iphone games.
Games like Tiny Tower, Hay day, Enchant U, etc.
This is some of the game that I found ...
0
votes
1answer
164 views
UIAutomation on device hangs in starting capture
When I try to capture UI inputs on the device using UIAutomation, it hangs saying "Starting Capture".
1) I click on Profile in Xcode which
2) Starts up Instruments where I select Automation and click ...
0
votes
0answers
47 views
Map View Testing using UIAutomation javascript
I want to check whether my mapview is worked properly or not by changing the lat and long. I am using Automation javascript. Is there any code to change the lat and long in automation script. thanks ...
0
votes
1answer
132 views
How to enter text into a textfield in a web view using UIAutomation
My iOS app has a log-in page with username and password textfields. These text fields are in a web view. I am trying to automate the log-in process with UIAutomation. I know that working with content ...
5
votes
1answer
182 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: ...
1
vote
1answer
85 views
UIAutomation timeouts usage
Guys help me to understand the timeouts usage. The documentation gives quite a couple of words about them:
popTimeout- Retrieves the previous timeout value from a stack, restores it as the current ...
0
votes
0answers
62 views
UIAutomation and tableView header
I have a strange problem with UIAutomation
In my code I have a UITableView and in
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
I generate my headerView. ...
0
votes
0answers
138 views
Multitouch swipe gesture
How can I simulate a two-finger left-to-right swipe within a UITextView in UIAutomation?
I've tried this:
var textView = target.frontMostApp().mainWindow().textViews()[0];
...
1
vote
0answers
119 views
iOS 6 UIAutomation - “an error occured while trying to run the script” [duplicate]
Possible Duplicate:
Why am I seeing “An error occurred while trying to run the script.” in the UI Automation instrument?
I'm completely stuck. Every time I try to start UIAutomation tool ...
0
votes
1answer
376 views
How to screenshot a tapped button using iOS UIAutomation?
I tried the tapAndHold() function from UIAElement
var target = UIATarget.localTarget();
target.frontMostApp().mainWindow().buttons()["Button"].tapAndHold()
target.captureScreenWithName("shot")
but ...
0
votes
1answer
158 views
Select a date in UIDatePicker by UIAutomation?
I found that I can't do this by UIAPickerWheel.selectValue(), any idea?
4
votes
2answers
210 views
Instruments .trace file issues
When I am checking out the test-scripts from SVN(files committed by
my friend), I don't know why the scripts are not editable, play
script and stop script options are disabled and Recording is not
...
2
votes
1answer
366 views
UIAutomation : Failed to authorize rights with status: -60007
So I am running UIAutomation on command line with
$ instruments -t ...
0
votes
0answers
222 views
iPhone UI automation with JavaScript and Instrument, cannot find TextField
I was trying to write a UI automation using JavaScript and Instrument. The problem I cannot find the TextField and set value to it. I want to set password "1111" to the tfHiddenPassword or ...
0
votes
1answer
155 views
UI Automation in iPhone App
Hi people I have a serious problem at hand, I have made a sample iphone app with "username" and "password" field and a "login" button and I have set the accessibility labels for all the components to ...
0
votes
1answer
459 views
Xcode Automation tool for UI test
i have this question..
i use Xcode Automation tool to test my UI iPhone App. I have generate a javascript file for my first test.
It' possible save same screenshot of my test?
1
vote
2answers
195 views
Is it possible to extend UIAElementArray with my own methods?
I do the following:
function extend(destination, source) {
for (var property in source) {
destination[property] = source[property];
}
return destination;
};
extend( ...
0
votes
1answer
240 views
Accessing a UISearchBar in a UIToolbar, in a UINavigationBar in UIAutomation
We only support landscape mode and for some reason when we would push to a different view controller, rotate the app, then pop, our UISearchBar would then take up the entire navigationBar and pushing ...
1
vote
1answer
188 views
Recording UIAutomation events in Instruments: get numeric instead of string value
when capturing events in the Automation event editor of Instruments (with the neat record button blow the editor), I often get responses like this:
...
1
vote
1answer
259 views
UIAutomation how to change between apps or to the dashboard?
I have had some strange, hard to reproduce crashes, when testing my app with an ad-hoc version on my iPhone. The crashes happened after changing from my app to the dashboard (or other app) and then ...
1
vote
1answer
381 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 ...
3
votes
1answer
795 views
uiautomation recorded scripts save location
I can't seem to figure out how to save recorded scripts in the "UI Automation" tool in Instruments.
I launch my iphone app with "Profile" select the "UI Automation" tool, add a "New Script" and start ...
17
votes
6answers
939 views
Attempts to tap a UIButton in a UITableViewCell using UI Automation fail with “could not be tapped”
I have an iPhone app that I'm testing using UI Automation.
I have a button in a UITableViewCell but when I try to tap on it using UI Automation I get the following error.
Script threw an uncaught ...
4
votes
2answers
219 views
Is there a nice way to script network related tests using UIAutomation on iOS [closed]
I'm looking for a way to test some network connectivity scenarios using UIAutomation (e.g. making sure the right messages are shown to the user for various connectivity scenarios). Has anyone come ...
5
votes
3answers
967 views
Clicking keyboard 'Next' key using UIAutomation
I have a search field in my app and I have set the return key type of the keyboard for this field to UIReturnKeyNext. I am attempting to write a UIAutomation test that clicks the Next button on the ...
1
vote
1answer
227 views
UIAutomation for iPhone
Does UIAutomation work for testing on the iPhone devices and can I do it without the xCode for the project?
Is there another tool that can test without the xCode?
0
votes
1answer
272 views
Is that possible to run iphone UIAutomation script using ad-hoc distribution build
Previously i was using Developer build which support to run my UIAuotmation scripts , but recently i tried the build with ad-hoc distribution provisioning file its not compatible to run my ...
0
votes
2answers
281 views
ui-automation testin ios
I'm working for an iPhone project. I would like to use an UI Automation testing for my app. I'm completely new to testing.
I went though this document its quiet easy to understand but it doesn't say ...
1
vote
2answers
285 views
Is there any math. function which gives sequence of numbers when ever i call it?
I have the following function:
function random()
{
var whichProduct = Math.floor(Math.random()*5);
UIALogger.logMessage(whichProduct);
}
random();
This will give a random number in [1,4] ...
4
votes
7answers
805 views
Are there any existing library for Automation of UI controls in IOS
I am very new to IOS programming. I have a task to find if I can automate my UI for testing. This is what I want to do:
Put some code in my application that randomly (sounds bad but may be ...
3
votes
1answer
845 views
Within a script in the UI Automation instrument, how do I import another script?
Within a script written in JavaScript for the UI Automation instrument, how do I import another JavaScript file?
4
votes
4answers
3k views
how can I improve iPhone UI Automation?
I was googling a lot in order to find solution for my problems with UI Automation. Instead I find post that nice summary them:
There's no way to run tests from the command line.(...)
There's ...
1
vote
2answers
2k views
Can we use UI Automation tools with the iPhone Simulator?
I’ve been using the new UI automation tools with Instruments and the iPhone SDK 4.0, but so far I haven’t been able to get it to run under the iPhone Simulator. I’ve tried setting the target to every ...