Skip to content

Commit 16f9121

Browse files
committed
deploy: 048cc22
1 parent 9036093 commit 16f9121

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

async_api.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5671,6 +5671,7 @@ <h1 class="title">Module <code>playwright.async_api</code></h1>
56715671
hasTouch: bool = None,
56725672
colorScheme: Literal[&#34;dark&#34;, &#34;light&#34;, &#34;no-preference&#34;] = None,
56735673
acceptDownloads: bool = None,
5674+
defaultBrowserType: str = None,
56745675
) -&gt; &#34;Page&#34;:
56755676
&#34;&#34;&#34;Browser.newPage
56765677

@@ -5736,6 +5737,7 @@ <h1 class="title">Module <code>playwright.async_api</code></h1>
57365737
hasTouch=hasTouch,
57375738
colorScheme=colorScheme,
57385739
acceptDownloads=acceptDownloads,
5740+
defaultBrowserType=defaultBrowserType,
57395741
)
57405742
)
57415743

@@ -6392,6 +6394,7 @@ <h3>Methods</h3>
63926394
hasTouch: bool = None,
63936395
colorScheme: Literal[&#34;dark&#34;, &#34;light&#34;, &#34;no-preference&#34;] = None,
63946396
acceptDownloads: bool = None,
6397+
defaultBrowserType: str = None,
63956398
) -&gt; &#34;Page&#34;:
63966399
&#34;&#34;&#34;Browser.newPage
63976400

@@ -6457,6 +6460,7 @@ <h3>Methods</h3>
64576460
hasTouch=hasTouch,
64586461
colorScheme=colorScheme,
64596462
acceptDownloads=acceptDownloads,
6463+
defaultBrowserType=defaultBrowserType,
64606464
)
64616465
)
64626466

@@ -6724,7 +6728,7 @@ <h2 id="returns">Returns</h2>
67246728
</details>
67256729
</dd>
67266730
<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>
67286732
</code></dt>
67296733
<dd>
67306734
<div class="desc"><p>Browser.newPage</p>
@@ -6795,6 +6799,7 @@ <h2 id="returns">Returns</h2>
67956799
hasTouch: bool = None,
67966800
colorScheme: Literal[&#34;dark&#34;, &#34;light&#34;, &#34;no-preference&#34;] = None,
67976801
acceptDownloads: bool = None,
6802+
defaultBrowserType: str = None,
67986803
) -&gt; &#34;Page&#34;:
67996804
&#34;&#34;&#34;Browser.newPage
68006805

@@ -6860,6 +6865,7 @@ <h2 id="returns">Returns</h2>
68606865
hasTouch=hasTouch,
68616866
colorScheme=colorScheme,
68626867
acceptDownloads=acceptDownloads,
6868+
defaultBrowserType=defaultBrowserType,
68636869
)
68646870
)</code></pre>
68656871
</details>

sync_api.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5903,6 +5903,7 @@ <h1 class="title">Module <code>playwright.sync_api</code></h1>
59035903
hasTouch: bool = None,
59045904
colorScheme: Literal[&#34;dark&#34;, &#34;light&#34;, &#34;no-preference&#34;] = None,
59055905
acceptDownloads: bool = None,
5906+
defaultBrowserType: str = None,
59065907
) -&gt; &#34;Page&#34;:
59075908
&#34;&#34;&#34;Browser.newPage
59085909

@@ -5969,6 +5970,7 @@ <h1 class="title">Module <code>playwright.sync_api</code></h1>
59695970
hasTouch=hasTouch,
59705971
colorScheme=colorScheme,
59715972
acceptDownloads=acceptDownloads,
5973+
defaultBrowserType=defaultBrowserType,
59725974
)
59735975
)
59745976
)
@@ -6638,6 +6640,7 @@ <h3>Methods</h3>
66386640
hasTouch: bool = None,
66396641
colorScheme: Literal[&#34;dark&#34;, &#34;light&#34;, &#34;no-preference&#34;] = None,
66406642
acceptDownloads: bool = None,
6643+
defaultBrowserType: str = None,
66416644
) -&gt; &#34;Page&#34;:
66426645
&#34;&#34;&#34;Browser.newPage
66436646

@@ -6704,6 +6707,7 @@ <h3>Methods</h3>
67046707
hasTouch=hasTouch,
67056708
colorScheme=colorScheme,
67066709
acceptDownloads=acceptDownloads,
6710+
defaultBrowserType=defaultBrowserType,
67076711
)
67086712
)
67096713
)
@@ -6974,7 +6978,7 @@ <h2 id="returns">Returns</h2>
69746978
</details>
69756979
</dd>
69766980
<dt id="playwright.sync_api.Browser.newPage"><code class="name flex">
6977-
<span>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.sync_api.Page" href="#playwright.sync_api.Page">Page</a></span>
6981+
<span>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.sync_api.Page" href="#playwright.sync_api.Page">Page</a></span>
69786982
</code></dt>
69796983
<dd>
69806984
<div class="desc"><p>Browser.newPage</p>
@@ -7045,6 +7049,7 @@ <h2 id="returns">Returns</h2>
70457049
hasTouch: bool = None,
70467050
colorScheme: Literal[&#34;dark&#34;, &#34;light&#34;, &#34;no-preference&#34;] = None,
70477051
acceptDownloads: bool = None,
7052+
defaultBrowserType: str = None,
70487053
) -&gt; &#34;Page&#34;:
70497054
&#34;&#34;&#34;Browser.newPage
70507055

@@ -7111,6 +7116,7 @@ <h2 id="returns">Returns</h2>
71117116
hasTouch=hasTouch,
71127117
colorScheme=colorScheme,
71137118
acceptDownloads=acceptDownloads,
7119+
defaultBrowserType=defaultBrowserType,
71147120
)
71157121
)
71167122
)</code></pre>

0 commit comments

Comments
 (0)