|
|
|
@ -704,9 +704,10 @@ class Site {
|
|
|
|
|
text = await this.promiseTimeout(
|
|
|
|
|
(
|
|
|
|
|
await this.promiseTimeout(
|
|
|
|
|
page.evaluateHandle(() =>
|
|
|
|
|
page.evaluateHandle(
|
|
|
|
|
() =>
|
|
|
|
|
// eslint-disable-next-line unicorn/prefer-text-content
|
|
|
|
|
document.body.innerText.replace(/\s+/g, ' ').slice(0, 25000)
|
|
|
|
|
document.body.innerText // .replace(/\s+/g, ' ').slice(0, 25000)
|
|
|
|
|
),
|
|
|
|
|
{ jsonValue: () => '' },
|
|
|
|
|
'Timeout (text)'
|
|
|
|
|