Skip to content

Instantly share code, notes, and snippets.

View BytefishMedium's full-sized avatar

Shuai Li 李帅 BytefishMedium

View GitHub Profile
var followers = [];
var totalFollowers = getTotalFollowers()
console.log(`You have ${totalFollowers} follower, crawler start now.`)
var timer = setInterval(() => {
let liElements = document.querySelectorAll("ul > li");;
let isEnding = followers.length + liElements.length == totalFollowers;