Skip to content

Instantly share code, notes, and snippets.

@dantheman3333
Created January 15, 2019 19:56
Show Gist options
  • Save dantheman3333/7ae76e50e8778805c8d04dc8d0fb4692 to your computer and use it in GitHub Desktop.
Save dantheman3333/7ae76e50e8778805c8d04dc8d0fb4692 to your computer and use it in GitHub Desktop.
Add all American Express offers
let buttons = Array.from(document.getElementsByClassName('btn offer-cta btn-secondary btn-sm btn-fluid'));
let offerButtons = buttons.filter(button => button.title == "Add to Card");
offerButtons.forEach(button => {
console.log("Clicked on Add to Card")
button.click()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment