check abstract method
Checks a checkbox or radio button.
selector is the CSS selector for the checkbox or radio button.
Example:
await browser.check('input[name="terms"]');
await browser.check('#newsletter-signup');
Implementation
FutureOr<void> check(String selector);