Skip to content

Instantly share code, notes, and snippets.

@mendelgusmao
Created September 28, 2023 02:55
Show Gist options
  • Save mendelgusmao/acddc3b4b79c2390fc20a147a3343749 to your computer and use it in GitHub Desktop.
Save mendelgusmao/acddc3b4b79c2390fc20a147a3343749 to your computer and use it in GitHub Desktop.
let table = [...document.querySelectorAll('table[width="550"] > tbody')][1];
let items = [...table.querySelectorAll("tr")].map(
tr => [...tr.querySelectorAll("td")].map(
td => /good/.test(td.querySelector("img")?.src) || td.innerText || false
)
).map(
it => [it.slice(0, 2), it.slice(3, 5)]
)
.flat()
.filter(it => it.length);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment