I create some features/functions from first Thread Group and put them into a JMeter Property:
props.put("FUNCTIONS", new function());
Then I would like to call those features/functions in WebDriver Sampler of the other Thread Groups.
In normal way (BSF, Beanshell or JSR223), just using:
props.get("FUNCTIONS")
But how to do this in WebDriver Sampler?
There is the same question related to vars here :
- How to pass variable in Webdriver-Sampler | Jmeter Webdriver
- How to set JMeter Vars from within WebDriver Sampler?
Could anyone please help me?
Thanks in advance.