mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-11-30 08:59:59 +00:00
143 lines
2.1 KiB
Plaintext
143 lines
2.1 KiB
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`build plans > hover 1`] = `
|
|
[
|
|
{
|
|
"locate": {
|
|
"prompt": "OK button",
|
|
"searchArea": "the cookie prompt",
|
|
},
|
|
"param": {
|
|
"prompt": "OK button",
|
|
"searchArea": "the cookie prompt",
|
|
},
|
|
"thought": "",
|
|
"type": "Locate",
|
|
},
|
|
{
|
|
"locate": {
|
|
"prompt": "OK button",
|
|
"searchArea": "the cookie prompt",
|
|
},
|
|
"param": null,
|
|
"thought": "",
|
|
"type": "Hover",
|
|
},
|
|
]
|
|
`;
|
|
|
|
exports[`build plans > input 1`] = `
|
|
[
|
|
{
|
|
"locate": {
|
|
"prompt": "OK button",
|
|
},
|
|
"param": {
|
|
"prompt": "OK button",
|
|
},
|
|
"thought": "",
|
|
"type": "Locate",
|
|
},
|
|
{
|
|
"locate": {
|
|
"prompt": "OK button",
|
|
},
|
|
"param": {
|
|
"value": "OK",
|
|
},
|
|
"thought": "",
|
|
"type": "Input",
|
|
},
|
|
]
|
|
`;
|
|
|
|
exports[`build plans > keyboardPress 1`] = `
|
|
[
|
|
{
|
|
"locate": undefined,
|
|
"param": {
|
|
"value": "OK",
|
|
},
|
|
"thought": "",
|
|
"type": "KeyboardPress",
|
|
},
|
|
]
|
|
`;
|
|
|
|
exports[`build plans > scroll 1`] = `
|
|
[
|
|
{
|
|
"locate": undefined,
|
|
"param": {
|
|
"direction": "down",
|
|
"distance": 100,
|
|
"scrollType": "once",
|
|
},
|
|
"thought": "",
|
|
"type": "Scroll",
|
|
},
|
|
]
|
|
`;
|
|
|
|
exports[`build plans > scroll with locate 1`] = `
|
|
[
|
|
{
|
|
"locate": {
|
|
"prompt": "OK button",
|
|
},
|
|
"param": {
|
|
"prompt": "OK button",
|
|
},
|
|
"thought": "",
|
|
"type": "Locate",
|
|
},
|
|
{
|
|
"locate": {
|
|
"prompt": "OK button",
|
|
},
|
|
"param": {
|
|
"direction": "right",
|
|
"scrollType": "untilRight",
|
|
},
|
|
"thought": "",
|
|
"type": "Scroll",
|
|
},
|
|
]
|
|
`;
|
|
|
|
exports[`build plans > sleep 1`] = `
|
|
[
|
|
{
|
|
"locate": null,
|
|
"param": {
|
|
"timeMs": 1000,
|
|
},
|
|
"thought": "",
|
|
"type": "Sleep",
|
|
},
|
|
]
|
|
`;
|
|
|
|
exports[`build plans > tap 1`] = `
|
|
[
|
|
{
|
|
"locate": {
|
|
"prompt": "OK button",
|
|
},
|
|
"param": {
|
|
"prompt": "OK button",
|
|
},
|
|
"thought": "",
|
|
"type": "Locate",
|
|
},
|
|
{
|
|
"locate": {
|
|
"prompt": "OK button",
|
|
},
|
|
"param": null,
|
|
"thought": "",
|
|
"type": "Tap",
|
|
},
|
|
]
|
|
`;
|