Is your feature request related to a problem? Please describe.
As a test engineer I need an option to generate random strings with only a-Z chars
Describe the solution you'd like
New case in Scenario var - com/cucumber/utils/context/vars/ScenarioVars.java - for string-random
case "string-random":
return RandomStringUtils.random(new Random().nextInt(50), true, false);
Is your feature request related to a problem? Please describe.
As a test engineer I need an option to generate random strings with only a-Z chars
Describe the solution you'd like
New case in Scenario var - com/cucumber/utils/context/vars/ScenarioVars.java - for string-random
case "string-random":
return RandomStringUtils.random(new Random().nextInt(50), true, false);