Many of command/assertion parameters accept templates. So you can use template variables and expressions. For example, page.goto("https://github.com/{{ USER }}/puppetry/") or TARGET.type("name{{ counter() }}")
Template variables
By using Settings/Template Variables panel we can define a set of variables per environment. For an instance, we can declare a separate target app URL for every environment (test.acme.com, stage.acme.com, www.acme.com). Before running/exporting test project we specify the desired environment and the corresponding template tags will be replaced with the value (URL) given for that environment.
Managing Variables
To edit template variables click on Project/Template variables in the main menu:
Template variables in the Project menu
Under the table Template variables you will find a manageable table with variables (by default it's empty):
Template variables panel
You can use this UI the same way to do with targets, suits, and test cases. The difference is that the displayed variables belong to the selected environment:
Selecting destination environment
As you add a new variable let's say to test environment it appears in all available environments. But when you update it's value, the value stays unique per environment.
Also note the edit action link next to the environment selector. When you click it you get a modal window where you can manage the list of environments:
Editing environments
After we assigned the variables and running the tests (or exporting them for CI) in the modal window we can choose what environment we target:
Destinating test run for a given environment
Template Syntax
Syntax
The tag makes Puppetry injecting the variable value assigned for the selected environment into the container string
Examples
Template variables can be also assigned dynamically. E.g. you can use page.assignVar to define a variable by using expressions or page.assignVarRemotely to define a variable by using REST API (learn more).
Template Expressions
Template expressions are basically functions that we may want to use for building template string.
Test step parameters supporting templates provided with a helper widget, which you can you to autofill the field: