Created
July 8, 2017 20:25
-
-
Save joelgriffith/4d2700a1c1e0abd75d0ffcc94f6bcec0 to your computer and use it in GitHub Desktop.
Navalia goto then click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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