I've got a working simple jmeter jmx with the plugin, reading the docs I've found how to override .properties files but right now my problem is that I have a folder with .csv files input data that I want to use in my test. The folder with the csv files is specified in an user.properties file as inputDataFolder=path/to/folder
and referenced in the jmx like ${inputDataFolder}file.csv
. It works really fine without maven but when I run it with the verify goal it doesn't works and throws:
Error in NonGUIDriver org.apache.jorphan.util.JMeterStopTestException: ModuleController:Register Fixed Customer has no selected Controller (did you rename some element in the path to target controller?), test was shutdown as a consequence
The error suggests me a mistake defining the path to the csv folder, but I don't know how to do it correctly with the plugin. Any help is really appreciated.
PS: This is the structure that I have under src/test/jmeter
jmeter/ ├── foldercsv/ ├── test.jmx ├── user.properties