This file contains 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
// This script can be run in the browser console | |
// Just navigate to https://www.bjs.com/myCoupons and execute the script | |
// This script will clip all the coupons on the current page | |
// | |
// Created on 10/13/22 | |
let buttons = document.getElementsByClassName('mt-2 btn gray-btn'); | |
for (let i = 0; i < buttons.length; i++) { | |
buttons[i].click(); | |
} |