Search found 9 matches

by sahoko
Thu Jan 10, 2008 9:02 pm
Forum: Automation API
Topic: Support of 3rd Party Componets (DevExpress)
Replies: 3
Views: 4795

Automating DevExpress Controls

Hi, We also are having troubles seeing and controlling DevExpress controls in Delphi application. We read your thread about the AccessibleRole and name properties but can't seam to find those properties. Could you please be more specific on how we can expose the DevExpress controls to our Ranorex Fr...
by sahoko
Mon Jan 07, 2008 6:29 pm
Forum: General Questions
Topic: Unable to select a drodown list item
Replies: 4
Views: 4937

The spy tells me that the element has the role type of "Client". This element doesn't have a default action associated with it. Is there a function to click this element without any default action?
by sahoko
Sat Jan 05, 2008 1:55 am
Forum: General Questions
Topic: Unable to select a drodown list item
Replies: 4
Views: 4937

Unable to select a drodown list item

AUT: Windows app written in Delphi using DevExpress for UI controls I recorded the action, and the recorder produced the code below. It replays fine. However when I try to do the same thing in my test code, the dropdown list closes right after it's clicked, and my test code fails to click a drodown ...
by sahoko
Thu Oct 11, 2007 8:22 pm
Forum: Automation API
Topic: No "Name" attribute for input type="text"
Replies: 5
Views: 3500

When I move the position of IE, the client position changes... Is there anything else that I can use in order to uniquely identify the object beside the client position? I need to run my automation on different test clients, but if the client location changes if I move the position of IE, the script...
by sahoko
Thu Oct 11, 2007 7:56 pm
Forum: Automation API
Topic: PushButton - how can I select an item from the dropdown list
Replies: 1
Views: 3562

PushButton - how can I select an item from the dropdown list

I can open the dropdown list using this code fine: foreach (Control control in _form.Controls) { Element objDropDown = control.Element.FindChild(role, name, className, location); if (objDropDown != null) { // click the dropdown list objDropDown.DoDefaultAction(); rc = 0; break; } } After the list is...
by sahoko
Wed Oct 10, 2007 6:36 pm
Forum: Automation API
Topic: No "Name" attribute for input type="text"
Replies: 5
Views: 3500

Hi Jeno,

Thank you for your quick response. When I look at this element in the spy, I get the "client position" and "screen position". Which value can I use as location?
by sahoko
Wed Oct 10, 2007 1:13 am
Forum: Automation API
Topic: No "Name" attribute for input type="text"
Replies: 5
Views: 3500

No "Name" attribute for input type="text"

This text field control has the unique id property like this: <input type="text" style="width:235px;" class="ig_ClaymationEdit igtxt_ClaymationEdit ig_e06f37d7_r1" id="igtxtctl00_ContentPlaceHolder1__CampaignPanel_igTxtCampaignName" /> But when I look at the attributes of this element with RanorexSp...
by sahoko
Tue Oct 09, 2007 6:04 pm
Forum: Automation API
Topic: Role.Text
Replies: 2
Views: 3088

Thanks for your solution. It worked. :D
by sahoko
Tue Oct 09, 2007 5:27 pm
Forum: Automation API
Topic: Role.Text
Replies: 2
Views: 3088

Role.Text

I'm unable to enter text to a text box. The spy tells me the element is the role type "Text". My code below finds the element, but its State is always "ReadOnly". I think that's why I can't enter text to this text box, but I don't know why it's flagged as "ReadOnly" to begin with... // enter usernam...