Skip to content

Instantly share code, notes, and snippets.

@awayken
Created March 18, 2025 15:38
Show Gist options
  • Save awayken/0bb57c53adf89bf7bb5569fb1b6501d9 to your computer and use it in GitHub Desktop.
Save awayken/0bb57c53adf89bf7bb5569fb1b6501d9 to your computer and use it in GitHub Desktop.
const emailSelector = '[data-selenium-test="contact-chicklet-email"]';
const emailItem = document.querySelector(emailSelector);
const email = emailItem.innerText;
const stripeUrl = `https://dashboard.stripe.com/search?query=${encodeURIComponent(email)}%20is%3Acustomer`;
window.open(stripeUrl, "stripeWindow");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment