mfulton26/webautomator

Add support for setting checkbox values to true/false explicitly

Opened this issue · 0 comments

e.g.

await automator.set('I confirm that these details are accurate.').to(true); // or `false`

in lieu of

await automator.click('I confirm that these details are accurate.');

which only toggles the state of the checkbox but does not know if it is setting it to true (checked) or false (not checked).