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)

20
votes
8answers
3k views

What's a good, if any, .NET Windows automation library?

I'm looking for a library that can be used in native .NET code, just like any .NET assembly. The purpose of the library must be to automate Windows (push a button, select a window, send keys, record ...
4
votes
1answer
2k views

UI Automation for WP7 [closed]

is there any tutorial of UI Automation for WP7? I have been asking mr Google, but noting. I Look at microsoft webpage ...
26
votes
9answers
15k views

Where do I get UI Spy?

Where can I download UI Spy?
4
votes
3answers
4k views

What better tool than Sikuli to use for screen automation on Windows 7 (or preferably multi-platform) [closed]

I'm using Sikuli for Screen automation. i.e for clicking of GUI elements according to their appearance on the screen. This works all right, but Sikuli has one major disadvantage for me: Slow ...
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 ...
16
votes
3answers
1k views

When i run my android UIAutomator code, it shows error

When I run my android UIAutomator code, it shows following error. INSTRUMENTATION_RESULT: shortMsg=java.lang.RuntimeException INSTRUMENTATION_RESULT: longMsg=com.android.ui.testing ...
1
vote
1answer
322 views

Using Instruments to test an iOS app without having source code to the application

I would like to use UIAutomation via Instruments in Xcode to test an app on my iOS device. Is it possible to do so without having to build the source code? The reason for this is that our team will ...
1
vote
1answer
930 views

How can I use automation to right-click with a mouse in Windows 7?

I've spent a while getting my mouse to be able to right-click in Windows XP. Here's the code: public class Mouse { [DllImport("user32.dll", SetLastError = true)] internal static extern uint ...
1
vote
3answers
965 views

How to run White + Teamcity (Winforms application)

I'm trying to run UI-tests (written using white). When I run them using NUnitConsole everything works fine. When I try to run them using TeamCity I get the following exception Test(s) failed. ...
1
vote
1answer
434 views

Why is this .net UIAutomation app leaking/pooling?

I've got an app using .net UIAutomation, it eventually runs out of memory and crashes just monitoring windows being shown and closed. Seemed easier to show this in VB than C# but happens the same ...
0
votes
1answer
154 views

Another one about Win32 Vs UI Automation

I'm building a (Web/WinForms Application I didn't decide yet) and I have a running simple WinForms Application that I couldn't access through my new application by any means and I just want to read ...
0
votes
1answer
186 views

UI automation not tracking Telerik controls

I am creating an application which will record the all the application level and control events . I am using the White recorder framework, it is able to trace the other controls which are not telerik ...
10
votes
7answers
2k views

Is there Anyone who Successfully Implement UI Test Automation Regime using Microsoft UI Automation?

I am looking for an Automated UI test framework/ software tool. In the past I have been using TestComplete, and although it's a good piece of software, but the concept of GUI test automation was ...
5
votes
1answer
6k views

How about UI automation testing for iOS app with instruments & Javascripts

Get knowing the automation UI testing for iOS apps from WWDC2010 video session, but no practices for it. From codeproject project,we can have one example. Questions here to hear from people who ...
14
votes
4answers
987 views

Running UIAutomation scripts from Xcode

Did anyone succeed in setting up automated UIAutomation tests in Xcode? Could this be a bug in Xcode? I'm trying to set up a target in my Xcode project that should run all the UIAutomation scripts I ...
4
votes
1answer
1k views

How to check element properties in iOS gui automation?

All UI Automation examples I've seen uses standard components whose state can be inspected with the JavaScript API using the value() method. This is a bit limiting. Lets say you want to check the ...
10
votes
3answers
4k views

Experiences with UI Automation and WPF

We are developing a rather large WPF based application and would like to include some automated UI testing in our test suite (which already contains a number of unit tests). The UI Automation ...
2
votes
1answer
289 views

How can I obtain an AutomationElement reference to an application running in the Windows Phone 7 Emulator?

Windows Phone's Silverlight support includes support for the System.Windows.Automation classes, but there doesn't appear to be any way to get an AutomationElement reference to the application from ...
1
vote
3answers
898 views

win32 vs UI Automation

If your making a software using the following: C# Net4 Windows Forms to manipulate another Software what would you prefer and why ? and what advantages you would get for each over the other ?
1
vote
1answer
1k views

How do I bring Set Focus of MDI Child Window using UIAutomation

We have an old legacy application we need to automate. It uses MDI Windows. We're using UIAutomation and I can succesfully get the appropriate AutomationElement for each MDI Child window. What I ...
6
votes
3answers
806 views

ContentControl is not visible when application starts via UI Automation test, but its visible when application starts by user

We are using the prism and WPF to build application. Recently we started using UI Automation (UIA) to test our app. But some strange behavior occurred when we run UIA test. Here's simplified shell: ...
5
votes
1answer
1k views

set text on textfield / textbox with the automation framework and get the change event

I want to set a text on a textfield / textbox element with the Mircosoft UI Automation framework, that means on a AutomationElement from the ControlType.Edit or ControlType.Document. At the moment ...
3
votes
4answers
1k views

White UIAutomation click() stops working on different platform

I'm using White to automate the BDD testing of our C# WPF UI. My first couple of tests are working well on my development machine (running Windows 7). However, when I try and run the same code on ...
2
votes
3answers
367 views

What is UIATargetHasGoneAWOLException while operating iphone with UIAutomation through Instruments.

