Created
April 6, 2024 08:14
-
-
Save jadeallencook/584793dec6fa97d675ab107bab870c0b to your computer and use it in GitHub Desktop.
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 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