You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: playwright/async_api.py
+38Lines changed: 38 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2295,6 +2295,7 @@ async def dblclick(
2295
2295
button: Literal["left", "middle", "right"] =None,
2296
2296
timeout: int=None,
2297
2297
force: bool=None,
2298
+
noWaitAfter: bool=None,
2298
2299
) ->NoneType:
2299
2300
"""Frame.dblclick
2300
2301
@@ -2326,6 +2327,8 @@ async def dblclick(
2326
2327
Maximum time in milliseconds, defaults to 30 seconds, pass `0` to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
2327
2328
force : Optional[bool]
2328
2329
Whether to bypass the actionability checks. Defaults to `false`.
2330
+
noWaitAfter : Optional[bool]
2331
+
Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults to `false`.
2329
2332
"""
2330
2333
returnmapping.from_maybe_impl(
2331
2334
awaitself._impl_obj.dblclick(
@@ -2336,6 +2339,7 @@ async def dblclick(
2336
2339
button=button,
2337
2340
timeout=timeout,
2338
2341
force=force,
2342
+
noWaitAfter=noWaitAfter,
2339
2343
)
2340
2344
)
2341
2345
@@ -4314,6 +4318,7 @@ async def dblclick(
4314
4318
button: Literal["left", "middle", "right"] =None,
4315
4319
timeout: int=None,
4316
4320
force: bool=None,
4321
+
noWaitAfter: bool=None,
4317
4322
) ->NoneType:
4318
4323
"""Page.dblclick
4319
4324
@@ -4347,6 +4352,8 @@ async def dblclick(
4347
4352
Maximum time in milliseconds, defaults to 30 seconds, pass `0` to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
4348
4353
force : Optional[bool]
4349
4354
Whether to bypass the actionability checks. Defaults to `false`.
4355
+
noWaitAfter : Optional[bool]
4356
+
Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults to `false`.
Emulates `'prefers-colors-scheme'` media feature, supported values are `'light'`, `'dark'`, `'no-preference'`. See page.emulateMedia(options) for more details. Defaults to '`light`'.
5617
5627
acceptDownloads : Optional[bool]
5618
5628
Whether to automatically download all the attachments. Defaults to `false` where all the downloads are canceled.
5629
+
videosPath : Optional[str]
5630
+
Enables video recording for all pages to `videosPath` folder. If not specified, videos are not recorded.
Specifies dimensions of the automatically recorded video. Can only be used if `videosPath` is set. If not specified the size will be equal to `viewport`. If `viewport` is not configured explicitly the video size defaults to 1280x720. Actual picture of the page will be scaled down if necessary to fit specified size.
Emulates `'prefers-colors-scheme'` media feature, supported values are `'light'`, `'dark'`, `'no-preference'`. See page.emulateMedia(options) for more details. Defaults to '`light`'.
5706
5724
acceptDownloads : Optional[bool]
5707
5725
Whether to automatically download all the attachments. Defaults to `false` where all the downloads are canceled.
5726
+
videosPath : Optional[str]
5727
+
Enables video recording for all pages to `videosPath` folder. If not specified, videos are not recorded.
Specifies dimensions of the automatically recorded video. Can only be used if `videosPath` is set. If not specified the size will be equal to `viewport`. If `viewport` is not configured explicitly the video size defaults to 1280x720. Actual picture of the page will be scaled down if necessary to fit specified size.
Specifies dimensions of the automatically recorded video. Can only be used if `videosPath` is set. If not specified the size will be equal to `viewport`. If `viewport` is not configured explicitly the video size defaults to 1280x720. Actual picture of the page will be scaled down if necessary to fit specified size.
Copy file name to clipboardExpand all lines: playwright/sync_api.py
+38Lines changed: 38 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2377,6 +2377,7 @@ def dblclick(
2377
2377
button: Literal["left", "middle", "right"] =None,
2378
2378
timeout: int=None,
2379
2379
force: bool=None,
2380
+
noWaitAfter: bool=None,
2380
2381
) ->NoneType:
2381
2382
"""Frame.dblclick
2382
2383
@@ -2408,6 +2409,8 @@ def dblclick(
2408
2409
Maximum time in milliseconds, defaults to 30 seconds, pass `0` to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
2409
2410
force : Optional[bool]
2410
2411
Whether to bypass the actionability checks. Defaults to `false`.
2412
+
noWaitAfter : Optional[bool]
2413
+
Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults to `false`.
2411
2414
"""
2412
2415
returnmapping.from_maybe_impl(
2413
2416
self._sync(
@@ -2419,6 +2422,7 @@ def dblclick(
2419
2422
button=button,
2420
2423
timeout=timeout,
2421
2424
force=force,
2425
+
noWaitAfter=noWaitAfter,
2422
2426
)
2423
2427
)
2424
2428
)
@@ -4488,6 +4492,7 @@ def dblclick(
4488
4492
button: Literal["left", "middle", "right"] =None,
4489
4493
timeout: int=None,
4490
4494
force: bool=None,
4495
+
noWaitAfter: bool=None,
4491
4496
) ->NoneType:
4492
4497
"""Page.dblclick
4493
4498
@@ -4521,6 +4526,8 @@ def dblclick(
4521
4526
Maximum time in milliseconds, defaults to 30 seconds, pass `0` to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
4522
4527
force : Optional[bool]
4523
4528
Whether to bypass the actionability checks. Defaults to `false`.
4529
+
noWaitAfter : Optional[bool]
4530
+
Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults to `false`.
Emulates `'prefers-colors-scheme'` media feature, supported values are `'light'`, `'dark'`, `'no-preference'`. See page.emulateMedia(options) for more details. Defaults to '`light`'.
5847
5857
acceptDownloads : Optional[bool]
5848
5858
Whether to automatically download all the attachments. Defaults to `false` where all the downloads are canceled.
5859
+
videosPath : Optional[str]
5860
+
Enables video recording for all pages to `videosPath` folder. If not specified, videos are not recorded.
Specifies dimensions of the automatically recorded video. Can only be used if `videosPath` is set. If not specified the size will be equal to `viewport`. If `viewport` is not configured explicitly the video size defaults to 1280x720. Actual picture of the page will be scaled down if necessary to fit specified size.
Emulates `'prefers-colors-scheme'` media feature, supported values are `'light'`, `'dark'`, `'no-preference'`. See page.emulateMedia(options) for more details. Defaults to '`light`'.
5938
5956
acceptDownloads : Optional[bool]
5939
5957
Whether to automatically download all the attachments. Defaults to `false` where all the downloads are canceled.
5958
+
videosPath : Optional[str]
5959
+
Enables video recording for all pages to `videosPath` folder. If not specified, videos are not recorded.
Specifies dimensions of the automatically recorded video. Can only be used if `videosPath` is set. If not specified the size will be equal to `viewport`. If `viewport` is not configured explicitly the video size defaults to 1280x720. Actual picture of the page will be scaled down if necessary to fit specified size.
Specifies dimensions of the automatically recorded video. Can only be used if `videosPath` is set. If not specified the size will be equal to `viewport`. If `viewport` is not configured explicitly the video size defaults to 1280x720. Actual picture of the page will be scaled down if necessary to fit specified size.
0 commit comments