@@ -5671,6 +5671,7 @@ <h1 class="title">Module <code>playwright.async_api</code></h1>
5671
5671
hasTouch: bool = None,
5672
5672
colorScheme: Literal["dark", "light", "no-preference"] = None,
5673
5673
acceptDownloads: bool = None,
5674
+ defaultBrowserType: str = None,
5674
5675
) -> "Page":
5675
5676
"""Browser.newPage
5676
5677
@@ -5736,6 +5737,7 @@ <h1 class="title">Module <code>playwright.async_api</code></h1>
5736
5737
hasTouch=hasTouch,
5737
5738
colorScheme=colorScheme,
5738
5739
acceptDownloads=acceptDownloads,
5740
+ defaultBrowserType=defaultBrowserType,
5739
5741
)
5740
5742
)
5741
5743
@@ -6392,6 +6394,7 @@ <h3>Methods</h3>
6392
6394
hasTouch: bool = None,
6393
6395
colorScheme: Literal["dark", "light", "no-preference"] = None,
6394
6396
acceptDownloads: bool = None,
6397
+ defaultBrowserType: str = None,
6395
6398
) -> "Page":
6396
6399
"""Browser.newPage
6397
6400
@@ -6457,6 +6460,7 @@ <h3>Methods</h3>
6457
6460
hasTouch=hasTouch,
6458
6461
colorScheme=colorScheme,
6459
6462
acceptDownloads=acceptDownloads,
6463
+ defaultBrowserType=defaultBrowserType,
6460
6464
)
6461
6465
)
6462
6466
@@ -6724,7 +6728,7 @@ <h2 id="returns">Returns</h2>
6724
6728
</details>
6725
6729
</dd>
6726
6730
<dt id="playwright.async_api.Browser.newPage"><code class="name flex">
6727
- <span>async def <span class="ident">newPage</span></span>(<span>self, viewport: Union[playwright.helper.IntSize, Literal[0]] = None, ignoreHTTPSErrors: bool = None, javaScriptEnabled: bool = None, bypassCSP: bool = None, userAgent: str = None, locale: str = None, timezoneId: str = None, geolocation: playwright.helper.Geolocation = None, permissions: List[str] = None, extraHTTPHeaders: Dict[str, str] = None, offline: bool = None, httpCredentials: playwright.helper.Credentials = None, deviceScaleFactor: int = None, isMobile: bool = None, hasTouch: bool = None, colorScheme: Literal['dark', 'light', 'no-preference'] = None, acceptDownloads: bool = None) ‑> <a title="playwright.async_api.Page" href="#playwright.async_api.Page">Page</a></span>
6731
+ <span>async def <span class="ident">newPage</span></span>(<span>self, viewport: Union[playwright.helper.IntSize, Literal[0]] = None, ignoreHTTPSErrors: bool = None, javaScriptEnabled: bool = None, bypassCSP: bool = None, userAgent: str = None, locale: str = None, timezoneId: str = None, geolocation: playwright.helper.Geolocation = None, permissions: List[str] = None, extraHTTPHeaders: Dict[str, str] = None, offline: bool = None, httpCredentials: playwright.helper.Credentials = None, deviceScaleFactor: int = None, isMobile: bool = None, hasTouch: bool = None, colorScheme: Literal['dark', 'light', 'no-preference'] = None, acceptDownloads: bool = None, defaultBrowserType: str = None ) ‑> <a title="playwright.async_api.Page" href="#playwright.async_api.Page">Page</a></span>
6728
6732
</code></dt>
6729
6733
<dd>
6730
6734
<div class="desc"><p>Browser.newPage</p>
@@ -6795,6 +6799,7 @@ <h2 id="returns">Returns</h2>
6795
6799
hasTouch: bool = None,
6796
6800
colorScheme: Literal["dark", "light", "no-preference"] = None,
6797
6801
acceptDownloads: bool = None,
6802
+ defaultBrowserType: str = None,
6798
6803
) -> "Page":
6799
6804
"""Browser.newPage
6800
6805
@@ -6860,6 +6865,7 @@ <h2 id="returns">Returns</h2>
6860
6865
hasTouch=hasTouch,
6861
6866
colorScheme=colorScheme,
6862
6867
acceptDownloads=acceptDownloads,
6868
+ defaultBrowserType=defaultBrowserType,
6863
6869
)
6864
6870
)</code></pre>
6865
6871
</details>
0 commit comments