UI Automation is programmatic/scripted interaction with a graphical user interface, typically for the purpose of testing or accessibility assistance.

learn more… | top users | synonyms (1)

0
votes
2answers
174 views

Not able to click on menu option from selenium

I am trying to select menu option for my WebApp, Able to click on the menu, menu options are also visible But not able to click on menu option. From Selenium API if I try to check the visibility of ...
0
votes
1answer
90 views

How to get GridView item from AutomationElement?

I can get the AutomationElement for a ListView/GridView with the FindAll method. The classname for the individual items in a row is ContentPresenter. I would like to get the value but I can only get ...
4
votes
1answer
221 views

UI test automation beyond your own app?

Is there some framework which allows to control whole Simulator (to be able to test not only inside your own app, but other apps too)? I read about: UIAutomation Test studio for iOS MonkeyTalk ...
0
votes
1answer
135 views

Get a specific tab in MSIE 9

I am using Watin 2.1 to try to test file download and file open functionality for a website. This worked well in Internet Explorer 8, but since Internet Explorer 9 there is a yellow-white download bar ...
1
vote
1answer
148 views

Whats the correct Build Options / Code signing / Scheme settings for profiling ui automation on a device?

I'm trying to run with ui automation script on my my device / iPhone 4. I've tried several settings without success and I'm not sure who I am anymore :( Build Options Validate Built Product: Ad ...
1
vote
1answer
212 views

When recording using UIAutomation on a device, it hangs on 'Starting Capture…' . Works fine on Simulator

Has anyone else had this problem? I'm new to UIAutomation. Am using Xcode4.5, trying to record commands on my iPad 3 running ios6. When I click the record button, it just hangs on 'Starting ...
1
vote
1answer
146 views

Scrum Template or Update for TFS2010 supporting VS2012, Unable to Associate Coded UI with Test Case

I am using TFS 2010 with Scrum template. I am creating a Coded UI test cases using Visual Studio 2012 Ultimate and Checked in in TFS. Later I created a manual test cases using Test manager and when I ...
0
votes
1answer
252 views

Configuring Selenium Server via properties file

Is there such functionality for Selenium, where one can mention the selenium server configuration in any properties file, and before starting the server it automatically reads properties from that ...
2
votes
0answers
132 views

Web UI Automation Localization/Globalization testing

I am new to localization\globalization testing. I would like to test my current Web UI application on the same. I am using Selenium driver to drive my automation using C# language. Basically, I ...
0
votes
2answers
1k views

WebDriver How to get selected value from a ComboBox without using Select Class in javascript

I am working on webdriver with Java. Without using Select class of Webdriver, how can I get the selected value from a combobox ? The Markup i am working on is -- <select name="cmbStateName"> ...
2
votes
2answers
411 views

scrollToVisible error while testing on a device, UIAutomation

For this line of test code : view.scrollViews()[0].tapWithOptions({tapOffset:{x:0.32, y:0.25}}) I am getting this error 2012-11-02 18:09:23 +0000 None: Script threw an uncaught JavaScript error: ...
2
votes
1answer
101 views

MS UI automation - Custom DataGrid

currently i am working on automating one of my .net based application using WPF(in Excel vba).UI spy is not recognizing one of the control(Grid) as an object.Is there any way to select an item from ...
1
vote
1answer
129 views

Using TestComplete's UIAObject with Microsoft UI Automation Control Patterns

In TestComplete, the UIAObject "ControlPatterns" property lists the Microsoft UIA Control Patterns for an object. General Question : How do you invoke these control patterns against the UIAObject? ...
0
votes
1answer
44 views

Obj-C, trying to set accessability (including label) for the UIDatePicker? [closed]

I haven't got a clue where to start and how far I can go. I would like to add labels for individual values in the the date picker. But I'm not sure if this is possible and how to do it ?
3
votes
1answer
288 views

how to select which button to select in alert message for IOS UIAutomation

How to click on alert message buttons when Alert has Yes and No Buttons. And i tried the way like: target.frontMostApp().alert().buttons()["buttonName"].tap(); ...
1
vote
1answer
84 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 ...
5
votes
2answers
206 views

data factory for cucumber, watir

We have a isolated test automation team responsible for automating only watir+cucumber functional test cases. Their code base is not attached with the rails app that other developers are working on, ...
1
vote
0answers
28 views

Using Instruments to test an iOS app without having source code of the application [duplicate]

