Last active
July 9, 2024 15:19
-
-
Save heypoom/33d3578ceeabb15a3040fd9079564f37 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// First, go to https://shopee.co.th/user/purchase, and open DevTools. | |
// Step 1 - Run this code to scroll all the way to the bottom. | |
const timer = setInterval(() => scrollTo(0, 10000000), 800) | |
setTimeout(() => { | |
// Step 2 - Stop scrolling after 1 minute. | |
clearInterval(timer) | |
// Step 3 - Sum the total purchase price! | |
const total = [...document.querySelectorAll('.purchase-card-buttons__total-price')] | |
.map(n => parseInt(n.innerText.slice(1).replace(/,/g, ''))) | |
.reduce((a, b) => a + b) | |
console.log('Total =', total) | |
}, 60 * 1000) |
ไม่ทราบว่าตอนนี้ element's classname ถูกเปลี่ยนอีกแล้วหรอครับ ใช้โค้ดข้างบนแล้วรันไม่ได้
@PackChinoros ใช่ครับ ตอนนี้เปลี่ยนจาก ".isoXOF" เป็น "._1MS3t2" ได้เลยครับ
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
กลับมาดู script shopee ควรทำ BI analytics การซื้อของแต่ละคน 😂