Search found 5 matches

by dpereira
Thu Nov 23, 2017 4:32 pm
Forum: Automation API
Topic: Loop as Data Rows in the Report
Replies: 10
Views: 3060

Re: Loop as Data Rows in the Report

I don't want to use loops. Just want to use the Report API. :(
by dpereira
Wed Jul 05, 2017 12:18 pm
Forum: Automation API
Topic: Loop as Data Rows in the Report
Replies: 10
Views: 3060

Re: Loop as Data Rows in the Report

Hi, What I am trying to achieve is to get the report structure shown in the attachment. I am looking for a way to divide the iterations in subtabs in the test report. I can't find more information on how I can work with the Report API. I hope you guys have an idea now on what I am trying to do. If n...
by dpereira
Fri Jun 30, 2017 2:01 pm
Forum: Automation API
Topic: Loop as Data Rows in the Report
Replies: 10
Views: 3060

Re: Loop as Data Rows in the Report

Hi,

I am using the last version of Ranorex.
I couldn't find a useful way to work with the Report API. Any help will works :)

Thanks
by dpereira
Thu Jun 22, 2017 2:42 pm
Forum: Automation API
Topic: Loop as Data Rows in the Report
Replies: 10
Views: 3060

Re: Loop as Data Rows in the Report

Thanks for the prompty help. Let me explain better. What I really want to do is to create the same report structure from data binding with iterations loops. The report structure using data binding is something like this below where this example shows 10 rows. Look how the report is organized. Each r...
by dpereira
Mon Jun 12, 2017 8:17 pm
Forum: Automation API
Topic: Loop as Data Rows in the Report
Replies: 10
Views: 3060

Loop as Data Rows in the Report

Hi all, I have a code module written in C# with a loop iteration, such like this: for (int i=0; i<10; i++) { Report.Info("User Test",i.ToString()); } I'd like to have my report file to get a new Data Row for each iteration since each iteration can fail or not. See image in attachment. How can I do t...