Overview: About environment variables
In the QA Wolf platform, environment variables are encrypted constants scoped to a specific environment. You can use the same variable across environments by reusing the same name in each environment and setting the appropriate value for that environment (for example, BASE_URL in Staging vs Production). QA Wolf doesn’t enforce cross-environment consistency—this pattern relies on naming conventions.Prerequisite:How to: Declare and manage environment variables

How to: Call an env variable
Call an environment variable in your code by using theprocess.env object.
In this example, we use the standard Playwright page.goto function to open the location defined in the BASE_URL environment variable.
