I have two thread groups from that in one thread I have two include controllers. but I want to provide relative path instead of absolute path so anyone can use this project in their system. as I am uploading this on GitHub. enter image description here
Asked
Active
Viewed 319 times
1 Answers
0
If the external .jmx script lives at the same folder - just use its filename like
Test Fragment.jmx
in the Include ControllerIf it resides under a folder - specify its relative location
somefolder/Test Fragment.jmx
For the parent folder:
../somefolder/Test Fragment.jmx
There is
includecontroller.prefix
property which is being added to the filename specified so if there is a common location for all external JMX files/test fragments you might want to set this property
More information:

Dmitri T
- 159,985
- 5
- 83
- 133
-
Thanks. its working as .jmx script is in the same folder. – Pooja naik Aug 19 '21 at 12:04