Page provides methods to interact with a single tab in a Browser, or an extension background page in Chromium. One Browser instance might have multiple Page instances.
This example creates a page, navigates it to a URL, and then saves a screenshot:
from playwright.sync_api import sync_playwright, Playwright
def run(playwright: Playwright):
webkit = playwright.webkit
browser = webkit.launch()
context = browser.new_context()
page = context.new_page()
page.goto("https://example.com")
page.screenshot(path="screenshot.png")
browser.close()
with sync_playwright() as playwright:
run(playwright)
import asyncio
from playwright.async_api import async_playwright, Playwright
async def run(playwright: Playwright):
webkit = playwright.webkit
browser = await webkit.launch()
context = await browser.new_context()
page = await context.new_page()
await page.goto("https://example.com")
await page.screenshot(path="screenshot.png")
await browser.close()
async def main():
async with async_playwright() as playwright:
await run(playwright)
asyncio.run(main())
The Page class emits various events (described below) which can be handled using any of Node's native EventEmitter
methods, such as on
, once
or removeListener
.
This example logs a message for a single page load
event:
page.once("load", lambda: print("page loaded!"))
To unsubscribe from events use the removeListener
method:
def log_request(intercepted_request):
print("a request was made:", intercepted_request.url)
page.on("request", log_request)
page.remove_listener("request", log_request)
Methods add_init_scriptAdded before v1.9 page.add_init_script
Adds a script which would be evaluated in one of the following scenarios:
The script is evaluated after the document was created but before any of its scripts were run. This is useful to amend the JavaScript environment, e.g. to seed Math.random
.
Usage
An example of overriding Math.random
before the page loads:
page.add_init_script(path="./preload.js")
await page.add_init_script(path="./preload.js")
Arguments
path
Union[str, pathlib.Path] (optional)#
Path to the JavaScript file. If path
is a relative path, then it is resolved relative to the current working directory. Optional.
Script to be evaluated in all pages in the browser context. Optional.
Returns
add_locator_handlerAdded in: v1.42 page.add_locator_handlerWhen testing a web page, sometimes unexpected overlays like a "Sign up" dialog appear and block actions you want to automate, e.g. clicking a button. These overlays don't always show up in the same way or at the same time, making them tricky to handle in automated tests.
This method lets you set up a special function, called a handler, that activates when it detects that overlay is visible. The handler's job is to remove the overlay, allowing your test to continue as if the overlay wasn't there.
Things to keep in mind:
warning
Running the handler will alter your page state mid-test. For example it will change the currently focused element and move the mouse. Make sure that actions that run after the handler are self-contained and do not rely on the focus and mouse state being unchanged.
For example, consider a test that calls locator.focus() followed by keyboard.press(). If your handler clicks a button between these two actions, the focused element most likely will be wrong, and key press will happen on the unexpected element. Use locator.press() instead to avoid this problem.
Another example is a series of mouse actions, where mouse.move() is followed by mouse.down(). Again, when the handler runs between these two actions, the mouse position will be wrong during the mouse down. Prefer self-contained actions like locator.click() that do not rely on the state being unchanged by a handler.
Usage
An example that closes a "Sign up to the newsletter" dialog when it appears:
def handler():
page.get_by_role("button", name="No thanks").click()
page.add_locator_handler(page.get_by_text("Sign up to the newsletter"), handler)
page.goto("https://example.com")
page.get_by_role("button", name="Start here").click()
def handler():
await page.get_by_role("button", name="No thanks").click()
await page.add_locator_handler(page.get_by_text("Sign up to the newsletter"), handler)
await page.goto("https://example.com")
await page.get_by_role("button", name="Start here").click()
An example that skips the "Confirm your security details" page when it is shown:
def handler():
page.get_by_role("button", name="Remind me later").click()
page.add_locator_handler(page.get_by_text("Confirm your security details"), handler)
page.goto("https://example.com")
page.get_by_role("button", name="Start here").click()
def handler():
await page.get_by_role("button", name="Remind me later").click()
await page.add_locator_handler(page.get_by_text("Confirm your security details"), handler)
await page.goto("https://example.com")
await page.get_by_role("button", name="Start here").click()
An example with a custom callback on every actionability check. It uses a <body>
locator that is always visible, so the handler is called before every actionability check. It is important to specify no_wait_after, because the handler does not hide the <body>
element.
def handler():
page.evaluate("window.removeObstructionsForTestIfNeeded()")
page.add_locator_handler(page.locator("body"), handler, no_wait_after=True)
page.goto("https://example.com")
page.get_by_role("button", name="Start here").click()
def handler():
await page.evaluate("window.removeObstructionsForTestIfNeeded()")
await page.add_locator_handler(page.locator("body"), handler, no_wait_after=True)
await page.goto("https://example.com")
await page.get_by_role("button", name="Start here").click()
Handler takes the original locator as an argument. You can also automatically remove the handler after a number of invocations by setting times:
def handler(locator):
locator.click()
page.add_locator_handler(page.get_by_label("Close"), handler, times=1)
def handler(locator):
await locator.click()
await page.add_locator_handler(page.get_by_label("Close"), handler, times=1)
Arguments
Locator that triggers the handler.
handler
Callable[Locator]:Promise[Any]#
Function that should be run once locator appears. This function should get rid of the element that blocks actions like click.
no_wait_after
bool (optional) Added in: v1.44#
By default, after calling the handler Playwright will wait until the overlay becomes hidden, and only then Playwright will continue with the action/assertion that triggered the handler. This option allows to opt-out of this behavior, so that overlay can stay visible after the handler has run.
times
int (optional) Added in: v1.44#
Specifies the maximum number of times this handler should be called. Unlimited by default.
Returns
add_script_tagAdded before v1.9 page.add_script_tagAdds a <script>
tag into the page with the desired url or content. Returns the added tag when the script's onload fires or when the script content was injected into frame.
Usage
page.add_script_tag()
page.add_script_tag(**kwargs)
Arguments
Raw JavaScript content to be injected into frame.
path
Union[str, pathlib.Path] (optional)#
Path to the JavaScript file to be injected into frame. If path
is a relative path, then it is resolved relative to the current working directory.
Script type. Use 'module' in order to load a JavaScript ES6 module. See script for more details.
URL of a script to be added.
Returns
add_style_tagAdded before v1.9 page.add_style_tagAdds a <link rel="stylesheet">
tag into the page with the desired url or a <style type="text/css">
tag with the content. Returns the added tag when the stylesheet's onload fires or when the CSS content was injected into frame.
Usage
page.add_style_tag()
page.add_style_tag(**kwargs)
Arguments
Raw CSS content to be injected into frame.
path
Union[str, pathlib.Path] (optional)#
Path to the CSS file to be injected into frame. If path
is a relative path, then it is resolved relative to the current working directory.
URL of the <link>
tag.
Returns
bring_to_frontAdded before v1.9 page.bring_to_frontBrings page to front (activates tab).
Usage
Returns
closeAdded before v1.9 page.closeIf run_before_unload is false
, does not run any unload handlers and waits for the page to be closed. If run_before_unload is true
the method will run unload handlers, but will not wait for the page to close.
By default, page.close()
does not run beforeunload
handlers.
Usage
page.close()
page.close(**kwargs)
Arguments
reason
str (optional) Added in: v1.40#
The reason to be reported to the operations interrupted by the page closure.
run_before_unload
bool (optional)#
Defaults to false
. Whether to run the before unload page handlers.
Returns
contentAdded before v1.9 page.contentGets the full HTML contents of the page, including the doctype.
Usage
Returns
drag_and_dropAdded in: v1.13 page.drag_and_dropThis method drags the source element to the target element. It will first move to the source element, perform a mousedown
, then move to the target element and perform a mouseup
.
Usage
page.drag_and_drop("#source", "#target")
page.drag_and_drop(
"#source",
"#target",
source_position={"x": 34, "y": 7},
target_position={"x": 10, "y": 20}
)
await page.drag_and_drop("#source", "#target")
await page.drag_and_drop(
"#source",
"#target",
source_position={"x": 34, "y": 7},
target_position={"x": 10, "y": 20}
)
Arguments
A selector to search for an element to drag. If there are multiple elements satisfying the selector, the first will be used.
A selector to search for an element to drop onto. If there are multiple elements satisfying the selector, the first will be used.
Whether to bypass the actionability checks. Defaults to false
.
no_wait_after
bool (optional)#
Deprecated
This option has no effect.
This option has no effect.
source_position
Dict (optional) Added in: v1.14#
Clicks on the source element at this point relative to the top-left corner of the element's padding box. If not specified, some visible point of the element is used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
target_position
Dict (optional) Added in: v1.14#
Drops on the target element at this point relative to the top-left corner of the element's padding box. If not specified, some visible point of the element is used.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
When set, this method only performs the actionability checks and skips the action. Defaults to false
. Useful to wait until the element is ready for the action without performing it.
Returns
emulate_mediaAdded before v1.9 page.emulate_mediaThis method changes the CSS media type
through the media
argument, and/or the 'prefers-colors-scheme'
media feature, using the colorScheme
argument.
Usage
page.evaluate("matchMedia('screen').matches")
page.evaluate("matchMedia('print').matches")
page.emulate_media(media="print")
page.evaluate("matchMedia('screen').matches")
page.evaluate("matchMedia('print').matches")
page.emulate_media()
page.evaluate("matchMedia('screen').matches")
page.evaluate("matchMedia('print').matches")
await page.evaluate("matchMedia('screen').matches")
await page.evaluate("matchMedia('print').matches")
await page.emulate_media(media="print")
await page.evaluate("matchMedia('screen').matches")
await page.evaluate("matchMedia('print').matches")
await page.emulate_media()
await page.evaluate("matchMedia('screen').matches")
await page.evaluate("matchMedia('print').matches")
page.emulate_media(color_scheme="dark")
page.evaluate("matchMedia('(prefers-color-scheme: dark)').matches")
page.evaluate("matchMedia('(prefers-color-scheme: light)').matches")
await page.emulate_media(color_scheme="dark")
await page.evaluate("matchMedia('(prefers-color-scheme: dark)').matches")
await page.evaluate("matchMedia('(prefers-color-scheme: light)').matches")
Arguments
color_scheme
"light" | "dark" | "no-preference" | "null" (optional) Added in: v1.9#
Emulates prefers-colors-scheme media feature, supported values are 'light'
and 'dark'
. Passing 'Null'
disables color scheme emulation. 'no-preference'
is deprecated.
contrast
"no-preference" | "more" | "null" (optional) Added in: v1.51#
forced_colors
"active" | "none" | "null" (optional) Added in: v1.15#
media
"screen" | "print" | "null" (optional) Added in: v1.9#
Changes the CSS media type of the page. The only allowed values are 'Screen'
, 'Print'
and 'Null'
. Passing 'Null'
disables CSS media emulation.
reduced_motion
"reduce" | "no-preference" | "null" (optional) Added in: v1.12#
Emulates 'prefers-reduced-motion'
media feature, supported values are 'reduce'
, 'no-preference'
. Passing null
disables reduced motion emulation.
Returns
evaluateAdded before v1.9 page.evaluateReturns the value of the expression invocation.
If the function passed to the page.evaluate() returns a Promise, then page.evaluate() would wait for the promise to resolve and return its value.
If the function passed to the page.evaluate() returns a non-Serializable value, then page.evaluate() resolves to undefined
. Playwright also supports transferring some additional values that are not serializable by JSON
: -0
, NaN
, Infinity
, -Infinity
.
Usage
Passing argument to expression:
result = page.evaluate("([x, y]) => Promise.resolve(x * y)", [7, 8])
print(result)
result = await page.evaluate("([x, y]) => Promise.resolve(x * y)", [7, 8])
print(result)
A string can also be passed in instead of a function:
print(page.evaluate("1 + 2"))
x = 10
print(page.evaluate(f"1 + {x}"))
print(await page.evaluate("1 + 2"))
x = 10
print(await page.evaluate(f"1 + {x}"))
ElementHandle instances can be passed as an argument to the page.evaluate():
body_handle = page.evaluate("document.body")
html = page.evaluate("([body, suffix]) => body.innerHTML + suffix", [body_handle, "hello"])
body_handle.dispose()
body_handle = await page.evaluate("document.body")
html = await page.evaluate("([body, suffix]) => body.innerHTML + suffix", [body_handle, "hello"])
await body_handle.dispose()
Arguments
JavaScript expression to be evaluated in the browser context. If the expression evaluates to a function, the function is automatically invoked.
arg
EvaluationArgument (optional)#
Optional argument to pass to expression.
Returns
evaluate_handleAdded before v1.9 page.evaluate_handleReturns the value of the expression invocation as a JSHandle.
The only difference between page.evaluate() and page.evaluate_handle() is that page.evaluate_handle() returns JSHandle.
If the function passed to the page.evaluate_handle() returns a Promise, then page.evaluate_handle() would wait for the promise to resolve and return its value.
Usage
a_window_handle = page.evaluate_handle("Promise.resolve(window)")
a_window_handle
a_window_handle = await page.evaluate_handle("Promise.resolve(window)")
a_window_handle
A string can also be passed in instead of a function:
a_handle = page.evaluate_handle("document")
a_handle = await page.evaluate_handle("document")
JSHandle instances can be passed as an argument to the page.evaluate_handle():
a_handle = page.evaluate_handle("document.body")
result_handle = page.evaluate_handle("body => body.innerHTML", a_handle)
print(result_handle.json_value())
result_handle.dispose()
a_handle = await page.evaluate_handle("document.body")
result_handle = await page.evaluate_handle("body => body.innerHTML", a_handle)
print(await result_handle.json_value())
await result_handle.dispose()
Arguments
JavaScript expression to be evaluated in the browser context. If the expression evaluates to a function, the function is automatically invoked.
arg
EvaluationArgument (optional)#
Optional argument to pass to expression.
Returns
expect_console_messageAdded in: v1.9 page.expect_console_messagePerforms action and waits for a ConsoleMessage to be logged by in the page. If predicate is provided, it passes ConsoleMessage value into the predicate
function and waits for predicate(message)
to return a truthy value. Will throw an error if the page is closed before the page.on("console") event is fired.
Usage
page.expect_console_message()
page.expect_console_message(**kwargs)
Arguments
predicate
Callable[ConsoleMessage]:bool (optional)#
Receives the ConsoleMessage object and resolves to truthy value when the waiting should resolve.
Maximum time to wait for in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout().
Returns
expect_downloadAdded in: v1.9 page.expect_downloadPerforms action and waits for a new Download. If predicate is provided, it passes Download value into the predicate
function and waits for predicate(download)
to return a truthy value. Will throw an error if the page is closed before the download event is fired.
Usage
page.expect_download()
page.expect_download(**kwargs)
Arguments
predicate
Callable[Download]:bool (optional)#
Receives the Download object and resolves to truthy value when the waiting should resolve.
Maximum time to wait for in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout().
Returns
expect_eventAdded before v1.9 page.expect_eventWaits for event to fire and passes its value into the predicate function. Returns when the predicate returns truthy value. Will throw an error if the page is closed before the event is fired. Returns the event data value.
Usage
with page.expect_event("framenavigated") as event_info:
page.get_by_role("button")
frame = event_info.value
async with page.expect_event("framenavigated") as event_info:
await page.get_by_role("button")
frame = await event_info.value
Arguments
Event name, same one typically passed into *.on(event)
.
predicate
Callable (optional)#
Receives the event data and resolves to truthy value when the waiting should resolve.
Maximum time to wait for in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout().
Returns
expect_file_chooserAdded in: v1.9 page.expect_file_chooserPerforms action and waits for a new FileChooser to be created. If predicate is provided, it passes FileChooser value into the predicate
function and waits for predicate(fileChooser)
to return a truthy value. Will throw an error if the page is closed before the file chooser is opened.
Usage
page.expect_file_chooser()
page.expect_file_chooser(**kwargs)
Arguments
predicate
Callable[FileChooser]:bool (optional)#
Receives the FileChooser object and resolves to truthy value when the waiting should resolve.
Maximum time to wait for in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout().
Returns
Added in: v1.9 page.expect_popupPerforms action and waits for a popup Page. If predicate is provided, it passes [Popup] value into the predicate
function and waits for predicate(page)
to return a truthy value. Will throw an error if the page is closed before the popup event is fired.
Usage
page.expect_popup()
page.expect_popup(**kwargs)
Arguments
predicate
Callable[Page]:bool (optional)#
Receives the Page object and resolves to truthy value when the waiting should resolve.
Maximum time to wait for in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout().
Returns
expect_requestAdded before v1.9 page.expect_requestWaits for the matching request and returns it. See waiting for event for more details about events.
Usage
with page.expect_request("http://example.com/resource") as first:
page.get_by_text("trigger request").click()
first_request = first.value
with page.expect_request(lambda request: request.url == "http://example.com" and request.method == "get") as second:
page.get_by_text("trigger request").click()
second_request = second.value
async with page.expect_request("http://example.com/resource") as first:
await page.get_by_text("trigger request").click()
first_request = await first.value
async with page.expect_request(lambda request: request.url == "http://example.com" and request.method == "get") as second:
await page.get_by_text("trigger request").click()
second_request = await second.value
Arguments
url_or_predicate
str | Pattern | Callable[Request]:bool#
Request URL string, regex or predicate receiving Request object. When a base_url via the context options was provided and the passed URL is a path, it gets merged via the new URL()
constructor.
Maximum wait time in milliseconds, defaults to 30 seconds, pass 0
to disable the timeout. The default value can be changed by using the page.set_default_timeout() method.
Returns
expect_request_finishedAdded in: v1.12 page.expect_request_finishedPerforms action and waits for a Request to finish loading. If predicate is provided, it passes Request value into the predicate
function and waits for predicate(request)
to return a truthy value. Will throw an error if the page is closed before the page.on("requestfinished") event is fired.
Usage
page.expect_request_finished()
page.expect_request_finished(**kwargs)
Arguments
predicate
Callable[Request]:bool (optional)#
Receives the Request object and resolves to truthy value when the waiting should resolve.
Maximum time to wait for in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout().
Returns
expect_responseAdded before v1.9 page.expect_responseReturns the matched response. See waiting for event for more details about events.
Usage
with page.expect_response("https://example.com/resource") as response_info:
page.get_by_text("trigger response").click()
response = response_info.value
return response.ok
with page.expect_response(lambda response: response.url == "https://example.com" and response.status == 200 and response.request.method == "get") as response_info:
page.get_by_text("trigger response").click()
response = response_info.value
return response.ok
async with page.expect_response("https://example.com/resource") as response_info:
await page.get_by_text("trigger response").click()
response = await response_info.value
return response.ok
async with page.expect_response(lambda response: response.url == "https://example.com" and response.status == 200 and response.request.method == "get") as response_info:
await page.get_by_text("trigger response").click()
response = await response_info.value
return response.ok
Arguments
url_or_predicate
str | Pattern | Callable[Response]:bool#
Request URL string, regex or predicate receiving Response object. When a base_url via the context options was provided and the passed URL is a path, it gets merged via the new URL()
constructor.
Maximum wait time in milliseconds, defaults to 30 seconds, pass 0
to disable the timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
expect_websocketAdded in: v1.9 page.expect_websocketPerforms action and waits for a new WebSocket. If predicate is provided, it passes WebSocket value into the predicate
function and waits for predicate(webSocket)
to return a truthy value. Will throw an error if the page is closed before the WebSocket event is fired.
Usage
page.expect_websocket()
page.expect_websocket(**kwargs)
Arguments
predicate
Callable[WebSocket]:bool (optional)#
Receives the WebSocket object and resolves to truthy value when the waiting should resolve.
Maximum time to wait for in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout().
Returns
expect_workerAdded in: v1.9 page.expect_workerPerforms action and waits for a new Worker. If predicate is provided, it passes Worker value into the predicate
function and waits for predicate(worker)
to return a truthy value. Will throw an error if the page is closed before the worker event is fired.
Usage
page.expect_worker()
page.expect_worker(**kwargs)
Arguments
predicate
Callable[Worker]:bool (optional)#
Receives the Worker object and resolves to truthy value when the waiting should resolve.
Maximum time to wait for in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout().
Returns
expose_bindingAdded before v1.9 page.expose_bindingThe method adds a function called name on the window
object of every frame in this page. When called, the function executes callback and returns a Promise which resolves to the return value of callback. If the callback returns a Promise, it will be awaited.
The first argument of the callback function contains information about the caller: { browserContext: BrowserContext, page: Page, frame: Frame }
.
See browser_context.expose_binding() for the context-wide version.
Usage
An example of exposing page URL to all frames in a page:
from playwright.sync_api import sync_playwright, Playwright
def run(playwright: Playwright):
webkit = playwright.webkit
browser = webkit.launch(headless=False)
context = browser.new_context()
page = context.new_page()
page.expose_binding("pageURL", lambda source: source["page"].url)
page.set_content("""
<script>
async function onClick() {
document.querySelector('div').textContent = await window.pageURL();
}
</script>
<button onclick="onClick()">Click me</button>
<div></div>
""")
page.click("button")
with sync_playwright() as playwright:
run(playwright)
import asyncio
from playwright.async_api import async_playwright, Playwright
async def run(playwright: Playwright):
webkit = playwright.webkit
browser = await webkit.launch(headless=False)
context = await browser.new_context()
page = await context.new_page()
await page.expose_binding("pageURL", lambda source: source["page"].url)
await page.set_content("""
<script>
async function onClick() {
document.querySelector('div').textContent = await window.pageURL();
}
</script>
<button onclick="onClick()">Click me</button>
<div></div>
""")
await page.click("button")
async def main():
async with async_playwright() as playwright:
await run(playwright)
asyncio.run(main())
Arguments
Name of the function on the window object.
Callback function that will be called in the Playwright's context.
Deprecated
This option will be removed in the future.
Whether to pass the argument as a handle, instead of passing by value. When passing a handle, only one argument is supported. When passing by value, multiple arguments are supported.
Returns
expose_functionAdded before v1.9 page.expose_functionThe method adds a function called name on the window
object of every frame in the page. When called, the function executes callback and returns a Promise which resolves to the return value of callback.
If the callback returns a Promise, it will be awaited.
See browser_context.expose_function() for context-wide exposed function.
Usage
An example of adding a sha256
function to the page:
import hashlib
from playwright.sync_api import sync_playwright, Playwright
def sha256(text):
m = hashlib.sha256()
m.update(bytes(text, "utf8"))
return m.hexdigest()
def run(playwright: Playwright):
webkit = playwright.webkit
browser = webkit.launch(headless=False)
page = browser.new_page()
page.expose_function("sha256", sha256)
page.set_content("""
<script>
async function onClick() {
document.querySelector('div').textContent = await window.sha256('PLAYWRIGHT');
}
</script>
<button onclick="onClick()">Click me</button>
<div></div>
""")
page.click("button")
with sync_playwright() as playwright:
run(playwright)
import asyncio
import hashlib
from playwright.async_api import async_playwright, Playwright
def sha256(text):
m = hashlib.sha256()
m.update(bytes(text, "utf8"))
return m.hexdigest()
async def run(playwright: Playwright):
webkit = playwright.webkit
browser = await webkit.launch(headless=False)
page = await browser.new_page()
await page.expose_function("sha256", sha256)
await page.set_content("""
<script>
async function onClick() {
document.querySelector('div').textContent = await window.sha256('PLAYWRIGHT');
}
</script>
<button onclick="onClick()">Click me</button>
<div></div>
""")
await page.click("button")
async def main():
async with async_playwright() as playwright:
await run(playwright)
asyncio.run(main())
Arguments
Name of the function on the window object
Callback function which will be called in Playwright's context.
Returns
frameAdded before v1.9 page.frameReturns frame matching the specified criteria. Either name
or url
must be specified.
Usage
frame = page.frame(name="frame-name")
frame = page.frame(url=r".*domain.*")
Arguments
Frame name specified in the iframe
's name
attribute. Optional.
url
str | Pattern | Callable[URL]:bool (optional)#
A glob pattern, regex pattern or predicate receiving frame's url
as a URL object. Optional.
Returns
frame_locatorAdded in: v1.17 page.frame_locatorWhen working with iframes, you can create a frame locator that will enter the iframe and allow selecting elements in that iframe.
Usage
Following snippet locates element with text "Submit" in the iframe with id my-frame
, like <iframe id="my-frame">
:
locator = page.frame_locator("#my-iframe").get_by_text("Submit")
locator.click()
locator = page.frame_locator("#my-iframe").get_by_text("Submit")
await locator.click()
Arguments
Returns
get_by_alt_textAdded in: v1.27 page.get_by_alt_textAllows locating elements by their alt text.
Usage
For example, this method will find the image by alt text "Playwright logo":
<img alt='Playwright logo'>
page.get_by_alt_text("Playwright logo").click()
await page.get_by_alt_text("Playwright logo").click()
Arguments
Text to locate the element for.
Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular expression. Note that exact match still trims whitespace.
Returns
get_by_labelAdded in: v1.27 page.get_by_labelAllows locating input elements by the text of the associated <label>
or aria-labelledby
element, or by the aria-label
attribute.
Usage
For example, this method will find inputs by label "Username" and "Password" in the following DOM:
<input aria-label="Username">
<label for="password-input">Password:</label>
<input id="password-input">
page.get_by_label("Username").fill("john")
page.get_by_label("Password").fill("secret")
await page.get_by_label("Username").fill("john")
await page.get_by_label("Password").fill("secret")
Arguments
Text to locate the element for.
Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular expression. Note that exact match still trims whitespace.
Returns
get_by_placeholderAdded in: v1.27 page.get_by_placeholderAllows locating input elements by the placeholder text.
Usage
For example, consider the following DOM structure.
<input type="email" placeholder="name@example.com" />
You can fill the input after locating it by the placeholder text:
page.get_by_placeholder("name@example.com").fill("playwright@microsoft.com")
await page.get_by_placeholder("name@example.com").fill("playwright@microsoft.com")
Arguments
Text to locate the element for.
Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular expression. Note that exact match still trims whitespace.
Returns
get_by_roleAdded in: v1.27 page.get_by_roleAllows locating elements by their ARIA role, ARIA attributes and accessible name.
Usage
Consider the following DOM structure.
<h3>Sign up</h3>
<label>
<input type="checkbox" /> Subscribe
</label>
<br/>
<button>Submit</button>
You can locate each element by it's implicit role:
expect(page.get_by_role("heading", name="Sign up")).to_be_visible()
page.get_by_role("checkbox", name="Subscribe").check()
page.get_by_role("button", name=re.compile("submit", re.IGNORECASE)).click()
await expect(page.get_by_role("heading", name="Sign up")).to_be_visible()
await page.get_by_role("checkbox", name="Subscribe").check()
await page.get_by_role("button", name=re.compile("submit", re.IGNORECASE)).click()
Arguments
role
"alert" | "alertdialog" | "application" | "article" | "banner" | "blockquote" | "button" | "caption" | "cell" | "checkbox" | "code" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "deletion" | "dialog" | "directory" | "document" | "emphasis" | "feed" | "figure" | "form" | "generic" | "grid" | "gridcell" | "group" | "heading" | "img" | "insertion" | "link" | "list" | "listbox" | "listitem" | "log" | "main" | "marquee" | "math" | "meter" | "menu" | "menubar" | "menuitem" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "none" | "note" | "option" | "paragraph" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "search" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "strong" | "subscript" | "superscript" | "switch" | "tab" | "table" | "tablist" | "tabpanel" | "term" | "textbox" | "time" | "timer" | "toolbar" | "tooltip" | "tree" | "treegrid" | "treeitem"#
Required aria role.
An attribute that is usually set by aria-checked
or native <input type=checkbox>
controls.
Learn more about aria-checked
.
An attribute that is usually set by aria-disabled
or disabled
.
note
Unlike most other attributes, disabled
is inherited through the DOM hierarchy. Learn more about aria-disabled
.
exact
bool (optional) Added in: v1.28#
Whether name is matched exactly: case-sensitive and whole-string. Defaults to false. Ignored when name is a regular expression. Note that exact match still trims whitespace.
An attribute that is usually set by aria-expanded
.
Learn more about aria-expanded
.
include_hidden
bool (optional)#
Option that controls whether hidden elements are matched. By default, only non-hidden elements, as defined by ARIA, are matched by role selector.
Learn more about aria-hidden
.
A number attribute that is usually present for roles heading
, listitem
, row
, treeitem
, with default values for <h1>-<h6>
elements.
Learn more about aria-level
.
name
str | Pattern (optional)#
Option to match the accessible name. By default, matching is case-insensitive and searches for a substring, use exact to control this behavior.
Learn more about accessible name.
An attribute that is usually set by aria-pressed
.
Learn more about aria-pressed
.
An attribute that is usually set by aria-selected
.
Learn more about aria-selected
.
Returns
Details
Role selector does not replace accessibility audits and conformance tests, but rather gives early feedback about the ARIA guidelines.
Many html elements have an implicitly defined role that is recognized by the role selector. You can find all the supported roles here. ARIA guidelines do not recommend duplicating implicit roles and attributes by setting role
and/or aria-*
attributes to default values.
Locate element by the test id.
Usage
Consider the following DOM structure.
<button data-testid="directions">Itinéraire</button>
You can locate the element by it's test id:
page.get_by_test_id("directions").click()
await page.get_by_test_id("directions").click()
Arguments
Returns
Details
By default, the data-testid
attribute is used as a test id. Use selectors.set_test_id_attribute() to configure a different test id attribute if necessary.
Allows locating elements that contain given text.
See also locator.filter() that allows to match by another criteria, like an accessible role, and then filter by the text content.
Usage
Consider the following DOM structure:
<div>Hello <span>world</span></div>
<div>Hello</div>
You can locate by text substring, exact string, or a regular expression:
page.get_by_text("world")
page.get_by_text("Hello world")
page.get_by_text("Hello", exact=True)
page.get_by_text(re.compile("Hello"))
page.get_by_text(re.compile("^hello$", re.IGNORECASE))
page.get_by_text("world")
page.get_by_text("Hello world")
page.get_by_text("Hello", exact=True)
page.get_by_text(re.compile("Hello"))
page.get_by_text(re.compile("^hello$", re.IGNORECASE))
Arguments
Text to locate the element for.
Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular expression. Note that exact match still trims whitespace.
Returns
Details
Matching by text always normalizes whitespace, even with exact match. For example, it turns multiple spaces into one, turns line breaks into spaces and ignores leading and trailing whitespace.
Input elements of the type button
and submit
are matched by their value
instead of the text content. For example, locating by text "Log in"
matches <input type=button value="Log in">
.
Allows locating elements by their title attribute.
Usage
Consider the following DOM structure.
<span title='Issues count'>25 issues</span>
You can check the issues count after locating it by the title text:
expect(page.get_by_title("Issues count")).to_have_text("25 issues")
await expect(page.get_by_title("Issues count")).to_have_text("25 issues")
Arguments
Text to locate the element for.
Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular expression. Note that exact match still trims whitespace.
Returns
go_backAdded before v1.9 page.go_backReturns the main resource response. In case of multiple redirects, the navigation will resolve with the response of the last redirect. If cannot go back, returns null
.
Navigate to the previous page in history.
Usage
page.go_back()
page.go_back(**kwargs)
Arguments
Maximum operation time in milliseconds, defaults to 30 seconds, pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(), browser_context.set_default_timeout(), page.set_default_navigation_timeout() or page.set_default_timeout() methods.
wait_until
"load" | "domcontentloaded" | "networkidle" | "commit" (optional)#
When to consider operation succeeded, defaults to load
. Events can be either:
'domcontentloaded'
- consider operation to be finished when the DOMContentLoaded
event is fired.'load'
- consider operation to be finished when the load
event is fired.'networkidle'
- DISCOURAGED consider operation to be finished when there are no network connections for at least 500
ms. Don't use this method for testing, rely on web assertions to assess readiness instead.'commit'
- consider operation to be finished when network response is received and the document started loading.Returns
go_forwardAdded before v1.9 page.go_forwardReturns the main resource response. In case of multiple redirects, the navigation will resolve with the response of the last redirect. If cannot go forward, returns null
.
Navigate to the next page in history.
Usage
page.go_forward()
page.go_forward(**kwargs)
Arguments
Maximum operation time in milliseconds, defaults to 30 seconds, pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(), browser_context.set_default_timeout(), page.set_default_navigation_timeout() or page.set_default_timeout() methods.
wait_until
"load" | "domcontentloaded" | "networkidle" | "commit" (optional)#
When to consider operation succeeded, defaults to load
. Events can be either:
'domcontentloaded'
- consider operation to be finished when the DOMContentLoaded
event is fired.'load'
- consider operation to be finished when the load
event is fired.'networkidle'
- DISCOURAGED consider operation to be finished when there are no network connections for at least 500
ms. Don't use this method for testing, rely on web assertions to assess readiness instead.'commit'
- consider operation to be finished when network response is received and the document started loading.Returns
gotoAdded before v1.9 page.gotoReturns the main resource response. In case of multiple redirects, the navigation will resolve with the first non-redirect response.
The method will throw an error if:
The method will not throw an error when any valid HTTP status code is returned by the remote server, including 404 "Not Found" and 500 "Internal Server Error". The status code for such responses can be retrieved by calling response.status.
note
The method either throws an error or returns a main resource response. The only exceptions are navigation to about:blank
or navigation to the same URL with a different hash, which would succeed and return null
.
note
Headless mode doesn't support navigation to a PDF document. See the upstream issue.
Usage
page.goto(url)
page.goto(url, **kwargs)
Arguments
URL to navigate page to. The url should include scheme, e.g. https://
. When a base_url via the context options was provided and the passed URL is a path, it gets merged via the new URL()
constructor.
Referer header value. If provided it will take preference over the referer header value set by page.set_extra_http_headers().
Maximum operation time in milliseconds, defaults to 30 seconds, pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(), browser_context.set_default_timeout(), page.set_default_navigation_timeout() or page.set_default_timeout() methods.
wait_until
"load" | "domcontentloaded" | "networkidle" | "commit" (optional)#
When to consider operation succeeded, defaults to load
. Events can be either:
'domcontentloaded'
- consider operation to be finished when the DOMContentLoaded
event is fired.'load'
- consider operation to be finished when the load
event is fired.'networkidle'
- DISCOURAGED consider operation to be finished when there are no network connections for at least 500
ms. Don't use this method for testing, rely on web assertions to assess readiness instead.'commit'
- consider operation to be finished when network response is received and the document started loading.Returns
locatorAdded in: v1.14 page.locatorThe method returns an element locator that can be used to perform actions on this page / frame. Locator is resolved to the element immediately before performing an action, so a series of actions on the same locator can in fact be performed on different DOM elements. That would happen if the DOM structure between those actions has changed.
Usage
page.locator(selector)
page.locator(selector, **kwargs)
Arguments
A selector to use when resolving DOM element.
Narrows down the results of the method to those which contain elements matching this relative locator. For example, article
that has text=Playwright
matches <article><div>Playwright</div></article>
.
Inner locator must be relative to the outer locator and is queried starting with the outer locator match, not the document root. For example, you can find content
that has div
in <article><content><div>Playwright</div></content></article>
. However, looking for content
that has article div
will fail, because the inner locator must be relative and should not use any elements outside the content
.
Note that outer and inner locators must belong to the same frame. Inner locator must not contain FrameLocators.
has_not
Locator (optional) Added in: v1.33#
Matches elements that do not contain an element that matches an inner locator. Inner locator is queried against the outer one. For example, article
that does not have div
matches <article><span>Playwright</span></article>
.
Note that outer and inner locators must belong to the same frame. Inner locator must not contain FrameLocators.
has_not_text
str | Pattern (optional) Added in: v1.33#
Matches elements that do not contain specified text somewhere inside, possibly in a child or a descendant element. When passed a [string], matching is case-insensitive and searches for a substring.
has_text
str | Pattern (optional)#
Matches elements containing specified text somewhere inside, possibly in a child or a descendant element. When passed a [string], matching is case-insensitive and searches for a substring. For example, "Playwright"
matches <article><div>Playwright</div></article>
.
Returns
openerAdded before v1.9 page.openerReturns the opener for popup pages and null
for others. If the opener has been closed already the returns null
.
Usage
Returns
pauseAdded in: v1.9 page.pausePauses script execution. Playwright will stop executing the script and wait for the user to either press 'Resume' button in the page overlay or to call playwright.resume()
in the DevTools console.
User can inspect selectors or perform manual steps while paused. Resume will continue running the original script from the place it was paused.
note
This method requires Playwright to be started in a headed mode, with a falsy headless option.
Usage
Returns
pdfAdded before v1.9 page.pdfReturns the PDF buffer.
page.pdf()
generates a pdf of the page with print
css media. To generate a pdf with screen
media, call page.emulate_media() before calling page.pdf()
:
note
By default, page.pdf()
generates a pdf with modified colors for printing. Use the -webkit-print-color-adjust
property to force rendering of exact colors.
Usage
page.emulate_media(media="screen")
page.pdf(path="page.pdf")
await page.emulate_media(media="screen")
await page.pdf(path="page.pdf")
The width, height, and margin options accept values labeled with units. Unlabeled values are treated as pixels.
A few examples:
page.pdf({width: 100})
- prints with width set to 100 pixelspage.pdf({width: '100px'})
- prints with width set to 100 pixelspage.pdf({width: '10cm'})
- prints with width set to 10 centimeters.All possible units are:
px
- pixelin
- inchcm
- centimetermm
- millimeterThe format options are:
Letter
: 8.5in x 11inLegal
: 8.5in x 14inTabloid
: 11in x 17inLedger
: 17in x 11inA0
: 33.1in x 46.8inA1
: 23.4in x 33.1inA2
: 16.54in x 23.4inA3
: 11.7in x 16.54inA4
: 8.27in x 11.7inA5
: 5.83in x 8.27inA6
: 4.13in x 5.83innote
header_template and footer_template markup have the following limitations: > 1. Script tags inside templates are not evaluated. > 2. Page styles are not visible inside templates.
Arguments
display_header_footer
bool (optional)#
Display header and footer. Defaults to false
.
footer_template
str (optional)#
HTML template for the print footer. Should use the same format as the header_template.
Paper format. If set, takes priority over width or height options. Defaults to 'Letter'.
header_template
str (optional)#
HTML template for the print header. Should be valid HTML markup with following classes used to inject printing values into them:
'date'
formatted print date'title'
document title'url'
document location'pageNumber'
current page number'totalPages'
total pages in the documentheight
str | float (optional)#
Paper height, accepts values labeled with units.
Paper orientation. Defaults to false
.
Top margin, accepts values labeled with units. Defaults to 0
.
Right margin, accepts values labeled with units. Defaults to 0
.
Bottom margin, accepts values labeled with units. Defaults to 0
.
Left margin, accepts values labeled with units. Defaults to 0
.
Paper margins, defaults to none.
outline
bool (optional) Added in: v1.42#
Whether or not to embed the document outline into the PDF. Defaults to false
.
Paper ranges to print, e.g., '1-5, 8, 11-13'. Defaults to the empty string, which means print all pages.
path
Union[str, pathlib.Path] (optional)#
The file path to save the PDF to. If path is a relative path, then it is resolved relative to the current working directory. If no path is provided, the PDF won't be saved to the disk.
prefer_css_page_size
bool (optional)#
Give any CSS @page
size declared in the page priority over what is declared in width and height or format options. Defaults to false
, which will scale the content to fit the paper size.
print_background
bool (optional)#
Print background graphics. Defaults to false
.
Scale of the webpage rendering. Defaults to 1
. Scale amount must be between 0.1 and 2.
tagged
bool (optional) Added in: v1.42#
Whether or not to generate tagged (accessible) PDF. Defaults to false
.
Paper width, accepts values labeled with units.
Returns
reloadAdded before v1.9 page.reloadThis method reloads the current page, in the same way as if the user had triggered a browser refresh. Returns the main resource response. In case of multiple redirects, the navigation will resolve with the response of the last redirect.
Usage
page.reload()
page.reload(**kwargs)
Arguments
Maximum operation time in milliseconds, defaults to 30 seconds, pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(), browser_context.set_default_timeout(), page.set_default_navigation_timeout() or page.set_default_timeout() methods.
wait_until
"load" | "domcontentloaded" | "networkidle" | "commit" (optional)#
When to consider operation succeeded, defaults to load
. Events can be either:
'domcontentloaded'
- consider operation to be finished when the DOMContentLoaded
event is fired.'load'
- consider operation to be finished when the load
event is fired.'networkidle'
- DISCOURAGED consider operation to be finished when there are no network connections for at least 500
ms. Don't use this method for testing, rely on web assertions to assess readiness instead.'commit'
- consider operation to be finished when network response is received and the document started loading.Returns
remove_locator_handlerAdded in: v1.44 page.remove_locator_handlerRemoves all locator handlers added by page.add_locator_handler() for a specific locator.
Usage
page.remove_locator_handler(locator)
Arguments
Locator passed to page.add_locator_handler().
Returns
request_gcAdded in: v1.48 page.request_gcRequest the page to perform garbage collection. Note that there is no guarantee that all unreachable objects will be collected.
This is useful to help detect memory leaks. For example, if your page has a large object 'suspect'
that might be leaked, you can check that it does not leak by using a WeakRef
.
page.evaluate("globalThis.suspectWeakRef = new WeakRef(suspect)")
page.request_gc()
assert page.evaluate("!globalThis.suspectWeakRef.deref()")
await page.evaluate("globalThis.suspectWeakRef = new WeakRef(suspect)")
await page.request_gc()
assert await page.evaluate("!globalThis.suspectWeakRef.deref()")
Usage
Returns
routeAdded before v1.9 page.routeRouting provides the capability to modify network requests that are made by a page.
Once routing is enabled, every request matching the url pattern will stall unless it's continued, fulfilled or aborted.
note
The handler will only be called for the first url if the response is a redirect.
note
page.route() will not intercept requests intercepted by Service Worker. See this issue. We recommend disabling Service Workers when using request interception by setting service_workers to 'block'
.
Usage
An example of a naive handler that aborts all image requests:
page = browser.new_page()
page.route("**/*.{png,jpg,jpeg}", lambda route: route.abort())
page.goto("https://example.com")
browser.close()
page = await browser.new_page()
await page.route("**/*.{png,jpg,jpeg}", lambda route: route.abort())
await page.goto("https://example.com")
await browser.close()
or the same snippet using a regex pattern instead:
page = browser.new_page()
page.route(re.compile(r"(\.png$)|(\.jpg$)"), lambda route: route.abort())
page.goto("https://example.com")
browser.close()
page = await browser.new_page()
await page.route(re.compile(r"(\.png$)|(\.jpg$)"), lambda route: route.abort())
await page.goto("https://example.com")
await browser.close()
It is possible to examine the request to decide the route action. For example, mocking all requests that contain some post data, and leaving all other requests as is:
def handle_route(route: Route):
if ("my-string" in route.request.post_data):
route.fulfill(body="mocked-data")
else:
route.continue_()
page.route("/api/**", handle_route)
async def handle_route(route: Route):
if ("my-string" in route.request.post_data):
await route.fulfill(body="mocked-data")
else:
await route.continue_()
await page.route("/api/**", handle_route)
Page routes take precedence over browser context routes (set up with browser_context.route()) when request matches both handlers.
To remove a route with its handler you can use page.unroute().
note
Enabling routing disables http cache.
Arguments
url
str | Pattern | Callable[URL]:bool#
A glob pattern, regex pattern, or predicate that receives a URL to match during routing. If base_url is set in the context options and the provided URL is a string that does not start with *
, it is resolved using the new URL()
constructor.
handler
Callable[Route, Request]:Promise[Any] | Any#
handler function to route the request.
times
int (optional) Added in: v1.15#
How often a route should be used. By default it will be used every time.
Returns
route_from_harAdded in: v1.23 page.route_from_harIf specified the network requests that are made in the page will be served from the HAR file. Read more about Replaying from HAR.
Playwright will not serve requests intercepted by Service Worker from the HAR file. See this issue. We recommend disabling Service Workers when using request interception by setting service_workers to 'block'
.
Usage
page.route_from_har(har)
page.route_from_har(har, **kwargs)
Arguments
har
Union[str, pathlib.Path]#
Path to a HAR file with prerecorded network data. If path
is a relative path, then it is resolved relative to the current working directory.
not_found
"abort" | "fallback" (optional)#
Defaults to abort.
If specified, updates the given HAR with the actual network information instead of serving from file. The file is written to disk when browser_context.close() is called.
update_content
"embed" | "attach" (optional) Added in: v1.32#
Optional setting to control resource content management. If attach
is specified, resources are persisted as separate files or entries in the ZIP archive. If embed
is specified, content is stored inline the HAR file.
update_mode
"full" | "minimal" (optional) Added in: v1.32#
When set to minimal
, only record information necessary for routing from HAR. This omits sizes, timing, page, cookies, security and other types of HAR information that are not used when replaying from HAR. Defaults to minimal
.
A glob pattern, regular expression or predicate to match the request URL. Only requests with URL matching the pattern will be served from the HAR file. If not specified, all requests are served from the HAR file.
Returns
route_web_socketAdded in: v1.48 page.route_web_socketThis method allows to modify websocket connections that are made by the page.
Note that only WebSocket
s created after this method was called will be routed. It is recommended to call this method before navigating the page.
Usage
Below is an example of a simple mock that responds to a single message. See WebSocketRoute for more details and examples.
def message_handler(ws: WebSocketRoute, message: Union[str, bytes]):
if message == "request":
ws.send("response")
def handler(ws: WebSocketRoute):
ws.on_message(lambda message: message_handler(ws, message))
page.route_web_socket("/ws", handler)
def message_handler(ws: WebSocketRoute, message: Union[str, bytes]):
if message == "request":
ws.send("response")
def handler(ws: WebSocketRoute):
ws.on_message(lambda message: message_handler(ws, message))
await page.route_web_socket("/ws", handler)
Arguments
url
str | Pattern | Callable[URL]:bool#
Only WebSockets with the url matching this pattern will be routed. A string pattern can be relative to the base_url context option.
handler
Callable[WebSocketRoute]:Promise[Any] | Any#
Handler function to route the WebSocket.
Returns
screenshotAdded before v1.9 page.screenshotReturns the buffer with the captured screenshot.
Usage
page.screenshot()
page.screenshot(**kwargs)
Arguments
animations
"disabled" | "allow" (optional)#
When set to "disabled"
, stops CSS animations, CSS transitions and Web Animations. Animations get different treatment depending on their duration:
transitionend
event.Defaults to "allow"
that leaves animations untouched.
caret
"hide" | "initial" (optional)#
When set to "hide"
, screenshot will hide text caret. When set to "initial"
, text caret behavior will not be changed. Defaults to "hide"
.
x
float
x-coordinate of top-left corner of clip area
y
float
y-coordinate of top-left corner of clip area
width
float
width of clipping area
height
float
height of clipping area
An object which specifies clipping of the resulting image.
When true, takes a screenshot of the full scrollable page, instead of the currently visible viewport. Defaults to false
.
mask
List[Locator] (optional)#
Specify locators that should be masked when the screenshot is taken. Masked elements will be overlaid with a pink box #FF00FF
(customized by mask_color) that completely covers its bounding box. The mask is also applied to invisible elements, see Matching only visible elements to disable that.
mask_color
str (optional) Added in: v1.35#
Specify the color of the overlay box for masked elements, in CSS color format. Default color is pink #FF00FF
.
omit_background
bool (optional)#
Hides default white background and allows capturing screenshots with transparency. Not applicable to jpeg
images. Defaults to false
.
path
Union[str, pathlib.Path] (optional)#
The file path to save the image to. The screenshot type will be inferred from file extension. If path is a relative path, then it is resolved relative to the current working directory. If no path is provided, the image won't be saved to the disk.
The quality of the image, between 0-100. Not applicable to png
images.
scale
"css" | "device" (optional)#
When set to "css"
, screenshot will have a single pixel per each css pixel on the page. For high-dpi devices, this will keep screenshots small. Using "device"
option will produce a single pixel per each device pixel, so screenshots of high-dpi devices will be twice as large or even larger.
Defaults to "device"
.
style
str (optional) Added in: v1.41#
Text of the stylesheet to apply while making the screenshot. This is where you can hide dynamic elements, make elements invisible or change their properties to help you creating repeatable screenshots. This stylesheet pierces the Shadow DOM and applies to the inner frames.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
type
"png" | "jpeg" (optional)#
Specify screenshot type, defaults to png
.
Returns
set_contentAdded before v1.9 page.set_contentThis method internally calls document.write(), inheriting all its specific characteristics and behaviors.
Usage
page.set_content(html)
page.set_content(html, **kwargs)
Arguments
HTML markup to assign to the page.
Maximum operation time in milliseconds, defaults to 30 seconds, pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(), browser_context.set_default_timeout(), page.set_default_navigation_timeout() or page.set_default_timeout() methods.
wait_until
"load" | "domcontentloaded" | "networkidle" | "commit" (optional)#
When to consider operation succeeded, defaults to load
. Events can be either:
'domcontentloaded'
- consider operation to be finished when the DOMContentLoaded
event is fired.'load'
- consider operation to be finished when the load
event is fired.'networkidle'
- DISCOURAGED consider operation to be finished when there are no network connections for at least 500
ms. Don't use this method for testing, rely on web assertions to assess readiness instead.'commit'
- consider operation to be finished when network response is received and the document started loading.Returns
set_default_navigation_timeoutAdded before v1.9 page.set_default_navigation_timeoutThis setting will change the default maximum navigation time for the following methods and related shortcuts:
Usage
page.set_default_navigation_timeout(timeout)
Arguments
set_default_timeoutAdded before v1.9 page.set_default_timeoutThis setting will change the default maximum time for all the methods accepting timeout option.
Usage
page.set_default_timeout(timeout)
Arguments
Added before v1.9 page.set_extra_http_headersThe extra HTTP headers will be sent with every request the page initiates.
Usage
page.set_extra_http_headers(headers)
Arguments
An object containing additional HTTP headers to be sent with every request. All header values must be strings.
Returns
set_viewport_sizeAdded before v1.9 page.set_viewport_sizeIn the case of multiple pages in a single browser, each page can have its own viewport size. However, browser.new_context() allows to set viewport size (and more) for all pages in the context at once.
page.set_viewport_size() will resize the page. A lot of websites don't expect phones to change size, so you should set the viewport size before navigating to the page. page.set_viewport_size() will also reset screen
size, use browser.new_context() with screen
and viewport
parameters if you need better control of these properties.
Usage
page = browser.new_page()
page.set_viewport_size({"width": 640, "height": 480})
page.goto("https://example.com")
page = await browser.new_page()
await page.set_viewport_size({"width": 640, "height": 480})
await page.goto("https://example.com")
Arguments
Returns
titleAdded before v1.9 page.titleReturns the page's title.
Usage
Returns
unrouteAdded before v1.9 page.unrouteRemoves a route created with page.route(). When handler is not specified, removes all routes for the url.
Usage
page.unroute(url)
page.unroute(url, **kwargs)
Arguments
url
str | Pattern | Callable[URL]:bool#
A glob pattern, regex pattern or predicate receiving URL to match while routing.
handler
Callable[Route, Request]:Promise[Any] | Any (optional)#
Optional handler function to route the request.
Returns
unroute_allAdded in: v1.41 page.unroute_allRemoves all routes created with page.route() and page.route_from_har().
Usage
page.unroute_all()
page.unroute_all(**kwargs)
Arguments
behavior
"wait" | "ignoreErrors" | "default" (optional)#
Specifies whether to wait for already running handlers and what to do if they throw errors:
'default'
- do not wait for current handler calls (if any) to finish, if unrouted handler throws, it may result in unhandled error'wait'
- wait for current handler calls (if any) to finish'ignoreErrors'
- do not wait for current handler calls (if any) to finish, all errors thrown by the handlers after unrouting are silently caughtReturns
wait_for_eventAdded before v1.9 page.wait_for_eventWaits for given event
to fire. If predicate is provided, it passes event's value into the predicate
function and waits for predicate(event)
to return a truthy value. Will throw an error if the page is closed before the event
is fired.
Usage
page.wait_for_event(event)
page.wait_for_event(event, **kwargs)
Arguments
Event name, same one typically passed into *.on(event)
.
predicate
Callable (optional)#
Receives the event data and resolves to truthy value when the waiting should resolve.
Maximum time to wait for in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout().
Returns
wait_for_functionAdded before v1.9 page.wait_for_functionReturns when the expression returns a truthy value. It resolves to a JSHandle of the truthy value.
Usage
The page.wait_for_function() can be used to observe viewport size change:
from playwright.sync_api import sync_playwright, Playwright
def run(playwright: Playwright):
webkit = playwright.webkit
browser = webkit.launch()
page = browser.new_page()
page.evaluate("window.x = 0; setTimeout(() => { window.x = 100 }, 1000);")
page.wait_for_function("() => window.x > 0")
browser.close()
with sync_playwright() as playwright:
run(playwright)
import asyncio
from playwright.async_api import async_playwright, Playwright
async def run(playwright: Playwright):
webkit = playwright.webkit
browser = await webkit.launch()
page = await browser.new_page()
await page.evaluate("window.x = 0; setTimeout(() => { window.x = 100 }, 1000);")
await page.wait_for_function("() => window.x > 0")
await browser.close()
async def main():
async with async_playwright() as playwright:
await run(playwright)
asyncio.run(main())
To pass an argument to the predicate of page.wait_for_function() function:
selector = ".foo"
page.wait_for_function("selector => !!document.querySelector(selector)", selector)
selector = ".foo"
await page.wait_for_function("selector => !!document.querySelector(selector)", selector)
Arguments
JavaScript expression to be evaluated in the browser context. If the expression evaluates to a function, the function is automatically invoked.
arg
EvaluationArgument (optional)#
Optional argument to pass to expression.
polling
float | "raf" (optional)#
If polling is 'raf'
, then expression is constantly executed in requestAnimationFrame
callback. If polling is a number, then it is treated as an interval in milliseconds at which the function would be executed. Defaults to raf
.
Maximum time to wait for in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
wait_for_load_stateAdded before v1.9 page.wait_for_load_stateReturns when the required load state has been reached.
This resolves when the page reaches a required load state, load
by default. The navigation must have been committed when this method is called. If current document has already reached the required state, resolves immediately.
Usage
page.get_by_role("button").click()
page.wait_for_load_state()
await page.get_by_role("button").click()
await page.wait_for_load_state()
with page.expect_popup() as page_info:
page.get_by_role("button").click()
popup = page_info.value
popup.wait_for_load_state("domcontentloaded")
print(popup.title())
async with page.expect_popup() as page_info:
await page.get_by_role("button").click()
popup = await page_info.value
await popup.wait_for_load_state("domcontentloaded")
print(await popup.title())
Arguments
state
"load" | "domcontentloaded" | "networkidle" (optional)#
Optional load state to wait for, defaults to load
. If the state has been already reached while loading current document, the method resolves immediately. Can be one of:
'load'
- wait for the load
event to be fired.'domcontentloaded'
- wait for the DOMContentLoaded
event to be fired.'networkidle'
- DISCOURAGED wait until there are no network connections for at least 500
ms. Don't use this method for testing, rely on web assertions to assess readiness instead.Maximum operation time in milliseconds, defaults to 30 seconds, pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(), browser_context.set_default_timeout(), page.set_default_navigation_timeout() or page.set_default_timeout() methods.
Returns
wait_for_urlAdded in: v1.11 page.wait_for_urlWaits for the main frame to navigate to the given URL.
Usage
page.click("a.delayed-navigation")
page.wait_for_url("**/target.html")
await page.click("a.delayed-navigation")
await page.wait_for_url("**/target.html")
Arguments
url
str | Pattern | Callable[URL]:bool#
A glob pattern, regex pattern or predicate receiving URL to match while waiting for the navigation. Note that if the parameter is a string without wildcard characters, the method will wait for navigation to URL that is exactly equal to the string.
Maximum operation time in milliseconds, defaults to 30 seconds, pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(), browser_context.set_default_timeout(), page.set_default_navigation_timeout() or page.set_default_timeout() methods.
wait_until
"load" | "domcontentloaded" | "networkidle" | "commit" (optional)#
When to consider operation succeeded, defaults to load
. Events can be either:
'domcontentloaded'
- consider operation to be finished when the DOMContentLoaded
event is fired.'load'
- consider operation to be finished when the load
event is fired.'networkidle'
- DISCOURAGED consider operation to be finished when there are no network connections for at least 500
ms. Don't use this method for testing, rely on web assertions to assess readiness instead.'commit'
- consider operation to be finished when network response is received and the document started loading.Returns
Properties clockAdded in: v1.45 page.clockPlaywright has ability to mock clock and passage of time.
Usage
Type
contextAdded before v1.9 page.contextGet the browser context that the page belongs to.
Usage
Returns
framesAdded before v1.9 page.framesAn array of all frames attached to the page.
Usage
Returns
is_closedAdded before v1.9 page.is_closedIndicates that the page has been closed.
Usage
Returns
keyboardAdded before v1.9 page.keyboardUsage
Type
main_frameAdded before v1.9 page.main_frameThe page's main frame. Page is guaranteed to have a main frame which persists during navigations.
Usage
Returns
mouseAdded before v1.9 page.mouseUsage
Type
requestAdded in: v1.16 page.requestAPI testing helper associated with this page. This method returns the same instance as browser_context.request on the page's context. See browser_context.request for more details.
Usage
Type
touchscreenAdded before v1.9 page.touchscreenUsage
Type
urlAdded before v1.9 page.urlUsage
Returns
videoAdded before v1.9 page.videoVideo object associated with this page.
Usage
Returns
viewport_sizeAdded before v1.9 page.viewport_sizeUsage
Returns
workersAdded before v1.9 page.workersThis method returns all of the dedicated WebWorkers associated with the page.
note
This does not contain ServiceWorkers
Usage
Returns
Events on("close")Added before v1.9 page.on("close")Emitted when the page closes.
Usage
page.on("close", handler)
Event data
on("console")Added before v1.9 page.on("console")Emitted when JavaScript within the page calls one of console API methods, e.g. console.log
or console.dir
.
The arguments passed into console.log
are available on the ConsoleMessage event handler argument.
Usage
def print_args(msg):
for arg in msg.args:
print(arg.json_value())
page.on("console", print_args)
page.evaluate("console.log('hello', 5, { foo: 'bar' })")
async def print_args(msg):
values = []
for arg in msg.args:
values.append(await arg.json_value())
print(values)
page.on("console", print_args)
await page.evaluate("console.log('hello', 5, { foo: 'bar' })")
Event data
on("crash")Added before v1.9 page.on("crash")Emitted when the page crashes. Browser pages might crash if they try to allocate too much memory. When the page crashes, ongoing and subsequent operations will throw.
The most common way to deal with crashes is to catch an exception:
try:
page.click("button")
page.wait_for_event("popup")
except Error as e:
pass
try:
await page.click("button")
await page.wait_for_event("popup")
except Error as e:
pass
Usage
page.on("crash", handler)
Event data
on("dialog")Added before v1.9 page.on("dialog")Emitted when a JavaScript dialog appears, such as alert
, prompt
, confirm
or beforeunload
. Listener must either dialog.accept() or dialog.dismiss() the dialog - otherwise the page will freeze waiting for the dialog, and actions like click will never finish.
Usage
page.on("dialog", lambda dialog: dialog.accept())
Event data
on("domcontentloaded")Added in: v1.9 page.on("domcontentloaded")Emitted when the JavaScript DOMContentLoaded
event is dispatched.
Usage
page.on("domcontentloaded", handler)
Event data
on("download")Added before v1.9 page.on("download")Emitted when attachment download started. User can access basic file operations on downloaded content via the passed Download instance.
Usage
page.on("download", handler)
Event data
on("filechooser")Added in: v1.9 page.on("filechooser")Emitted when a file chooser is supposed to appear, such as after clicking the <input type=file>
. Playwright can respond to it via setting the input files using file_chooser.set_files() that can be uploaded after that.
page.on("filechooser", lambda file_chooser: file_chooser.set_files("/tmp/myfile.pdf"))
Usage
page.on("filechooser", handler)
Event data
on("frameattached")Added in: v1.9 page.on("frameattached")Emitted when a frame is attached.
Usage
page.on("frameattached", handler)
Event data
on("framedetached")Added in: v1.9 page.on("framedetached")Emitted when a frame is detached.
Usage
page.on("framedetached", handler)
Event data
on("framenavigated")Added in: v1.9 page.on("framenavigated")Emitted when a frame is navigated to a new url.
Usage
page.on("framenavigated", handler)
Event data
on("load")Added before v1.9 page.on("load")Emitted when the JavaScript load
event is dispatched.
Usage
Event data
on("pageerror")Added in: v1.9 page.on("pageerror")Emitted when an uncaught exception happens within the page.
page.on("pageerror", lambda exc: print(f"uncaught exception: {exc}"))
page.goto("data:text/html,<script>throw new Error('test')</script>")
page.on("pageerror", lambda exc: print(f"uncaught exception: {exc}"))
await page.goto("data:text/html,<script>throw new Error('test')</script>")
Usage
page.on("pageerror", handler)
Event data
Added before v1.9 page.on("popup")Emitted when the page opens a new tab or window. This event is emitted in addition to the browser_context.on("page"), but only for popups relevant to this page.
The earliest moment that page is available is when it has navigated to the initial url. For example, when opening a popup with window.open('http://example.com')
, this event will fire when the network request to "http://example.com" is done and its response has started loading in the popup. If you would like to route/listen to this network request, use browser_context.route() and browser_context.on("request") respectively instead of similar methods on the Page.
with page.expect_event("popup") as page_info:
page.get_by_text("open the popup").click()
popup = page_info.value
print(popup.evaluate("location.href"))
async with page.expect_event("popup") as page_info:
await page.get_by_text("open the popup").click()
popup = await page_info.value
print(await popup.evaluate("location.href"))
Usage
page.on("popup", handler)
Event data
on("request")Added before v1.9 page.on("request")Emitted when a page issues a request. The request object is read-only. In order to intercept and mutate requests, see page.route() or browser_context.route().
Usage
page.on("request", handler)
Event data
on("requestfailed")Added in: v1.9 page.on("requestfailed")Emitted when a request fails, for example by timing out.
page.on("requestfailed", lambda request: print(request.url + " " + request.failure.error_text))
note
HTTP Error responses, such as 404 or 503, are still successful responses from HTTP standpoint, so request will complete with page.on("requestfinished") event and not with page.on("requestfailed"). A request will only be considered failed when the client cannot get an HTTP response from the server, e.g. due to network error net::ERR_FAILED.
Usage
page.on("requestfailed", handler)
Event data
on("requestfinished")Added in: v1.9 page.on("requestfinished")Emitted when a request finishes successfully after downloading the response body. For a successful response, the sequence of events is request
, response
and requestfinished
.
Usage
page.on("requestfinished", handler)
Event data
on("response")Added before v1.9 page.on("response")Emitted when response status and headers are received for a request. For a successful response, the sequence of events is request
, response
and requestfinished
.
Usage
page.on("response", handler)
Event data
on("websocket")Added in: v1.9 page.on("websocket")Emitted when WebSocket request is sent.
Usage
page.on("websocket", handler)
Event data
on("worker")Added before v1.9 page.on("worker")Emitted when a dedicated WebWorker is spawned by the page.
Usage
page.on("worker", handler)
Event data
Deprecated accessibilityAdded before v1.9 page.accessibilityDeprecated
This property is discouraged. Please use other libraries such as Axe if you need to test page accessibility. See our Node.js guide for integration with Axe.
Usage
Type
checkAdded before v1.9 page.checkThis method checks an element matching selector by performing the following steps:
When all steps combined have not finished during the specified timeout, this method throws a TimeoutError. Passing zero timeout disables this.
Usage
page.check(selector)
page.check(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
Whether to bypass the actionability checks. Defaults to false
.
no_wait_after
bool (optional)#
Deprecated
This option has no effect.
This option has no effect.
position
Dict (optional) Added in: v1.11#
A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
trial
bool (optional) Added in: v1.11#
When set, this method only performs the actionability checks and skips the action. Defaults to false
. Useful to wait until the element is ready for the action without performing it.
Returns
clickAdded before v1.9 page.clickThis method clicks an element matching selector by performing the following steps:
When all steps combined have not finished during the specified timeout, this method throws a TimeoutError. Passing zero timeout disables this.
Usage
page.click(selector)
page.click(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
button
"left" | "right" | "middle" (optional)#
Defaults to left
.
defaults to 1. See UIEvent.detail.
Time to wait between mousedown
and mouseup
in milliseconds. Defaults to 0.
Whether to bypass the actionability checks. Defaults to false
.
modifiers
List["Alt" | "Control" | "ControlOrMeta" | "Meta" | "Shift"] (optional)#
Modifier keys to press. Ensures that only these modifiers are pressed during the operation, and then restores current modifiers back. If not specified, currently pressed modifiers are used. "ControlOrMeta" resolves to "Control" on Windows and Linux and to "Meta" on macOS.
no_wait_after
bool (optional)#
Deprecated
This option will default to true
in the future.
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
.
A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
trial
bool (optional) Added in: v1.11#
When set, this method only performs the actionability checks and skips the action. Defaults to false
. Useful to wait until the element is ready for the action without performing it. Note that keyboard modifiers
will be pressed regardless of trial
to allow testing elements which are only visible when those keys are pressed.
Returns
dblclickAdded before v1.9 page.dblclickThis method double clicks an element matching selector by performing the following steps:
When all steps combined have not finished during the specified timeout, this method throws a TimeoutError. Passing zero timeout disables this.
note
page.dblclick()
dispatches two click
events and a single dblclick
event.
Usage
page.dblclick(selector)
page.dblclick(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
button
"left" | "right" | "middle" (optional)#
Defaults to left
.
Time to wait between mousedown
and mouseup
in milliseconds. Defaults to 0.
Whether to bypass the actionability checks. Defaults to false
.
modifiers
List["Alt" | "Control" | "ControlOrMeta" | "Meta" | "Shift"] (optional)#
Modifier keys to press. Ensures that only these modifiers are pressed during the operation, and then restores current modifiers back. If not specified, currently pressed modifiers are used. "ControlOrMeta" resolves to "Control" on Windows and Linux and to "Meta" on macOS.
no_wait_after
bool (optional)#
Deprecated
This option has no effect.
This option has no effect.
A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
trial
bool (optional) Added in: v1.11#
When set, this method only performs the actionability checks and skips the action. Defaults to false
. Useful to wait until the element is ready for the action without performing it. Note that keyboard modifiers
will be pressed regardless of trial
to allow testing elements which are only visible when those keys are pressed.
Returns
dispatch_eventAdded before v1.9 page.dispatch_eventThe snippet below dispatches the click
event on the element. Regardless of the visibility state of the element, click
is dispatched. This is equivalent to calling element.click().
Usage
page.dispatch_event("button#submit", "click")
await page.dispatch_event("button#submit", "click")
Under the hood, it creates an instance of an event based on the given type, initializes it with event_init properties and dispatches it on the element. Events are composed
, cancelable
and bubble by default.
Since event_init is event-specific, please refer to the events documentation for the lists of initial properties:
You can also specify JSHandle
as the property value if you want live objects to be passed into the event:
data_transfer = page.evaluate_handle("new DataTransfer()")
page.dispatch_event("#source", "dragstart", { "dataTransfer": data_transfer })
data_transfer = await page.evaluate_handle("new DataTransfer()")
await page.dispatch_event("#source", "dragstart", { "dataTransfer": data_transfer })
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
DOM event type: "click"
, "dragstart"
, etc.
event_init
EvaluationArgument (optional)#
Optional event-specific initialization properties.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
eval_on_selectorAdded in: v1.9 page.eval_on_selectorDiscouraged
This method does not wait for the element to pass actionability checks and therefore can lead to the flaky tests. Use locator.evaluate(), other Locator helper methods or web-first assertions instead.
The method finds an element matching the specified selector within the page and passes it as a first argument to expression. If no elements match the selector, the method throws an error. Returns the value of expression.
If expression returns a Promise, then page.eval_on_selector() would wait for the promise to resolve and return its value.
Usage
search_value = page.eval_on_selector("#search", "el => el.value")
preload_href = page.eval_on_selector("link[rel=preload]", "el => el.href")
html = page.eval_on_selector(".main-container", "(e, suffix) => e.outer_html + suffix", "hello")
search_value = await page.eval_on_selector("#search", "el => el.value")
preload_href = await page.eval_on_selector("link[rel=preload]", "el => el.href")
html = await page.eval_on_selector(".main-container", "(e, suffix) => e.outer_html + suffix", "hello")
Arguments
A selector to query for.
JavaScript expression to be evaluated in the browser context. If the expression evaluates to a function, the function is automatically invoked.
arg
EvaluationArgument (optional)#
Optional argument to pass to expression.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Returns
eval_on_selector_allAdded in: v1.9 page.eval_on_selector_allThe method finds all elements matching the specified selector within the page and passes an array of matched elements as a first argument to expression. Returns the result of expression invocation.
If expression returns a Promise, then page.eval_on_selector_all() would wait for the promise to resolve and return its value.
Usage
div_counts = page.eval_on_selector_all("div", "(divs, min) => divs.length >= min", 10)
div_counts = await page.eval_on_selector_all("div", "(divs, min) => divs.length >= min", 10)
Arguments
A selector to query for.
JavaScript expression to be evaluated in the browser context. If the expression evaluates to a function, the function is automatically invoked.
arg
EvaluationArgument (optional)#
Optional argument to pass to expression.
Returns
expect_navigationAdded before v1.9 page.expect_navigationWaits for the main frame navigation and returns the main resource response. In case of multiple redirects, the navigation will resolve with the response of the last redirect. In case of navigation to a different anchor or navigation due to History API usage, the navigation will resolve with null
.
Usage
This resolves when the page navigates to a new URL or reloads. It is useful for when you run code which will indirectly cause the page to navigate. e.g. The click target has an onclick
handler that triggers navigation from a setTimeout
. Consider this example:
with page.expect_navigation():
page.get_by_text("Navigate after timeout").click()
async with page.expect_navigation():
await page.get_by_text("Navigate after timeout").click()
note
Usage of the History API to change the URL is considered a navigation.
Arguments
Maximum operation time in milliseconds, defaults to 30 seconds, pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(), browser_context.set_default_timeout(), page.set_default_navigation_timeout() or page.set_default_timeout() methods.
url
str | Pattern | Callable[URL]:bool (optional)#
A glob pattern, regex pattern or predicate receiving URL to match while waiting for the navigation. Note that if the parameter is a string without wildcard characters, the method will wait for navigation to URL that is exactly equal to the string.
wait_until
"load" | "domcontentloaded" | "networkidle" | "commit" (optional)#
When to consider operation succeeded, defaults to load
. Events can be either:
'domcontentloaded'
- consider operation to be finished when the DOMContentLoaded
event is fired.'load'
- consider operation to be finished when the load
event is fired.'networkidle'
- DISCOURAGED consider operation to be finished when there are no network connections for at least 500
ms. Don't use this method for testing, rely on web assertions to assess readiness instead.'commit'
- consider operation to be finished when network response is received and the document started loading.Returns
fillAdded before v1.9 page.fillThis method waits for an element matching selector, waits for actionability checks, focuses the element, fills it and triggers an input
event after filling. Note that you can pass an empty string to clear the input field.
If the target element is not an <input>
, <textarea>
or [contenteditable]
element, this method throws an error. However, if the element is inside the <label>
element that has an associated control, the control will be filled instead.
To send fine-grained keyboard events, use locator.press_sequentially().
Usage
page.fill(selector, value)
page.fill(selector, value, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
Value to fill for the <input>
, <textarea>
or [contenteditable]
element.
force
bool (optional) Added in: v1.13#
Whether to bypass the actionability checks. Defaults to false
.
no_wait_after
bool (optional)#
Deprecated
This option has no effect.
This option has no effect.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
focusAdded before v1.9 page.focusThis method fetches an element with selector and focuses it. If there's no element matching selector, the method waits until a matching element appears in the DOM.
Usage
page.focus(selector)
page.focus(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
get_attributeAdded before v1.9 page.get_attributeReturns element attribute value.
Usage
page.get_attribute(selector, name)
page.get_attribute(selector, name, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
Attribute name to get the value for.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
hoverAdded before v1.9 page.hoverThis method hovers over an element matching selector by performing the following steps:
When all steps combined have not finished during the specified timeout, this method throws a TimeoutError. Passing zero timeout disables this.
Usage
page.hover(selector)
page.hover(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
Whether to bypass the actionability checks. Defaults to false
.
modifiers
List["Alt" | "Control" | "ControlOrMeta" | "Meta" | "Shift"] (optional)#
Modifier keys to press. Ensures that only these modifiers are pressed during the operation, and then restores current modifiers back. If not specified, currently pressed modifiers are used. "ControlOrMeta" resolves to "Control" on Windows and Linux and to "Meta" on macOS.
no_wait_after
bool (optional) Added in: v1.28#
Deprecated
This option has no effect.
This option has no effect.
A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
trial
bool (optional) Added in: v1.11#
When set, this method only performs the actionability checks and skips the action. Defaults to false
. Useful to wait until the element is ready for the action without performing it. Note that keyboard modifiers
will be pressed regardless of trial
to allow testing elements which are only visible when those keys are pressed.
Returns
inner_htmlAdded before v1.9 page.inner_htmlReturns element.innerHTML
.
Usage
page.inner_html(selector)
page.inner_html(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
inner_textAdded before v1.9 page.inner_textReturns element.innerText
.
Usage
page.inner_text(selector)
page.inner_text(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
input_valueAdded in: v1.13 page.input_valueReturns input.value
for the selected <input>
or <textarea>
or <select>
element.
Throws for non-input elements. However, if the element is inside the <label>
element that has an associated control, returns the value of the control.
Usage
page.input_value(selector)
page.input_value(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
is_checkedAdded before v1.9 page.is_checkedReturns whether the element is checked. Throws if the element is not a checkbox or radio input.
Usage
page.is_checked(selector)
page.is_checked(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
is_disabledAdded before v1.9 page.is_disabledReturns whether the element is disabled, the opposite of enabled.
Usage
page.is_disabled(selector)
page.is_disabled(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
is_editableAdded before v1.9 page.is_editableReturns whether the element is editable.
Usage
page.is_editable(selector)
page.is_editable(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
is_enabledAdded before v1.9 page.is_enabledReturns whether the element is enabled.
Usage
page.is_enabled(selector)
page.is_enabled(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
is_hiddenAdded before v1.9 page.is_hiddenReturns whether the element is hidden, the opposite of visible. selector that does not match any elements is considered hidden.
Usage
page.is_hidden(selector)
page.is_hidden(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Deprecated
This option is ignored. page.is_hidden() does not wait for the element to become hidden and returns immediately.
Returns
is_visibleAdded before v1.9 page.is_visibleReturns whether the element is visible. selector that does not match any elements is considered not visible.
Usage
page.is_visible(selector)
page.is_visible(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Deprecated
This option is ignored. page.is_visible() does not wait for the element to become visible and returns immediately.
Returns
pressAdded before v1.9 page.pressFocuses the element, and then uses keyboard.down() and keyboard.up().
key can specify the intended keyboardEvent.key value or a single character to generate the text for. A superset of the key values can be found here. Examples of the keys are:
F1
- F12
, Digit0
- Digit9
, KeyA
- KeyZ
, Backquote
, Minus
, Equal
, Backslash
, Backspace
, Tab
, Delete
, Escape
, ArrowDown
, End
, Enter
, Home
, Insert
, PageDown
, PageUp
, ArrowRight
, ArrowUp
, etc.
Following modification shortcuts are also supported: Shift
, Control
, Alt
, Meta
, ShiftLeft
, ControlOrMeta
. ControlOrMeta
resolves to Control
on Windows and Linux and to Meta
on macOS.
Holding down Shift
will type the text that corresponds to the key in the upper case.
If key is a single character, it is case-sensitive, so the values a
and A
will generate different respective texts.
Shortcuts such as key: "Control+o"
, key: "Control++
or key: "Control+Shift+T"
are supported as well. When specified with the modifier, modifier is pressed and being held while the subsequent key is being pressed.
Usage
page = browser.new_page()
page.goto("https://keycode.info")
page.press("body", "A")
page.screenshot(path="a.png")
page.press("body", "ArrowLeft")
page.screenshot(path="arrow_left.png")
page.press("body", "Shift+O")
page.screenshot(path="o.png")
browser.close()
page = await browser.new_page()
await page.goto("https://keycode.info")
await page.press("body", "A")
await page.screenshot(path="a.png")
await page.press("body", "ArrowLeft")
await page.screenshot(path="arrow_left.png")
await page.press("body", "Shift+O")
await page.screenshot(path="o.png")
await browser.close()
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
Name of the key to press or a character to generate, such as ArrowLeft
or a
.
Time to wait between keydown
and keyup
in milliseconds. Defaults to 0.
no_wait_after
bool (optional)#
Deprecated
This option will default to true
in the future.
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
.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
query_selectorAdded in: v1.9 page.query_selectorThe method finds an element matching the specified selector within the page. If no elements match the selector, the return value resolves to null
. To wait for an element on the page, use locator.wait_for().
Usage
page.query_selector(selector)
page.query_selector(selector, **kwargs)
Arguments
A selector to query for.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Returns
query_selector_allAdded in: v1.9 page.query_selector_allThe method finds all elements matching the specified selector within the page. If no elements match the selector, the return value resolves to []
.
Usage
page.query_selector_all(selector)
Arguments
Returns
select_optionAdded before v1.9 page.select_optionThis method waits for an element matching selector, waits for actionability checks, waits until all specified options are present in the <select>
element and selects these options.
If the target element is not a <select>
element, this method throws an error. However, if the element is inside the <label>
element that has an associated control, the control will be used instead.
Returns the array of option values that have been successfully selected.
Triggers a change
and input
event once all the provided options have been selected.
Usage
page.select_option("select#colors", "blue")
page.select_option("select#colors", label="blue")
page.select_option("select#colors", value=["red", "green", "blue"])
await page.select_option("select#colors", "blue")
await page.select_option("select#colors", label="blue")
await page.select_option("select#colors", value=["red", "green", "blue"])
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
force
bool (optional) Added in: v1.13#
Whether to bypass the actionability checks. Defaults to false
.
no_wait_after
bool (optional)#
Deprecated
This option has no effect.
This option has no effect.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
element
ElementHandle | List[ElementHandle] (optional)#
Option elements to select. Optional.
index
int | List[int] (optional)#
Options to select by index. Optional.
value
str | List[str] (optional)#
Options to select by value. If the <select>
has the multiple
attribute, all given options are selected, otherwise only the first option matching one of the passed options is selected. Optional.
label
str | List[str] (optional)#
Options to select by label. If the <select>
has the multiple
attribute, all given options are selected, otherwise only the first option matching one of the passed options is selected. Optional.
Returns
set_checkedAdded in: v1.15 page.set_checkedThis method checks or unchecks an element matching selector by performing the following steps:
When all steps combined have not finished during the specified timeout, this method throws a TimeoutError. Passing zero timeout disables this.
Usage
page.set_checked(selector, checked)
page.set_checked(selector, checked, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
Whether to check or uncheck the checkbox.
Whether to bypass the actionability checks. Defaults to false
.
no_wait_after
bool (optional)#
Deprecated
This option has no effect.
This option has no effect.
A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
When set, this method only performs the actionability checks and skips the action. Defaults to false
. Useful to wait until the element is ready for the action without performing it.
Returns
set_input_filesAdded before v1.9 page.set_input_filesSets the value of the file input to these file paths or files. If some of the filePaths
are relative paths, then they are resolved relative to the current working directory. For empty array, clears the selected files. For inputs with a [webkitdirectory]
attribute, only a single directory path is supported.
This method expects selector to point to an input element. However, if the element is inside the <label>
element that has an associated control, targets the control instead.
Usage
page.set_input_files(selector, files)
page.set_input_files(selector, files, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
files
Union[str, pathlib.Path] | List[Union[str, pathlib.Path]] | Dict | List[Dict]#
no_wait_after
bool (optional)#
Deprecated
This option has no effect.
This option has no effect.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
tapAdded before v1.9 page.tapThis method taps an element matching selector by performing the following steps:
When all steps combined have not finished during the specified timeout, this method throws a TimeoutError. Passing zero timeout disables this.
Usage
page.tap(selector)
page.tap(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
Whether to bypass the actionability checks. Defaults to false
.
modifiers
List["Alt" | "Control" | "ControlOrMeta" | "Meta" | "Shift"] (optional)#
Modifier keys to press. Ensures that only these modifiers are pressed during the operation, and then restores current modifiers back. If not specified, currently pressed modifiers are used. "ControlOrMeta" resolves to "Control" on Windows and Linux and to "Meta" on macOS.
no_wait_after
bool (optional)#
Deprecated
This option has no effect.
This option has no effect.
A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
trial
bool (optional) Added in: v1.11#
When set, this method only performs the actionability checks and skips the action. Defaults to false
. Useful to wait until the element is ready for the action without performing it. Note that keyboard modifiers
will be pressed regardless of trial
to allow testing elements which are only visible when those keys are pressed.
Returns
text_contentAdded before v1.9 page.text_contentReturns element.textContent
.
Usage
page.text_content(selector)
page.text_content(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
typeAdded before v1.9 page.typeSends a keydown
, keypress
/input
, and keyup
event for each character in the text. page.type
can be used to send fine-grained keyboard events. To fill values in form fields, use page.fill().
To press a special key, like Control
or ArrowDown
, use keyboard.press().
Usage
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
A text to type into a focused element.
Time to wait between key presses in milliseconds. Defaults to 0.
no_wait_after
bool (optional)#
Deprecated
This option has no effect.
This option has no effect.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
uncheckAdded before v1.9 page.uncheckThis method unchecks an element matching selector by performing the following steps:
When all steps combined have not finished during the specified timeout, this method throws a TimeoutError. Passing zero timeout disables this.
Usage
page.uncheck(selector)
page.uncheck(selector, **kwargs)
Arguments
A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used.
Whether to bypass the actionability checks. Defaults to false
.
no_wait_after
bool (optional)#
Deprecated
This option has no effect.
This option has no effect.
position
Dict (optional) Added in: v1.11#
A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.
strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
trial
bool (optional) Added in: v1.11#
When set, this method only performs the actionability checks and skips the action. Defaults to false
. Useful to wait until the element is ready for the action without performing it.
Returns
wait_for_selectorAdded before v1.9 page.wait_for_selectorReturns when element specified by selector satisfies state option. Returns null
if waiting for hidden
or detached
.
note
Playwright automatically waits for element to be ready before performing an action. Using Locator objects and web-first assertions makes the code wait-for-selector-free.
Wait for the selector to satisfy state option (either appear/disappear from dom, or become visible/hidden). If at the moment of calling the method selector already satisfies the condition, the method will return immediately. If the selector doesn't satisfy the condition for the timeout milliseconds, the function will throw.
Usage
This method works across navigations:
from playwright.sync_api import sync_playwright, Playwright
def run(playwright: Playwright):
chromium = playwright.chromium
browser = chromium.launch()
page = browser.new_page()
for current_url in ["https://google.com", "https://bbc.com"]:
page.goto(current_url, wait_until="domcontentloaded")
element = page.wait_for_selector("img")
print("Loaded image: " + str(element.get_attribute("src")))
browser.close()
with sync_playwright() as playwright:
run(playwright)
import asyncio
from playwright.async_api import async_playwright, Playwright
async def run(playwright: Playwright):
chromium = playwright.chromium
browser = await chromium.launch()
page = await browser.new_page()
for current_url in ["https://google.com", "https://bbc.com"]:
await page.goto(current_url, wait_until="domcontentloaded")
element = await page.wait_for_selector("img")
print("Loaded image: " + str(await element.get_attribute("src")))
await browser.close()
async def main():
async with async_playwright() as playwright:
await run(playwright)
asyncio.run(main())
Arguments
A selector to query for.
state
"attached" | "detached" | "visible" | "hidden" (optional)#
Defaults to 'visible'
. Can be either:
'attached'
- wait for element to be present in DOM.'detached'
- wait for element to not be present in DOM.'visible'
- wait for element to have non-empty bounding box and no visibility:hidden
. Note that element without any content or with display:none
has an empty bounding box and is not considered visible.'hidden'
- wait for element to be either detached from DOM, or have an empty bounding box or visibility:hidden
. This is opposite to the 'visible'
option.strict
bool (optional) Added in: v1.14#
When true, the call requires selector to resolve to a single element. If given selector resolves to more than one element, the call throws an exception.
Maximum time in milliseconds. Defaults to 30000
(30 seconds). Pass 0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout() or page.set_default_timeout() methods.
Returns
wait_for_timeoutAdded before v1.9 page.wait_for_timeoutDiscouraged
Never wait for timeout in production. Tests that wait for time are inherently flaky. Use Locator actions and web assertions that wait automatically.
Waits for the given timeout in milliseconds.
Note that page.waitForTimeout()
should only be used for debugging. Tests using the timer in production are going to be flaky. Use signals such as network events, selectors becoming visible and others instead.
Usage
page.wait_for_timeout(1000)
await page.wait_for_timeout(1000)
Arguments
Returns
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4