Skip to content

Instantly share code, notes, and snippets.

@joelgriffith
Created July 8, 2017 20:25
Show Gist options
  • Save joelgriffith/4d2700a1c1e0abd75d0ffcc94f6bcec0 to your computer and use it in GitHub Desktop.
Save joelgriffith/4d2700a1c1e0abd75d0ffcc94f6bcec0 to your computer and use it in GitHub Desktop.
Navalia goto then click
const { Chrome } = require('navalia');
const chrome = new Chrome();
async function interactWithSearch() {
await chrome.goto('https://joelgriffith.github.io/navalia/');
await chrome.focus('#search-input');
await chrome.type('#search-input', 'coverage');
return chrome.done();
}
interactWithSearch();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment