Reference to a specific control used in a test plan step.
Map discovered controls to their Praman API methods for code generation.
const ref: AgentPlanControlRef = { controlId: 'createBtn', controlType: 'sap.m.Button', pramanMethod: "ui5.control({ controlType: 'sap.m.Button', properties: { text: 'Create' } }).press()",}; Copy
const ref: AgentPlanControlRef = { controlId: 'createBtn', controlType: 'sap.m.Button', pramanMethod: "ui5.control({ controlType: 'sap.m.Button', properties: { text: 'Create' } }).press()",};
Readonly
UI5 control ID discovered on the page.
Fully-qualified UI5 control type (e.g. sap.m.Button).
sap.m.Button
Praman fixture method call to interact with this control.
Reference to a specific control used in a test plan step.
Intent
Map discovered controls to their Praman API methods for code generation.
Example