I am using UIAutomation, through Instruments from Xcode, to do something on iPhone, and got a weird exception: UIATargetHasGoneAWOLException. Anybody know what does this exception mean?
2
votes
1answer
428 views

How to get WPF combobox display text using UIAutomation?

I just started using UIAutomation for some testing. I got the most stuff working except this seemly simple one. I want to verify the localized text displayed in a combobox, but I couldn't figure out ...
0
votes
2answers
1k views

WPF UI Automation issue

This Thread belong to this I am asking where do I need to insert the workaround from this I have a WPF application which has performance issue on some clients with Windows 7. On Windows XP all is ...
0
votes
2answers
815 views

C# How to wait for a pop up window and select it for input

I am basically writing a specialized macro player/recorder in C#. One thing I need to be able to do is wait for a pop up window (something like a Save As... dialog box) that I can then select to ...
-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.) ...
4
votes
1answer
394 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 ...
3
votes
0answers
100 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 ..." ...
3
votes
2answers
2k views

What is the difference between using System.Windows.Automation and Microsoft.VisualStudio.TestTools.UITesting for WPF UI Test automation?

What is the difference between using System.Windows.Automation (commonly known as UIA) API and Microsoft.VisualStudio.TestTools.UITesting (one that is used in Coded UI Test behind the scene) for ...
3
votes
1answer
812 views

AutomationProperties.Name VS x:Name

There is no difference for the "CodedUI test builder" between the AutomationProperties.Name and x:Name. But the first one can override the second one. Also the AtomationProperties.Name supports data ...
3
votes
1answer
720 views

Cross platform solution for automating ncurses-type telnet sessions

Background Part of my work in networking and telco involves automating telnet sessions when legacy hardware doesn't offer easy solutions in other interfaces. Many older pieces of equipment can only ...
2
votes
1answer
228 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 ...
2
votes
2answers
774 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
716 views

Read cell Items from data grid in SysListView32 of another application using C#

I am trying to read data grid items in SysListView32 of another process using C# .net ui-automation and winapi C# code using ui-automation http://pastebin.com/6x7rXMiW C# code using winapi ...
2
votes
0answers
546 views

WinApi: Get Control Name of COM Forms

I want to replace my current UI automation tool (QTP) with .Net framework. I need to test VB6 (COM) application. One of the fundamentals of framework is using the form name. So far I failed to find ...
2
votes
2answers
2k views

Automation UI Testing tool for silverlight 5

as you might know, silverlight 5 beta was resleased a while ago, and alongside its new features, I've encountered a serious problem. There isn't any testing tool that I've found that is able to test ...
2
votes
3answers
1k views

How can I tell if a process has a graphical interface?

I'm using automation to test an application, but sometimes I want to start the application via a batch file. When I run "process.WaitForInputIdle(100)" I get an error: "WaitForInputIdle failed. This ...
1
vote
2answers
989 views

How to click an <option> element with WebDriver?

This is a piece of UI code <select id="order_unit_line_rate_806782_is_addenda_enabled" class="selects_for_487886" onchange="select_addendum(806782, ...
1
vote
1answer
328 views

Accessing iOS user preference through UIA script for UI automation

I've been trying to implement UI test script for my iOS application. In test cases I come over an issue of setting user's preference in setting. So far I could not find a way to change or read these ...
1
vote
0answers
197 views

My first use for UI Automation - I Need to access a Button control in a running WinForm application from my new WinForm application [closed]

I'm developing a WinForms application with C# that will depend entirely on some Button and Label controls in an already existing WinForms Application. There is a huge lack in documentation, articles ...
1
vote
2answers
345 views

Automating UI on Windows 7 platform

I am a beginner in C++ application development. I use Visual Studio and I have an application which process the image like Photoshop does. I wish to automate the UI of my app and test various ...
1
vote
3answers
2k views

iOS/UI Automation: UIAActionSheet does not have possibilities to manipulate with buttons

My question is related to UI Automation template from XCode's Instruments tool. How does UI Automation support UIActionSheet testing? I know that there is a UIAActionSheet element and I was able to ...
1
vote
1answer
611 views

Get component type of custom .NET class from window handle

I need to see the component type, meaning the name of the class that was programmed, of a clicked control in another process. I need the type so I can react to the clicked control and then do some ...
1
vote
1answer
437 views

How can I tell if an element matches a PropertyCondition in Microsoft UI Automation?

I'm trying to find an AutomationElement in a particular row of a GridView (so there are many identical elements). I'm iterating over the elements in the row, and I'd like to use a matcher to see if a ...
1
vote
2answers
729 views

How can I get a control's DataContext from an external application using UI Automation (and/or White)

I'm using White to drive the UI of a WPF app, and it's worked well so far. I'm at the point however, where I need to poke into the internal state of the app under test to check some conditions. ...
0
votes
1answer
110 views

sikuli with Hudson possible?

We have a windows-based app to install our app using the InstallAnywhere wizard. We also have a linux-based app to install our app using InstallAnywhere wizard. Can sikuli be used with Hudson, a ...
0
votes
2answers
244 views

Are there ways to get android app view hierarchy from another android app?

I'm researching ways to do android automation running on the device, without any workstation connection. My approach is like this, i modified monkey's source, and is able to start 3rd party app ...
0
votes
5answers
1k views

Frameworks and tools for UI testing of ExtJS based web apps

I would like to test a web app that was drastically redesigned to use ExtJS to drive its UI. I have done some online searching but couldn't find any recommendation for a good framework to handle it ...

1 2