Manage data and states
Share data between scripts using the global output object, namespaces, and the maestro.copiedText property.
The output object
output object// myScript.js
output.result = 'Hello World'- runScript: myScript.js
- inputText: ${output.result}Output Namespacing
output.auth = {
token: "abc-123",
expiry: 3600
};output.profile = {
username: "MaestroUser",
role: "Admin"
};Shared Functions
The maestro Object
maestro ObjectProperty
Description
Capturing UI Text
Next steps
Last updated