Possible Duplicate: Using Instruments to test an iOS app without having source code to the application I should like to make UI automation tests for native and web iOS applications (on iPad ...
0
votes
0answers
60 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
40 views

UIAutomation on non acccessible elements

I have a few buttons on my view that have isAccessibilityElement set to NO. Is there anyway to test these elements via UIAutomation through instruments using jasmine scripts?
1
vote
1answer
121 views

Access modal view controller with ios UI Automation

Is there a way to access the elements of an modal view controller with UI Automation. I can't find the view or any elements when printing the tree of the local target. Only the view "behind" is shown ...
2
votes
6answers
248 views

Is there a way to automate 'look and feel' testing of a web page?

I have few resources to perform testing on many projects with hundreds of different web pages and the most tedious part is verifying the look and feel of the site is OK. Specially the layouts of HTML ...
0
votes
1answer
56 views

How to run multiple .trace files in one run i.e one after the other in UI automation tool?

Iam having five .trace files and now i want to run all the the test cases in one click. How can it be done?
-1
votes
1answer
192 views

How to generate a pdf report using UI automation tool? [closed]

Iam unable to create a PDF report using the logs generated after running the test script. Please let me know how can i convert my log result to pdf. Iam using UIautomation tool for testing.
3
votes
1answer
144 views

UIAutomation get view

I'm playing with UIAutomation, and I can't reference a view... Here is the log, where the view is visible: main_view UIAApplication: name:MyProjectDemo rect:{{0, 0}, {1024, 768}} UIAWindow: ...
0
votes
0answers
60 views

UIAutomation equivalent for touchesMoved

I have to tap and drag for some points, without ending touch. How can I automate this with UIAutomation ? The dragFromToForDuration only draw a line from two points, and can't draw (touch) multiple ...
1
vote
0answers
71 views

accessibilityLabel and Title the same for UIAutomation in Xcode?

I watched Apple's video on UIAutomation and saw some online tutorials about it. Most say to either set the accessibility label in code like: self.helpButton.accessibilityLabel = @"helpButton"; ...
1
vote
1answer
99 views

wpf textbox: trouble with default sizing and UI automation behaviour

I have a wpf TreeView with customized Items. Each node is a wpf Border with a wpf expander inside. The expander contains the child items of the node, and so on. So every TreeViewNode has its items ...
4
votes
1answer
389 views

Python Get Screen Pixel Value in OS X

I'm in the process of building an automated game bot in Python on OS X 10.8.2 and in the process of researching Python GUI automation I discovered autopy. The mouse manipulation API is great, but it ...
1
vote
0answers
168 views

How to automate html5 ui tests

I have been using Xcode’s instruments for running UI automation on IOS apps our team have been developing. I’ve just been asked to start UI testing on some HTML5 android apps and have been looking ...
0
votes
0answers
55 views

Is there a way to disable output from logDebug()?

I am using the command line version of instruments to run automated tests and saving the output results to a file. In this file I dont want instruments to write any "Debug" logs, is there a way to ...
1
vote
2answers
122 views

TypeScript with UIAutomation (Apple's library)

I wonder if anyone has tried implementing iOS UIAutomation tests using Typescript. I guess I will need to make my own declaration files and add them as needed however there is one thing I cannot ...
0
votes
0answers
136 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]; ...
0
votes
1answer
458 views

Run another Java program from within a Java program and get outputs/send inputs

I need a way to run another java application from within my application. I want to recive its outputs into a JTextArea and send it inputs via a JTextBox.
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 ...
-1
votes
1answer
98 views

How to get the page source from an IE window?

I need to parse the page source as rendered by IE. I can use the following simple code to open an IE to a URL. (The BrowserWinodw type is from the Visual Studio Coded UI test framework.) ...
1
vote
1answer
218 views

UIAutomation test fails after pushing new view controller (tuneup.js)

I just started trying UIAutomation with tuneup.js. I can test my first window just fine, but the second window fails -- my app is still looking at the first window and sees e.g. the "Sign in with ...
2
votes
1answer
104 views

JasperReports automation

I need to understand how people in industry are testing JasperReports in automated way. It is exhausting and error prone to do regression each iteration and I would like to automate the same. ...
0
votes
0answers
126 views

InvokedEvent not firing for AutomationElement

I'm trying to do some UIAutomation in C#. I'm trying to attach to the click event of a button, but the event does not seem to be firing. The button I'm trying to attach to has some caveats though. ...
2
votes
2answers
751 views

How do I switch to a Frame and click on the pop up using web driver (Selenium - Java)?

<iframe height="0" frameborder="0" width="500" scrolling="no" style="position: absolute; top: 185.5px; left: 460.5px; height: 357px; width: 500px; z-index: 10002; border: medium none; ...
2
votes
1answer
79 views

Watin element finder error

I am getting the below error when I try and find an element. My find method below. public Element FindMenuItem(string menuItemName) { var menuItem = Element(Find.ByText(menuItemName)); var ...
0
votes
1answer
192 views

How to click on a “pane” using UI automation library?

We have an application in which I need to click on a Pane. I tried to use the following code, which I use to click on a button, but it gave Unsupported pattern exception. InvokePattern click_pattern ...
0
votes
1answer
363 views

How to set MS Word page size via the automation API?

I need to change MS Word document's page size from Letter to A4 and found this automation class: http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word.document_members.aspx. Which ...
3
votes
1answer
488 views

Using UI Automation, Winforms Button Invoking multiple times

I'm attempting to use the MS UI Automation Framework in my application for some automated testing. My goal for now is to listen to GUI events and record them, similar to the sample provided ...
0
votes
1answer
367 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
204 views

AutomationElement get real Type

How to get real Type of AutomationElement (for example TextEdit and so on)? GetType() return System.Windows.Automation.AutomationElement.
3
votes
0answers
98 views

UIAutomation failed to load plugin

I have a project set up such that one of target launches UIAutomation when build process finishes. Instruments is launched from Python script which eventually call the usual "xcrun instruments ..." ...
1
vote
1answer
412 views

xdotool with mountain lion and macbook retina

xdotool doesn't seem to work with my new macbook retina with mountain lion installed. It launchs XQuartz but does't seem to simulate mouse click or keyboard inputs like before. I don't know if it's ...
0
votes
0answers
283 views

How can I find text on screen and get its coordinates using c#?

I want to automate a software installed on my machine. I am using AutoIt but on one screen i could not get the control ID or title so that i can access that control and then find text in that. I want ...
0
votes
1answer
123 views

Does there exist a cross-browser JavaScript library for simulating keyboard manipulation of an element?

I'm well aware of the standard event firing mechanisms for browsers, but I have a need for a JavaScript library that will simulate cursor and insertion point navigation via the keyboard. In ...

1 2 3 4 5 11