Search found 9 matches

by sukhmeet032795
Tue Jul 12, 2016 2:29 pm
Forum: General Questions
Topic: Trigger Event from Application/Ranorex for automation
Replies: 1
Views: 1396

Trigger Event from Application/Ranorex for automation

Hi, Is there any way to know that the UI of the winform/wpf application has completely loaded with data. Is there anything that can be done such as sending a triggering event from the application which can be caught by the user code of Ranorex or ranorex returning the entire payload. I have already ...
by sukhmeet032795
Tue Jul 05, 2016 7:32 am
Forum: General Questions
Topic: WPF Table not Giving Entire data
Replies: 1
Views: 1434

WPF Table not Giving Entire data

Hi, I have a WPF list in my application. The Table consist of multiple rows and columns out of which only some are visible on the screen at a time. In my application, the rows and columns out of screen scope are created when they are visible on the screen. I also know the properties of wpf and have ...
by sukhmeet032795
Tue Jun 28, 2016 1:07 pm
Forum: Object Identification and Technologies
Topic: How to get Color Property of UltraLabel
Replies: 3
Views: 2252

Re: How to get Color Property of UltraLabel

Hi, It did not work for me. I got the following error. Action 'invokeremotely' failed on element '{Unknown:ultraPanel2}'. Object reference not set to an instance of an object. here is my code -> Ranorex.Control elementUltraGrid1 = new Ranorex.Control("/form[@controlname='PranaMain']/element[@control...
by sukhmeet032795
Tue Jun 28, 2016 12:40 pm
Forum: Object Identification and Technologies
Topic: How to get Color Property of UltraLabel
Replies: 3
Views: 2252

How to get Color Property of UltraLabel

Hi, We are using Infragistics in our Application. Now we have multiple UltraLabels in our application i.e Infragistics.Win.Misc.Ultralabel. These labels have some Background color which is of certain significance. I want to know the Background Color which each Ultralabel represents. I have googled a...
by sukhmeet032795
Tue Jun 28, 2016 7:44 am
Forum: Object Identification and Technologies
Topic: Element Not Being Identified
Replies: 5
Views: 2277

Re: Element Not Being Identified

Hey,

Haha thanks for the suggestion, i tried InvokeRemotely for my case but even i would prefer screenshot based. Thanks a Ton!!!! Cheers
by sukhmeet032795
Tue Jun 28, 2016 7:17 am
Forum: Object Identification and Technologies
Topic: Element Not Being Identified
Replies: 5
Views: 2277

Re: Element Not Being Identified

Hi,

Thanks for the quick reply. I can't help myself relating how to use InvokeRemotely specific to my testcase. Can you help me in this?
by sukhmeet032795
Mon Jun 27, 2016 11:41 am
Forum: Object Identification and Technologies
Topic: Element Not Being Identified
Replies: 5
Views: 2277

Element Not Being Identified

https://postimg.org/image/5qcy3nkif/ I have two queries. 1) I have a table which is made up of Cells. Each cell consist of Text, Filter and a pin button as can be seen in the image. I want to click on "Filter" Button(shown by the Blue Boundary), so that i can customize the menu. Ranorex is not iden...
by sukhmeet032795
Fri Jun 17, 2016 5:11 am
Forum: How To …
Topic: Comparison of two arrays
Replies: 2
Views: 2191

Re: Comparison of two arrays

Hi,

Thanks for the quick reply. I have already solved it. I was missing reference to System.Core dll which contains the namespace and the function SequenceEqual. So after adding the dll, i wws able to solve it.
by sukhmeet032795
Tue Jun 14, 2016 3:33 pm
Forum: How To …
Topic: Comparison of two arrays
Replies: 2
Views: 2191

Comparison of two arrays

Hi, i have list of arrays. I want to compare the arrays and check if any two of the arrays are equal. I am using C# syntax. So i thought of using SequenceEqual but that is not working and i dont want to compute term by term. My arrays are of the form -> var recordedArray = dataTable.Rows .ItemArray;...