Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
Then(/^the Google search form exists$/, async () => {
await client.assert.visible('input[name="q"]');
});
Then(/^the title is "(.*?)"$/, async text => {
await client.assert.CheckTitle(text);
});