Search found 5 matches

by chanow
Wed Jul 03, 2013 4:59 pm
Forum: General Questions
Topic: Screen shots in Ranorex report
Replies: 3
Views: 1572

Screen shots in Ranorex report

Dear all, I find my Ranorex report become "very" slow even can not be opened and I think it's because there too many screen shot pictures to show in report(my test will run 10 hours and screen shot pictures are about 40mb) is there any way can let Ranorex report dont show screen shot images but just...
by chanow
Fri Mar 08, 2013 9:47 am
Forum: General Questions
Topic: Get size(pixel) of element found by spy in code
Replies: 1
Views: 2735

Get size(pixel) of element found by spy in code

Dear all,

In ranorex spy I can get size of a found element
for example
Image

I need those values for some use
Is it possible to use those values in user code?
If it 's possible, can someone kindly tell me how to get those values in user code?

Thank you very much
by chanow
Fri Feb 08, 2013 9:27 am
Forum: General Questions
Topic: Validate.Exist() fail let usercode force break
Replies: 2
Views: 2427

Re: Validate.Exist() fail let usercode force break

Hello sdaly

Thanks for your reply

I find why I cant keep loop going because I inputed wrong numbers of arguments....

Thank you very much
by chanow
Mon Feb 04, 2013 5:00 am
Forum: General Questions
Topic: Validate.Exist() fail let usercode force break
Replies: 2
Views: 2427

Validate.Exist() fail let usercode force break

HI all, I am novice with Ranorex and c# language , in my usercode, if Validate.Exists() failed then user code will break, Is there a way let user code keep executing even if Validate.Exist() failed? below is my code sample: for(int column = 0; column < column_cnt; column++) for(int row = 0; row < ro...
by chanow
Mon Jan 21, 2013 3:38 pm
Forum: General Questions
Topic: Can get excel value using DataSources().get in user code
Replies: 1
Views: 2245

Can get excel value using DataSources().get in user code

Dear All, I have problem with object DataSources() Is there a way to get each excel column value in a row with this function? Now I can use below code to get row count and column count ///// var getExcel = DataSources.Get("MyConnector"); int column_count = getExcel.Columns.Count; int row_count = get...