formating & add the missing function

This commit is contained in:
DESKTOP-O1U24RQ\Kevin_Yu 2022-06-16 23:22:06 +08:00
parent 703a08c84d
commit 7a10061384
1 changed files with 81 additions and 77 deletions

View File

@ -729,10 +729,13 @@ export default class MessagesPuppeteer {
return `#joined_group_list_body > li[data-chatid="${id}"]`
}
_contactCountSelector() {
return `#contact_wrap_friends .MdLFT04Head._contactlist_header span[id=contact_friend_count]`
}
async _getWholeContactResults(page, distance) {
await page.bringToFront()
await page.waitForSelector("#contact_wrap_friends > ul.MdCMN03List")
const results = []
const contactTotalCount = 0
this.log(` distance is ${distance}`)
let incred = 0
@ -742,6 +745,7 @@ export default class MessagesPuppeteer {
return Number.parseInt(element?.innerText) || 0
})
this.log(` contact_friend_count is ${foundContactCount}`)
//infiniting contact list scrolling
while (incred <= distance) {
if (foundContactCount <= contactTotalCount) {
return
@ -822,7 +826,7 @@ export default class MessagesPuppeteer {
const leg = parseInt(ulstyleheight, 10)
this.log(`found contact_wrap_friends height is ${leg}px`)
this.log(`starting to scroll to buttom`)
const results = await this._getWholeContactResults(this.page, leg)
await this._getWholeContactResults(this.page, leg)
this.log(`finished to scroll to buttom`)
}