This got a little stuck on a few of the `.click()` calls for me. Here's my version: const wait = () => new Promise(resolve => setTimeout(resolve, 1000)); const getElementsByAriaLabel = (label) => document.querySelectorAll(`[aria-label="${label}"]`); const getElementsByRoleAndWidth = (role, width) => Array.from(document.querySelectorAll(`[role="${role}"]`)).filter(el => el.clientWidth === width); const getElementsByTe…
Anyone using this may want to s/1000/2000/ on the first line.