(min = 250, max = 850)
| 401 | } |
| 402 | |
| 403 | async function humanPause(min = 250, max = 850) { |
| 404 | const duration = Math.floor(Math.random() * (max - min + 1)) + min; |
| 405 | await sleep(duration); |
| 406 | } |
| 407 | |
| 408 | // Auto-report ready on load |
| 409 | // Skip ready signal from child iframes of mail pages to avoid overwriting the top frame's registration |
no test coverage detected