feat: move scrollDown & scrollUp inside window

This commit is contained in:
karishmas6
2024-08-17 23:27:17 +05:30
parent 985c1034d3
commit 794d540f81

View File

@@ -369,6 +369,8 @@ async function clickNextPagination(selector, scrapedData, limit) {
}
}
}
// Add the record to the scrapedData array
scrapedData.push(record);
}
else {
@@ -425,4 +427,43 @@ async function clickNextPagination(selector, scrapedData, limit) {
return results;
};
window.scrollDown = async(selector, limit) {
let previousHeight = 0;
let itemsLoaded = 0;
while (itemsLoaded < limit) {
window.scrollBy(0, window.innerHeight);
await new Promise(resolve => setTimeout(resolve, 1000));
const currentHeight = document.body.scrollHeight;
if (currentHeight === previousHeight) {
break; // No more items to load
}
previousHeight = currentHeight;
itemsLoaded += document.querySelectorAll(selector).length;
}
}
window.scrollUp = async(selector, limit) {
let previousHeight = 0;
let itemsLoaded = 0;
while (itemsLoaded < limit) {
window.scrollBy(0, -window.innerHeight);
await new Promise(resolve => setTimeout(resolve, 1000));
const currentHeight = document.body.scrollHeight;
if (currentHeight === previousHeight) {
break; // No more items to load
}
previousHeight = currentHeight;
itemsLoaded += document.querySelectorAll(selector).length;
}
}
})(window);