Remove obsolete optimization and resource monitoring documentation; update scenario management to ensure user directory saving and template protection.

This commit is contained in:
2025-08-06 17:33:03 +02:00
parent a31b01238a
commit 1e8123efdb
11 changed files with 546 additions and 521 deletions
@@ -0,0 +1,63 @@
{
"name": "Web Browser Example",
"steps": [
{
"name": "Refresh Page",
"condition": "OR",
"images": [],
"actions": [
{
"type": "key",
"params": {
"key": "F5"
}
},
{
"type": "delay",
"params": {
"duration": 2.0
}
}
]
},
{
"name": "Scroll Down",
"condition": "OR",
"images": [],
"actions": [
{
"type": "scroll",
"params": {
"direction": "down",
"amount": 300
}
},
{
"type": "delay",
"params": {
"duration": 0.5
}
}
]
},
{
"name": "Go Back",
"condition": "OR",
"images": [],
"actions": [
{
"type": "key",
"params": {
"key": "Alt+Left"
}
},
{
"type": "delay",
"params": {
"duration": 1.0
}
}
]
}
]
}