Skip to content

Commit d74b61c

Browse files
committed
track waitForTimeout in debugger
1 parent d771168 commit d74b61c

File tree

1 file changed

+7
-0
lines changed
  • src/main/runner/shims/browser/proxies

1 file changed

+7
-0
lines changed

src/main/runner/shims/browser/proxies/page.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ export function pageProxy(target: Page): ProxyOptions<Page> {
5353
}
5454
},
5555

56+
waitForTimeout(timeout: number) {
57+
return {
58+
method: 'page.waitForTimeout',
59+
timeout,
60+
}
61+
},
62+
5663
close() {
5764
return {
5865
method: 'page.close',

0 commit comments

Comments
 (0)