Search found 9 matches

by MM-P
Mon Apr 27, 2009 11:39 am
Forum: General Questions
Topic: .rxrep and .rxrec files in Visual Studio
Replies: 6
Views: 2985

Re: .rxrep and .rxrec files in Visual Studio

i want to have this files in Visual Studio in order to open them with the proper tools (Spy and Recorder). I simple added the files .rxrep and .cs (add existing item) to a folder in my project. The .cs files is generated out of the .rxrep. --> to use the repository in VS. To open the files i right-...
by MM-P
Mon Apr 27, 2009 7:42 am
Forum: Automation Tools
Topic: Checking elements in tablegrid
Replies: 4
Views: 3153

Re: Checking elements in tablegrid

Via the recorder I can select the tablegrid, but no further. How can I check/validate those elements inside the tablegrid ? I had a similar problem with the Xceed grid in Version 3.0. In February 2009 they fixed it in Version 3.1. http://xceed.com/Grid_WPF_New.html - UI automation enables the use o...
by MM-P
Wed Apr 15, 2009 5:13 pm
Forum: Automation Tools
Topic: Path name is incomplete generated
Replies: 1
Views: 2658

Path name is incomplete generated

I really like working with Ranorex in VS and the Repository. But sometimes when I can´t find out how to access sth. I´m trying to find it with the Recorder. And also like the Spy it gives me a path which is not complete for me. The AutomationID should be used always in the path. And I´ve to add in m...
by MM-P
Wed Apr 08, 2009 11:40 am
Forum: Automation API
Topic: Can't get Values of a Xceed DataGrid
Replies: 9
Views: 8643

I got it ... by chance ... the problem was, that in the cells are a intern Lists (within the child). (this is not in the database) In this List I find the Text :) So I can access die cells text now with this: Table contactTable = "...path..."; IList<Row> contactRows = contactTable.FindDescendants<Ro...
by MM-P
Tue Mar 31, 2009 10:35 am
Forum: Automation API
Topic: Can't get Values of a Xceed DataGrid
Replies: 9
Views: 8643

:D I really appreciate that you are helping me. But cell.Text was never a Problem to get. But not what ist the content of the cell from database in this cell. That´s not the Text attribute. And I also couldn´t found it in the Tree when I´m moving over the variable. That´s not a Problem of Ranorex! I...
by MM-P
Mon Mar 30, 2009 8:31 am
Forum: Automation API
Topic: Can't get Values of a Xceed DataGrid
Replies: 9
Views: 8643

Ok finally I understand how to work with the RxPath ;) Button button = "form[@name='Adminform']/container/button[1]/element[1]/button"; button.Click(); --> passed Control control = "form[@name='Adminform']/container/button[1]/element[1]/button"; button.Click(); --> failed with Exception: Ranorex.Cap...
by MM-P
Fri Mar 27, 2009 3:39 pm
Forum: Automation API
Topic: Can't get Values of a Xceed DataGrid
Replies: 9
Views: 8643

I tried to set control on a Form, Button, Table and Cell ... but always I´m getting this exception.

Thank u 4 your support!
by MM-P
Fri Mar 27, 2009 3:08 pm
Forum: Automation API
Topic: Can't get Values of a Xceed DataGrid
Replies: 9
Views: 8643

I tried it ... Form myForm = myRepo.FormAdministration.Self; Control control = myForm.FindSingle<Control>("/form[@name='averylongspecification']withmanycriteria"); and get the Message: Ranorex.CapabilityNotSupportedException: The element does not support the required capability 'control'. at Ranorex...
by MM-P
Fri Mar 27, 2009 12:12 pm
Forum: Automation API
Topic: Can't get Values of a Xceed DataGrid
Replies: 9
Views: 8643

Can´t get Values of a Xceed DataGrid

Is there any user guide for working in visual studio with ranorex? Or is all the same like in Ranorex Studio? Seems to me like that. But I´ve a problem I´ve a XceedDatagrid. I´ve set everywhere, where it is possible automation ID´s - It recognice the DataGrid .. ControlType.DataGrid (have got automa...