Skip to content

Instantly share code, notes, and snippets.

@aaugustin
aaugustin / ca-download-helper.js
Created January 22, 2023 11:33
Automate downloading documents from www.credit-agricole.fr
// Pagination is done on the client-side. Remove it.
document.querySelectorAll('tr[id^="ligne"]').forEach(tr => { tr.style.removeProperty("display") });
// There is a 30s mandatory wait between each click. Click one link every 40s.
var delay = 10;
document.querySelectorAll('tr[id^="ligne"] a[href*="ouvreTelechargement"]').forEach(a => {
var tr = a.closest('tr');
if (tr.querySelector('.imgbam-picto-nouveau') !== null) {
setTimeout(() => {
tr.style.setProperty("background-color", "chartreuse");