Skip to content

Instantly share code, notes, and snippets.

@canimus
Created February 1, 2021 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save canimus/0f8561996cb375cde5732434d8162660 to your computer and use it in GitHub Desktop.
Save canimus/0f8561996cb375cde5732434d8162660 to your computer and use it in GitHub Desktop.
Count tags in web page with webdriverio
browser.execute(
() => {
return Array.from(document.querySelectorAll("*")).map(e=>e.tagName.toLowerCase())
})
.reduce((a,b) => {a[b]=(a[b] || 0)+1; return a}, {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment