Filling Inputs

To fill an input, use the fill instruction with the CSS/XPath selector of the input you want to fill and the value you want to fill it with.

If you want to fill an input whose CSS/XPath selector is #input_1 with the value value_1, you need to use this JavaScript scenario:

JSON
1
{
2
"instructions": [
3
{"fill": ["#input_1", "value_1"]}
4
]
5
}