Search found 7 matches

by cveith
Tue Dec 18, 2012 1:53 am
Forum: How To …
Topic: Localized
Replies: 9
Views: 6123

Re: Localized

Another way to consider is, putting your localized strings in Resource Files.

You can switch between the languages with CultureInfo.CurrentUICulture then. Perfect for label validations.

Don't forget to add a "using System.Globalization;" to your header ;)

regards

Christian
by cveith
Sun Dec 16, 2012 11:09 pm
Forum: Automation Discussions
Topic: How to know the total number of validation steps?
Replies: 5
Views: 3045

Re: How to know the total number of validation steps?

It would be possible writing a custom report logger.

You can generate your own stats then from report data.
by cveith
Sun Dec 16, 2012 10:52 pm
Forum: General Questions
Topic: Can you elaborate on this release note?
Replies: 3
Views: 1764

Re: Can you elaborate on this release note?

It's an easy one ;)

You can bind the Datacolumns to the parameters of a test module.

When modifying the content of the parameter within the module, the actual value is placed back in the Databinding.

You can use this to change parameters during execution. Passing values from one module to another.
by cveith
Sat Dec 01, 2012 10:26 pm
Forum: Automation Tools
Topic: Getting a lot of jpgs
Replies: 1
Views: 1818

Re: Getting a lot of jpgs

Hi Colutti,

screenshots are generated when validations failing.

Just go to the Properties of your Test Suite and deselect "Capture Tracing Screenshots".

kind regards

Christian
by cveith
Tue Nov 15, 2011 11:28 pm
Forum: Automation API
Topic: Rename Iteration in RXLOG
Replies: 7
Views: 3268

Re: Rename Iteration in RXLOG

Hi Peter, sorry for my late response. I've found a way getting the information presented :) I've extended the rxlog Stylesheet file. It now tests the datarows given in the rxlog file for a field called "IterationName". If it's there, the value will be taken in the Testcase "Iteration: MyText from th...
by cveith
Mon Oct 31, 2011 12:20 pm
Forum: Automation API
Topic: Rename Iteration in RXLOG
Replies: 7
Views: 3268

Re: Rename Iteration in RXLOG

Hi Peter,

thanks for your quick response. Would it be possible to have such a feature in future versions ?

Maybe defining a column in the csv which could be taken as a Iteration Name.
by cveith
Mon Oct 31, 2011 11:23 am
Forum: Automation API
Topic: Rename Iteration in RXLOG
Replies: 7
Views: 3268

Rename Iteration in RXLOG

Hi Forum, is there a way to rename an Iteration in the rxlog report during test execution ? We're using a csv datasource and use the Databinding to open different Files in the Software under test. We would like to see "Iteration: Filename..." instead of "Iteration: 1". Is it possible to change this ...