Scenario 1:
- Open the WD.
- Create an element with external tool.
- On the "Parameters" page of the element configuration wizard add three parameter with "Argument name" set to "param", "param2", "param3".
- On the "Command" page paste the following command:
%TOOL_PATH% $param $param2 $param3
- Set up different values for the created parameters.
- Run a workflow with the created element.
- Check the execution string.
Current result: $param, $param2 and $param3 were replaced by the value, specified for "param".
Expected result:- $param was replaced by the value specified for "param".
- $param2 was replaced by the value specified for "param2".
- $param3 was replaced by the value specified for "param3".
Scenario 2:
- Open the WD.
- Create an element with external tool.
- On the "Parameters" page of the element configuration wizard add three parameter with "Argument name" set to "param", "param2", "param3".
- On the "Command" page paste the following command:
%TOOL_PATH% -a $param -b $param2 -c $param3
- Set up different values for the created parameters.
- Run a workflow with the created element.
- Check the execution string.
Current result: there is only -a -b -c without parameter values in the execution string.
Expected result:- $param was replaced by the value specified for "param".
- $param2 was replaced by the value specified for "param2".
- $param3 was replaced by the value specified for "param3".