Just For U Coupon Clipper

Clip all the coupons on the current (as of 5/21/2020) Safeway Just For U coupon system.

< Valutazione su Just For U Coupon Clipper

Recensione: OK - lo script funziona, ma ha degli errori.

§
Pubblicato: 12/08/2021

Updated script. :) 8/12/2021

// ==UserScript==
// @name Safeway Coupon Adder
// @version 1
// @grant none
// ==/UserScript==

/// While the load more button exists, load more
function loadUntilDone() {
let buttons = document.getElementsByClassName('load-more')

if (buttons.length > 0) {
// Still a load more button. Click until it goes away

console.log("Loading more coupons...")

try {
buttons[0].click()
} catch (e) {
console.error(e)
}

// Give it some time to load.
setTimeout(loadUntilDone, 1000)
} else {
// Now find and click all the coupons
console.log("Clicking all coupons...")
clickAllUnclicked(document.querySelectorAll('.grid-coupon-btn'))

}
}

/// Resolve after the given delay
async function sleep(delay) {
return new Promise((resolve, reject) => {
setTimeout(resolve, delay)
})
}

/// Click on every element in the given collection, at a sensible pace, unless alredy clicked
async function clickAllUnclicked(elems) {
for (let i = 0; i < elems.length; i++) {
let elem = elems[i];
if (!elem.classList.contains('btn grid-coupon-btn btn-default')) {
console.log("Click element " + i + ": " + elem)
elem.click()
await sleep(100)
}
}
console.log("All coupons clicked!")
}

// Wait for the page to load and then start collecting coupons
console.log("Waiting to load coupons")
setTimeout(loadUntilDone, 4000)

Adam NovakAutore
§
Pubblicato: 28/10/2022

I am going to merge this.

Pubblica risposta

Accedi per pubblicare una risposta.