Initial rrweb SGrobot skill package

This commit is contained in:
2026-06-24 09:45:48 +08:00
commit 27a0ebe1d7
17 changed files with 1554 additions and 0 deletions

25
examples/basic-trace.json Normal file
View File

@@ -0,0 +1,25 @@
{
"id": "expense-approval",
"name": "费用审批",
"description": "打开审批页,填写意见并点击同意。",
"startUrl": "https://oa.example.test/expense/123",
"steps": [
{
"type": "assertText",
"text": "费用审批",
"label": "确认在审批页"
},
{
"type": "fill",
"selector": "textarea[name='comment']",
"value": "同意",
"label": "填写审批意见"
},
{
"type": "click",
"selector": "button[data-action='approve']",
"label": "点击同意",
"risk": "write"
}
]
}