Skip to content

Commit 42d0e1b

Browse files
committed
deploy: 63d302c
1 parent a211b67 commit 42d0e1b

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
@@ -5392,6 +5392,7 @@ <h1 class="title">Module <code>playwright.async_api</code></h1>
53925392
hasTouch: bool = None,
53935393
colorScheme: Literal[&#34;light&#34;, &#34;dark&#34;, &#34;no-preference&#34;] = None,
53945394
acceptDownloads: bool = None,
5395+
defaultBrowserType: str = None,
53955396
) -&gt; &#34;BrowserContext&#34;:
53965397
&#34;&#34;&#34;Browser.newContext
53975398

@@ -5456,6 +5457,7 @@ <h1 class="title">Module <code>playwright.async_api</code></h1>
54565457
hasTouch=hasTouch,
54575458
colorScheme=colorScheme,
54585459
acceptDownloads=acceptDownloads,
5460+
defaultBrowserType=defaultBrowserType,
54595461
)
54605462
)
54615463

@@ -6111,6 +6113,7 @@ <h3>Methods</h3>
61116113
hasTouch: bool = None,
61126114
colorScheme: Literal[&#34;light&#34;, &#34;dark&#34;, &#34;no-preference&#34;] = None,
61136115
acceptDownloads: bool = None,
6116+
defaultBrowserType: str = None,
61146117
) -&gt; &#34;BrowserContext&#34;:
61156118
&#34;&#34;&#34;Browser.newContext
61166119

@@ -6175,6 +6178,7 @@ <h3>Methods</h3>
61756178
hasTouch=hasTouch,
61766179
colorScheme=colorScheme,
61776180
acceptDownloads=acceptDownloads,
6181+
defaultBrowserType=defaultBrowserType,
61786182
)
61796183
)
61806184

@@ -6388,7 +6392,7 @@ <h2 id="returns">Returns</h2>
63886392
</details>
63896393
</dd>
63906394
<dt id="playwright.async_api.Browser.newContext"><code class="name flex">
6391-
<span>async def <span class="ident">newContext</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['light', 'dark', 'no-preference'] = None, acceptDownloads: bool = None) ‑> <a title="playwright.async_api.BrowserContext" href="#playwright.async_api.BrowserContext">BrowserContext</a></span>
6395+
<span>async def <span class="ident">newContext</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['light', 'dark', 'no-preference'] = None, acceptDownloads: bool = None, defaultBrowserType: str = None) ‑> <a title="playwright.async_api.BrowserContext" href="#playwright.async_api.BrowserContext">BrowserContext</a></span>
63926396
</code></dt>
63936397
<dd>
63946398
<div class="desc"><p>Browser.newContext</p>
@@ -6458,6 +6462,7 @@ <h2 id="returns">Returns</h2>
64586462
hasTouch: bool = None,
64596463
colorScheme: Literal[&#34;light&#34;, &#34;dark&#34;, &#34;no-preference&#34;] = None,
64606464
acceptDownloads: bool = None,
6465+
defaultBrowserType: str = None,
64616466
) -&gt; &#34;BrowserContext&#34;:
64626467
&#34;&#34;&#34;Browser.newContext
64636468

@@ -6522,6 +6527,7 @@ <h2 id="returns">Returns</h2>
65226527
hasTouch=hasTouch,
65236528
colorScheme=colorScheme,
65246529
acceptDownloads=acceptDownloads,
6530+
defaultBrowserType=defaultBrowserType,
65256531
)
65266532
)</code></pre>
65276533
</details>

sync_api.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5620,6 +5620,7 @@ <h1 class="title">Module <code>playwright.sync_api</code></h1>
56205620
hasTouch: bool = None,
56215621
colorScheme: Literal[&#34;light&#34;, &#34;dark&#34;, &#34;no-preference&#34;] = None,
56225622
acceptDownloads: bool = None,
5623+
defaultBrowserType: str = None,
56235624
) -&gt; &#34;BrowserContext&#34;:
56245625
&#34;&#34;&#34;Browser.newContext
56255626

@@ -5685,6 +5686,7 @@ <h1 class="title">Module <code>playwright.sync_api</code></h1>
56855686
hasTouch=hasTouch,
56865687
colorScheme=colorScheme,
56875688
acceptDownloads=acceptDownloads,
5689+
defaultBrowserType=defaultBrowserType,
56885690
)
56895691
)
56905692
)
@@ -6353,6 +6355,7 @@ <h3>Methods</h3>
63536355
hasTouch: bool = None,
63546356
colorScheme: Literal[&#34;light&#34;, &#34;dark&#34;, &#34;no-preference&#34;] = None,
63556357
acceptDownloads: bool = None,
6358+
defaultBrowserType: str = None,
63566359
) -&gt; &#34;BrowserContext&#34;:
63576360
&#34;&#34;&#34;Browser.newContext
63586361

@@ -6418,6 +6421,7 @@ <h3>Methods</h3>
64186421
hasTouch=hasTouch,
64196422
colorScheme=colorScheme,
64206423
acceptDownloads=acceptDownloads,
6424+
defaultBrowserType=defaultBrowserType,
64216425
)
64226426
)
64236427
)
@@ -6634,7 +6638,7 @@ <h2 id="returns">Returns</h2>
66346638
</details>
66356639
</dd>
66366640
<dt id="playwright.sync_api.Browser.newContext"><code class="name flex">
6637-
<span>def <span class="ident">newContext</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['light', 'dark', 'no-preference'] = None, acceptDownloads: bool = None) ‑> <a title="playwright.sync_api.BrowserContext" href="#playwright.sync_api.BrowserContext">BrowserContext</a></span>
6641+
<span>def <span class="ident">newContext</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['light', 'dark', 'no-preference'] = None, acceptDownloads: bool = None, defaultBrowserType: str = None) ‑> <a title="playwright.sync_api.BrowserContext" href="#playwright.sync_api.BrowserContext">BrowserContext</a></span>
66386642
</code></dt>
66396643
<dd>
66406644
<div class="desc"><p>Browser.newContext</p>
@@ -6704,6 +6708,7 @@ <h2 id="returns">Returns</h2>
67046708
hasTouch: bool = None,
67056709
colorScheme: Literal[&#34;light&#34;, &#34;dark&#34;, &#34;no-preference&#34;] = None,
67066710
acceptDownloads: bool = None,
6711+
defaultBrowserType: str = None,
67076712
) -&gt; &#34;BrowserContext&#34;:
67086713
&#34;&#34;&#34;Browser.newContext
67096714

@@ -6769,6 +6774,7 @@ <h2 id="returns">Returns</h2>
67696774
hasTouch=hasTouch,
67706775
colorScheme=colorScheme,
67716776
acceptDownloads=acceptDownloads,
6777+
defaultBrowserType=defaultBrowserType,
67726778
)
67736779
)
67746780
)</code></pre>

0 commit comments

Comments
 (0)