We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 913bddd commit f61a347Copy full SHA for f61a347
src/WaitForHelper.ts
@@ -27,7 +27,6 @@ export class WaitForHelper {
27
* for the DOM to be stable before returning.
28
*/
29
async waitForStableDom(): Promise<void> {
30
- // TODO: use CPU mutplier
31
const stableDomObserver = await this.#page.evaluateHandle(timeout => {
32
let timeoutId: ReturnType<typeof setTimeout>;
33
function callback() {
@@ -77,7 +76,6 @@ export class WaitForHelper {
77
76
}
78
79
async waitForNavigationStarted() {
80
- // TODO: CPU mutliper
81
// Currently Puppeteer does not have API
82
// For when a navigation is about to start
83
const navigationStartedPromise = new Promise<boolean>(resolve => {
0 commit comments