Search found 3 matches

by joejeff
Fri May 06, 2016 10:16 am
Forum: Automation API
Topic: Enumerate all elements & controls
Replies: 3
Views: 2475

Re: Enumerate all elements & controls

Thank you for your answer. I am looking to do this generically to cover all guis (very similar to Spy). Therefore I do not have a single Ranorex snapshot.
by joejeff
Wed May 04, 2016 5:50 pm
Forum: Automation API
Topic: Enumerate all elements & controls
Replies: 3
Views: 2475

Enumerate all elements & controls

Hi, I would like to enumerate all elements & controls on the host: List<Element> all = (List<Element>)Host.Local.Find(new RxPath("/form")); foreach(Element e in all) { Form f = new Form(e); if(f.Active) { Console.WriteLine(f.Title); foreach(Unknown u in f.Children) { } } } How do I detect children? ...
by joejeff
Wed May 04, 2016 5:06 pm
Forum: Automation API
Topic: Generic Installer Automation
Replies: 1
Views: 2012

Generic Installer Automation

I am new to Ranorex and would like to know if it is possible to do something like automation generically installers:

- Wait for new top window
- Enumerate through all buttons
- Check if the buttons names equal "Next", "I agree" etc
- Clock on the button
- Loop

So far I am using AutoIt to do so.