CoolFace
Modelpublic

candypunk/NanoJev-Web

sourceHugging Faceotherupdated 5d agoView on Hugging Face
1likes26downloads
browser-task.json35 linesDownload Raw Back to examples
1{2  "name": "contact-form",3  "url": "http://127.0.0.1:9000/contact",4  "allowedOrigins": [5    "http://127.0.0.1:9000"6  ],7  "controls": [8    {9      "id": "name",10      "op": "fill",11      "selector": "#name",12      "label": "Name",13      "value": "Test Contact"14    },15    {16      "id": "agree",17      "op": "check",18      "selector": "#agree",19      "label": "Use test data"20    },21    {22      "id": "save",23      "op": "click",24      "purpose": "submit",25      "selector": "#save",26      "label": "Save"27    }28  ],29  "success": {30    "selector": "#status",31    "kind": "text",32    "value": "Saved"33  }34}35