I have a Ranorex solution which consist of several projects (e.g. LoginScreen, MainApplication, ..). Each projects consists of modules (e.g. LoginScreen consist of LoginModule, LogoutModule). Additionally I have a main test suite (TSMain) and some other test suites (TS1, TS2)
Code: Select all
RanorexSolution
+-LoginScreen
+-LoginModule
+-LogoutModule
+-MainApplication
+-ModuleA
+-...
+-TSMain
+-TS1
+-TS2
All test suites reference the "LoginScreen" and "MainApplication" but only tests within the TSMain run successfully.
When I use the same modules within any other test set, I just get an error like
Code: Select all
The module 'LoginModule' (with ID {894ccf77-acfa-400f-b790-eeb2d9beab84}) could not be found.
The id is correct, so what I do wrong? I also looked into this post:
http://www.ranorex.com/forum/module-cou ... t4289.html, but this refers to different solutions, which is not the case for me. I run all in the same solution.