ReadyAPI/TestEngine: Could use some guidance re paths to referenced Excel data files ...
I've got a ReadyAPI project that works fine for me locally. It also works with TestEngine when I export the project to a .zip file.
Previously, the DataSource object pointed to the Excel data file (used for input and output) with syntax like this, but I would get errors when running with TestEngine, it couldn't find the data file:
Example Path To Data File Syntax: ${#TestCase#DataPath}/${#TestCase#tcFileName}
So in the project in ReadyAPI I switched the syntax to look similar to this and it now works in TestEngine:
Example Path To Data File Syntax: c:\repos\MyProj1\Project\dev\data
What is the recommended way to deal with this? And when I send this project to a coworker to import on his machine, will it not work if doesn't import the project into the *exact* same folder structure?
Thanks very much in advance.