Skip to content

Instantly share code, notes, and snippets.

View cnscorpions's full-sized avatar
🎯
Focusing

Gavin Chan cnscorpions

🎯
Focusing
View GitHub Profile
@cnscorpions
cnscorpions / gist:40797369d2105f009c2650f267692efb
Last active December 20, 2021 16:34
Scroll to webpage bottom
/**
* scroll to bottom
* @param {*} page
*/
(async () => {
await new Promise((resolve, reject) => {
var totalHeight = 0;
var distance = 400;
var timer = setInterval(() => {
var scrollHeight = document.body.scrollHeight;