mfulton26/webautomator

Support matching strings while ignoring case without needing to use RegExp's

Opened this issue · 0 comments

The following works but requires using regular expressions which require escaping special characters, etc.:

await automator.set(/first name/i).to('Joyce');

It would be nice to have some WebAutomator option to allow matching strings while ignoring case. e.g.:

automator.manage().setIgnoreCase(true);