Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jadeallencook/584793dec6fa97d675ab107bab870c0b to your computer and use it in GitHub Desktop.
Save jadeallencook/584793dec6fa97d675ab107bab870c0b to your computer and use it in GitHub Desktop.
const rows = document.querySelectorAll('tr.mat-mdc-row');
let emailByUid = {};
for (const row of [...rows]) {
const email = row.querySelector('td:nth-child(1)').innerText;
const uid = row.querySelector('td:nth-child(5)').innerText;
if (email && uid) emailByUid[uid] = email;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment