Skip to content

Instantly share code, notes, and snippets.

@anthonyjdella
Created March 21, 2018 01:44
Show Gist options
  • Select an option

  • Save anthonyjdella/d20b8ef328a5529610139d9a6e2cea2e to your computer and use it in GitHub Desktop.

Select an option

Save anthonyjdella/d20b8ef328a5529610139d9a6e2cea2e to your computer and use it in GitHub Desktop.
let jobListLength = await page.evaluate((sel) => {
let jobSelectorID = document.getElementById(sel);
let jobSelectorTagName = jobSelectorID.getElementsByTagName("li");
return jobSelectorTagName.length;
}, JOB_SELECTOR_ID);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment