Tagged Questions
0
votes
0answers
19 views
IsKeyboardFocusable is true in Inspect Object but always false in my application
I'm learning UI Automation and I found that my "Inspect Object" clone is showing that "IsKeyboardFocusable " is always false even when it is true, all other information is identical (as you can see ...
0
votes
3answers
216 views
How to Automate simple Windows Form Application using MSAA?
I want to automate simple Windows Application using MSAA. I am not getting Idea that how to find the control (say TextBox and Button) and to get value of them(say get value of TextBox and click in ...
0
votes
0answers
92 views
Is there a way to set the AutomationID of an abject without using XAML?
I need to automate a Winform application. How do I set the AtumationID (or AutomationName) like the the XAML in this article does?
From this stack overflow article the answer seems to be no, unless ...
0
votes
1answer
114 views
Catch click-event of button in external app
I would like to know whether a button in an external app is clicked.
Before I had to do the clicking myself, for which I used the following code:
//Get window
IntPtr wrapUp = ...
0
votes
1answer
19 views
Access LinkLabel through White
I have one windows form application. i have created UI Automation script but i am not able to click on LinkLabel on the form. Does anyone know how can we get object of LinkLabel using White UI Library
...
3
votes
1answer
491 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 ...
1
vote
2answers
548 views
Click on button using UI Automation in Winform application in VC++
I want to click on a button using UI Automation. I am using UI Automation in Winform VC++.
Here is my code..
AutomationElement^ Select_connect_button= ...
0
votes
1answer
131 views
Read information from CMD, browser using windows UI automation
I can understand how UI automation can help retrieve information from text boxes within windows forms applications. How can I retrieve information however from command prompt tools and web browsers? I ...
0
votes
1answer
251 views
Why does Inspect.exe not display the AutomationId and other UIAutomation properties when running in debug?
I've been using Inspect.exe from the Windows SDK to examine the properties of a WinForms application but noticed that I didn't see any of the properties (for example, the AutomationId) whilst running ...
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 ...
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 ...
0
votes
0answers
89 views
UIAutomation Element not tracing Telerik Controls [duplicate]
Possible Duplicate:
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 ...
1
vote
2answers
1k views
Event will not fire upon listbox item selection - .Net UIAutomation framework
I am learning the .NET UI Automation framework today. So what i have done so far (referring to various articles)
Have a WinForm with Listbox, PictureBox, TextBox and Button controls on it. Refer to ...
0
votes
0answers
81 views
Need to SendMesssage to control placed on the top of the main Window of the other process in .NET
I am solving a hooked process related problem. I have extracted the controls of other managed processes and simulated those controls on the some other separate process. After somehow drawing those ...
0
votes
1answer
177 views
How to draw the .NET controls after setting data in properties of specific controls using overrideables?
I need to draw controls using the .NET "show" method of Control.
Suppose I have to draw TreeViewControl on a WinForm by providing test data on some click event, but it's not drawing over the parent ...
0
votes
2answers
811 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 ...
2
votes
2answers
1k views
How to Invoke Shortcuts Keys in the UI Automation? / .NET
I'm writing program to automate win32 form. I'm using Microsoft UI Automation library. I don't know how I can get and invoke predifined shortcuts key on that form. Now I simply get AutomationElement ...
1
vote
3answers
709 views
UIAutomation with ToolStripStatusLabel
I have a WinForms app, and I can't seem to access the text of a ToolStripStatusLabel through UIAutomation. Microsoft implies that the support for StatusStrips (and presumably items within them) is ...
