I've got a little Question about how to execute a solution on different pcs. We are using the testuite and the repository from Ranorex 3.1.2. One element could only be recognized via Raw Text Plugin. Now we've got the problem, that on an other PC the test fails because there the plugin is not correctly configured.
I found following code within this forum:
- Code: Select all
using Ranorex.Plugin;
//To add the process name to the config
RawTextFlavor.Instance.ProcessNames.Add(new Regex("processname pattern"));
//To add the class name to the config
RawTextFlavor.Instance.ClassNames.Add(new Regex("classname pattern"));
But it was not described, where this code should be added. Is there a possibility to make an own codemodule for this, which will be executed every time a test of the testsuite is executed?
Thank you