@@ -3104,7 +3104,9 @@ def expect_navigation(
31043104 Parameters
31053105 ----------
31063106 url : Union[Callable[[str], bool], Pattern, str, NoneType]
3107- A glob pattern, regex pattern or predicate receiving [URL] to match while waiting for the navigation.
3107+ A glob pattern, regex pattern or predicate receiving [URL] to match while waiting for the navigation. Note that if the
3108+ parameter is a string without wilcard characters, the method will wait for navigation to URL that is exactly equal to
3109+ the string.
31083110 wait_until : Union["domcontentloaded", "load", "networkidle", NoneType]
31093111 When to consider operation succeeded, defaults to `load`. Events can be either:
31103112 - `'domcontentloaded'` - consider operation to be finished when the `DOMContentLoaded` event is fired.
@@ -3146,7 +3148,9 @@ async def wait_for_url(
31463148 Parameters
31473149 ----------
31483150 url : Union[Callable[[str], bool], Pattern, str]
3149- A glob pattern, regex pattern or predicate receiving [URL] to match while waiting for the navigation.
3151+ A glob pattern, regex pattern or predicate receiving [URL] to match while waiting for the navigation. Note that if the
3152+ parameter is a string without wilcard characters, the method will wait for navigation to URL that is exactly equal to
3153+ the string.
31503154 wait_until : Union["domcontentloaded", "load", "networkidle", NoneType]
31513155 When to consider operation succeeded, defaults to `load`. Events can be either:
31523156 - `'domcontentloaded'` - consider operation to be finished when the `DOMContentLoaded` event is fired.
@@ -7430,7 +7434,9 @@ async def wait_for_url(
74307434 Parameters
74317435 ----------
74327436 url : Union[Callable[[str], bool], Pattern, str]
7433- A glob pattern, regex pattern or predicate receiving [URL] to match while waiting for the navigation.
7437+ A glob pattern, regex pattern or predicate receiving [URL] to match while waiting for the navigation. Note that if the
7438+ parameter is a string without wilcard characters, the method will wait for navigation to URL that is exactly equal to
7439+ the string.
74347440 wait_until : Union["domcontentloaded", "load", "networkidle", NoneType]
74357441 When to consider operation succeeded, defaults to `load`. Events can be either:
74367442 - `'domcontentloaded'` - consider operation to be finished when the `DOMContentLoaded` event is fired.
@@ -9398,7 +9404,9 @@ def expect_navigation(
93989404 Parameters
93999405 ----------
94009406 url : Union[Callable[[str], bool], Pattern, str, NoneType]
9401- A glob pattern, regex pattern or predicate receiving [URL] to match while waiting for the navigation.
9407+ A glob pattern, regex pattern or predicate receiving [URL] to match while waiting for the navigation. Note that if the
9408+ parameter is a string without wilcard characters, the method will wait for navigation to URL that is exactly equal to
9409+ the string.
94029410 wait_until : Union["domcontentloaded", "load", "networkidle", NoneType]
94039411 When to consider operation succeeded, defaults to `load`. Events can be either:
94049412 - `'domcontentloaded'` - consider operation to be finished when the `DOMContentLoaded` event is fired.
@@ -10872,7 +10880,7 @@ async def new_context(
1087210880 no_viewport : Union[bool, NoneType]
1087310881 Does not enforce fixed viewport, allows resizing window in the headed mode.
1087410882 ignore_https_errors : Union[bool, NoneType]
10875- Whether to ignore HTTPS errors during navigation . Defaults to `false`.
10883+ Whether to ignore HTTPS errors when sending network requests . Defaults to `false`.
1087610884 java_script_enabled : Union[bool, NoneType]
1087710885 Whether or not to enable JavaScript in the context. Defaults to `true`.
1087810886 bypass_csp : Union[bool, NoneType]
@@ -10891,7 +10899,7 @@ async def new_context(
1089110899 A list of permissions to grant to all pages in this context. See `browser_context.grant_permissions()` for more
1089210900 details.
1089310901 extra_http_headers : Union[Dict[str, str], NoneType]
10894- An object containing additional HTTP headers to be sent with every request. All header values must be strings.
10902+ An object containing additional HTTP headers to be sent with every request.
1089510903 offline : Union[bool, NoneType]
1089610904 Whether to emulate network being offline. Defaults to `false`.
1089710905 http_credentials : Union[{username: str, password: str}, NoneType]
@@ -11046,7 +11054,7 @@ async def new_page(
1104611054 no_viewport : Union[bool, NoneType]
1104711055 Does not enforce fixed viewport, allows resizing window in the headed mode.
1104811056 ignore_https_errors : Union[bool, NoneType]
11049- Whether to ignore HTTPS errors during navigation . Defaults to `false`.
11057+ Whether to ignore HTTPS errors when sending network requests . Defaults to `false`.
1105011058 java_script_enabled : Union[bool, NoneType]
1105111059 Whether or not to enable JavaScript in the context. Defaults to `true`.
1105211060 bypass_csp : Union[bool, NoneType]
@@ -11065,7 +11073,7 @@ async def new_page(
1106511073 A list of permissions to grant to all pages in this context. See `browser_context.grant_permissions()` for more
1106611074 details.
1106711075 extra_http_headers : Union[Dict[str, str], NoneType]
11068- An object containing additional HTTP headers to be sent with every request. All header values must be strings.
11076+ An object containing additional HTTP headers to be sent with every request.
1106911077 offline : Union[bool, NoneType]
1107011078 Whether to emulate network being offline. Defaults to `false`.
1107111079 http_credentials : Union[{username: str, password: str}, NoneType]
@@ -11539,7 +11547,7 @@ async def launch_persistent_context(
1153911547 no_viewport : Union[bool, NoneType]
1154011548 Does not enforce fixed viewport, allows resizing window in the headed mode.
1154111549 ignore_https_errors : Union[bool, NoneType]
11542- Whether to ignore HTTPS errors during navigation . Defaults to `false`.
11550+ Whether to ignore HTTPS errors when sending network requests . Defaults to `false`.
1154311551 java_script_enabled : Union[bool, NoneType]
1154411552 Whether or not to enable JavaScript in the context. Defaults to `true`.
1154511553 bypass_csp : Union[bool, NoneType]
@@ -11558,7 +11566,7 @@ async def launch_persistent_context(
1155811566 A list of permissions to grant to all pages in this context. See `browser_context.grant_permissions()` for more
1155911567 details.
1156011568 extra_http_headers : Union[Dict[str, str], NoneType]
11561- An object containing additional HTTP headers to be sent with every request. All header values must be strings.
11569+ An object containing additional HTTP headers to be sent with every request.
1156211570 offline : Union[bool, NoneType]
1156311571 Whether to emulate network being offline. Defaults to `false`.
1156411572 http_credentials : Union[{username: str, password: str}, NoneType]
0 commit comments