$ pnpm dev
or to open extension as a web page
$ pnpm start
$ pnpm dev:win
or to open extension as a web page
$ pnpm start:win
example
folder:$ cd example
$ pnpm dev
The form schema can be edited via the extension UI or by uploading a custom JSON file
{
"name": "schema name",
"fields": [
{
"identifier": "field-id-1",
"action": "fill",
"value": "test input value"
},
{
"identifier": "field-id-2",
"action": "select",
"value": ["option 1"]
},
{
"identifier": "field-id-3",
"action": "click"
},
]
}