How to run Step Group from the code
Breezz framework allows you to run Step Group from the Apex Code. To do this we need to use the forvendi.BreezzApi.STEPS.runGroup method. Let’s test this functionality by running below code. You can open Debug Console → Anonymous Apex:
// preparing execution context
Account[] accounts = new Account[]{new Account(Name='Test Account')};
// running previously created 'ToUpperCaseFieldSteps' group
forvendi.BreezzApi.STEPS.runGroup('ToUpperCaseFieldSteps', accounts);
// displaying results
System.debug(accounts);
As a result you should see that the Name of the Account has been changed from: Test Account to the TEST_ACCOUNT value.