Enhancing for getting contact results, which avoiding an error from the chat history deleted in Line app, then sent someone messages from matrix client.
This commit is contained in:
parent
5a57342446
commit
703a08c84d
@ -82,7 +82,7 @@ export default class MessagesPuppeteer {
|
|||||||
`--window-size=${MessagesPuppeteer.viewport.width},${MessagesPuppeteer.viewport.height+120}`,
|
`--window-size=${MessagesPuppeteer.viewport.width},${MessagesPuppeteer.viewport.height+120}`,
|
||||||
]
|
]
|
||||||
if (MessagesPuppeteer.noSandbox) {
|
if (MessagesPuppeteer.noSandbox) {
|
||||||
args = args.concat(`--no-sandbox`)
|
args.push(`--no-sandbox`)
|
||||||
}
|
}
|
||||||
|
|
||||||
this.browser = await puppeteer.launch({
|
this.browser = await puppeteer.launch({
|
||||||
@ -732,7 +732,7 @@ export default class MessagesPuppeteer {
|
|||||||
async _getWholeContactResults(page, distance) {
|
async _getWholeContactResults(page, distance) {
|
||||||
await page.bringToFront()
|
await page.bringToFront()
|
||||||
await page.waitForSelector("#contact_wrap_friends > ul.MdCMN03List")
|
await page.waitForSelector("#contact_wrap_friends > ul.MdCMN03List")
|
||||||
|
const results = []
|
||||||
const contactTotalCount =0
|
const contactTotalCount =0
|
||||||
this.log(` distance is ${distance}`)
|
this.log(` distance is ${distance}`)
|
||||||
let incred = 0
|
let incred = 0
|
||||||
@ -742,7 +742,6 @@ export default class MessagesPuppeteer {
|
|||||||
return Number.parseInt(element?.innerText) || 0
|
return Number.parseInt(element?.innerText) || 0
|
||||||
})
|
})
|
||||||
this.log(` contact_friend_count is ${foundContactCount}`)
|
this.log(` contact_friend_count is ${foundContactCount}`)
|
||||||
//infiniting contact list scrolling
|
|
||||||
while (incred <= distance) {
|
while (incred <= distance) {
|
||||||
if (foundContactCount <= contactTotalCount) {
|
if (foundContactCount <= contactTotalCount) {
|
||||||
return
|
return
|
||||||
@ -823,7 +822,7 @@ export default class MessagesPuppeteer {
|
|||||||
const leg = parseInt(ulstyleheight, 10)
|
const leg = parseInt(ulstyleheight, 10)
|
||||||
this.log(`found contact_wrap_friends height is ${leg}px`)
|
this.log(`found contact_wrap_friends height is ${leg}px`)
|
||||||
this.log(`starting to scroll to buttom`)
|
this.log(`starting to scroll to buttom`)
|
||||||
await this._getWholeContactResults(this.page, leg)
|
const results = await this._getWholeContactResults(this.page, leg)
|
||||||
|
|
||||||
this.log(`finished to scroll to buttom`)
|
this.log(`finished to scroll to buttom`)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user