Page
- extends: EventEmitter
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:
- Sync
- Async
from playwright.sync_api import sync_playwright
def run(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
async def run(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)
# sometime later...
page.remove_listener("request", log_request)
- page.on("close")
- page.on("console")
- page.on("crash")
- page.on("dialog")
- page.on("domcontentloaded")
- page.on("download")
- page.on("filechooser")
- page.on("frameattached")
- page.on("framedetached")
- page.on("framenavigated")
- page.on("load")
- page.on("pageerror")
- page.on("popup")
- page.on("request")
- page.on("requestfailed")
- page.on("requestfinished")
- page.on("response")
- page.on("websocket")
- page.on("worker")
- page.accessibility
- page.add_init_script(**kwargs)
- page.add_script_tag(**kwargs)
- page.add_style_tag(**kwargs)
- page.bring_to_front()
- page.check(selector, **kwargs)
- page.click(selector, **kwargs)
- page.close(**kwargs)
- page.content()
- page.context
- page.dblclick(selector, **kwargs)
- page.dispatch_event(selector, type, **kwargs)
- page.drag_and_drop(source, target, **kwargs)
- page.emulate_media(**kwargs)
- page.eval_on_selector(selector, expression, **kwargs)
- page.eval_on_selector_all(selector, expression, **kwargs)
- page.evaluate(expression, **kwargs)
- page.evaluate_handle(expression, **kwargs)
- page.expect_console_message(**kwargs)
- page.expect_download(**kwargs)
- page.expect_event(event, **kwargs)
- page.expect_file_chooser(**kwargs)
- page.expect_navigation(**kwargs)
- page.expect_popup(**kwargs)
- page.expect_request(url_or_predicate, **kwargs)
- page.expect_request_finished(**kwargs)
- page.expect_response(url_or_predicate, **kwargs)
- page.expect_websocket(**kwargs)
- page.expect_worker(**kwargs)
- page.expose_binding(name, callback, **kwargs)
- page.expose_function(name, callback)
- page.fill(selector, value, **kwargs)
- page.focus(selector, **kwargs)
- page.frame(**kwargs)
- page.frame_locator(selector)
- page.frames
- page.get_attribute(selector, name, **kwargs)
- page.get_by_alt_text(text, **kwargs)
- page.get_by_label(text, **kwargs)
- page.get_by_placeholder(text, **kwargs)
- page.get_by_role(role, **kwargs)
- page.get_by_test_id(test_id)
- page.get_by_text(text, **kwargs)
- page.get_by_title(text, **kwargs)
- page.go_back(**kwargs)
- page.go_forward(**kwargs)
- page.goto(url, **kwargs)
- page.hover(selector, **kwargs)
- page.inner_html(selector, **kwargs)
- page.inner_text(selector, **kwargs)
- page.input_value(selector, **kwargs)
- page.is_checked(selector, **kwargs)
- page.is_closed()
- page.is_disabled(selector, **kwargs)
- page.is_editable(selector, **kwargs)
- page.is_enabled(selector, **kwargs)
- page.is_hidden(selector, **kwargs)
- page.is_visible(selector, **kwargs)
- page.keyboard
- page.locator(selector, **kwargs)
- page.main_frame
- page.mouse
- page.opener()
- page.pause()
- page.pdf(**kwargs)
- page.press(selector, key, **kwargs)
- page.query_selector(selector, **kwargs)
- page.query_selector_all(selector)
- page.reload(**kwargs)
- page.request
- page.route(url, handler, **kwargs)
- page.route_from_har(har, **kwargs)
- page.screenshot(**kwargs)
- page.select_option(selector, **kwargs)
- page.set_checked(selector, checked, **kwargs)
- page.set_content(html, **kwargs)
- page.set_default_navigation_timeout(timeout)
- page.set_default_timeout(timeout)
- page.set_extra_http_headers(headers)
- page.set_input_files(selector, files, **kwargs)
- page.set_viewport_size(viewport_size)
- page.tap(selector, **kwargs)
- page.text_content(selector, **kwargs)
- page.title()
- page.touchscreen
- page.type(selector, text, **kwargs)
- page.uncheck(selector, **kwargs)
- page.unroute(url, **kwargs)
- page.url
- page.video
- page.viewport_size
- page.wait_for_event(event, **kwargs)
- page.wait_for_function(expression, **kwargs)
- page.wait_for_load_state(**kwargs)
- page.wait_for_selector(selector, **kwargs)
- page.wait_for_timeout(timeout)
- page.wait_for_url(url, **kwargs)
- page.workers
page.on("close")
Added in: v1.8- type: <Page>
Emitted when the page closes.
page.on("console")
Added in: v1.8- type: <ConsoleMessage>
Emitted when JavaScript within the page calls one of console API methods, e.g. console.log
or console.dir
. Also emitted if the page throws an error or a warning.
The arguments passed into console.log
appear as arguments on the event handler.
An example of handling console
event:
- Sync
- Async
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'})")
page.on("crash")
Added in: v1.8- type: <Page>
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:
- Sync
- Async
try:
# crash might happen during a click.
page.click("button")
# or while waiting for an event.
page.wait_for_event("popup")
except Error as e:
# when the page crashes, exception message contains "crash".
try:
# crash might happen during a click.
await page.click("button")
# or while waiting for an event.
await page.wait_for_event("popup")
except Error as e:
# when the page crashes, exception message contains "crash".
page.on("dialog")
Added in: v1.8- type: <Dialog>
Emitted when a JavaScript dialog appears, such as alert
, prompt
, confirm
or beforeunload
. Listener must either dialog.accept(**kwargs) or dialog.dismiss() the dialog - otherwise the page will freeze waiting for the dialog, and actions like click will never finish.
page.on("dialog", lambda dialog: dialog.accept())
When no page.on("dialog") listeners are present, all dialogs are automatically dismissed.
page.on("domcontentloaded")
Added in: v1.9- type: <Page>
Emitted when the JavaScript DOMContentLoaded
event is dispatched.
page.on("download")
Added in: v1.8- type: <Download>
Emitted when attachment download started. User can access basic file operations on downloaded content via the passed Download instance.
page.on("filechooser")
Added in: v1.9- type: <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(files, **kwargs) that can be uploaded after that.
page.on("filechooser", lambda file_chooser: file_chooser.set_files("/tmp/myfile.pdf"))
page.on("frameattached")
Added in: v1.9- type: <Frame>
Emitted when a frame is attached.
page.on("framedetached")
Added in: v1.9- type: <Frame>
Emitted when a frame is detached.
page.on("framenavigated")
Added in: v1.9- type: <Frame>
Emitted when a frame is navigated to a new url.
page.on("load")
Added in: v1.8- type: <Page>
Emitted when the JavaScript load
event is dispatched.
page.on("pageerror")
Added in: v1.9- type: <Error>
Emitted when an uncaught exception happens within the page.
- Sync
- Async
# Log all uncaught errors to the terminal
page.on("pageerror", lambda exc: print(f"uncaught exception: {exc}"))
# Navigate to a page with an exception.
page.goto("data:text/html,<script>throw new Error('test')</script>")
# Log all uncaught errors to the terminal
page.on("pageerror", lambda exc: print(f"uncaught exception: {exc}"))
# Navigate to a page with an exception.
await page.goto("data:text/html,<script>throw new Error('test')</script>")
page.on("popup")
Added in: v1.8- type: <Page>
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.
- Sync
- Async
with page.expect_event("popup") as page_info:
page.evaluate("window.open('https://example.com')")
popup = page_info.value
print(popup.evaluate("location.href"))
async with page.expect_event("popup") as page_info:
page.evaluate("window.open('https://example.com')")
popup = await page_info.value
print(await popup.evaluate("location.href"))
Use page.wait_for_load_state(**kwargs) to wait until the page gets to a particular state (you should not need it in most cases).
page.on("request")
Added in: v1.8- type: <Request>
Emitted when a page issues a request. The request object is read-only. In order to intercept and mutate requests, see page.route(url, handler, **kwargs) or browser_context.route(url, handler, **kwargs).
page.on("requestfailed")
Added in: v1.9- type: <Request>
Emitted when a request fails, for example by timing out.
page.on("requestfailed", lambda request: print(request.url + " " + request.failure.error_text))
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.
page.on("requestfinished")
Added in: v1.9- type: <Request>
Emitted when a request finishes successfully after downloading the response body. For a successful response, the sequence of events is request
, response
and requestfinished
.
page.on("response")
Added in: v1.8- type: <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
.
page.on("websocket")
Added in: v1.9- type: <WebSocket>
Emitted when WebSocket request is sent.
page.on("worker")
Added in: v1.8- type: <Worker>
Emitted when a dedicated WebWorker is spawned by the page.
page.add_init_script(**kwargs)
Added in: v1.8path
<Union[str, pathlib.Path]> Path to the JavaScript file. Ifpath
is a relative path, then it is resolved relative to the current working directory. Optional.#script
<str> Script to be evaluated in all pages in the browser context. Optional.#- returns:NoneType># <
Adds a script which would be evaluated in one of the following scenarios:
- Whenever the page is navigated.
- Whenever the child frame is attached or navigated. In this case, the script is evaluated in the context of the newly attached frame.
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
.
An example of overriding Math.random
before the page loads:
// preload.js
Math.random = () => 42;
- Sync
- Async
# in your playwright script, assuming the preload.js file is in same directory
page.add_init_script(path="./preload.js")
# in your playwright script, assuming the preload.js file is in same directory
await page.add_init_script(path="./preload.js")
The order of evaluation of multiple scripts installed via browser_context.add_init_script(**kwargs) and page.add_init_script(**kwargs) is not defined.
page.add_script_tag(**kwargs)
Added in: v1.8content
<str> Raw JavaScript content to be injected into frame.#path
<Union[str, pathlib.Path]> Path to the JavaScript file to be injected into frame. Ifpath
is a relative path, then it is resolved relative to the current working directory.#type
<str> Script type. Use 'module' in order to load a Javascript ES6 module. See script for more details.#url
<str> URL of a script to be added.#- returns:ElementHandle># <
Adds 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.
Shortcut for main frame's frame.add_script_tag(**kwargs).
page.add_style_tag(**kwargs)
Added in: v1.8content
<str> Raw CSS content to be injected into frame.#path
<Union[str, pathlib.Path]> Path to the CSS file to be injected into frame. Ifpath
is a relative path, then it is resolved relative to the current working directory.#url
<str> URL of the<link>
tag.#- returns:ElementHandle># <
Adds 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.
Shortcut for main frame's frame.add_style_tag(**kwargs).
page.bring_to_front()
Added in: v1.8Brings page to front (activates tab).
page.check(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#force
<bool> Whether to bypass the actionability checks. Defaults tofalse
.#no_wait_after
<bool> 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 tofalse
.#position
<Dict> A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element. Added in: v1.11#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#trial
<bool> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it. Added in: v1.11#- returns:NoneType># <
This method checks an element matching selector
by performing the following steps:
- Find an element matching
selector
. If there is none, wait until a matching element is attached to the DOM. - Ensure that matched element is a checkbox or a radio input. If not, this method throws. If the element is already checked, this method returns immediately.
- Wait for actionability checks on the matched element, unless
force
option is set. If the element is detached during the checks, the whole action is retried. - Scroll the element into view if needed.
- Use page.mouse to click in the center of the element.
- Wait for initiated navigations to either succeed or fail, unless
no_wait_after
option is set. - Ensure that the element is now checked. If not, this method throws.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
Shortcut for main frame's frame.check(selector, **kwargs).
page.click(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#button
<"left"|"right"|"middle"> Defaults toleft
.#click_count
<int> defaults to 1. See UIEvent.detail.#delay
<float> Time to wait betweenmousedown
andmouseup
in milliseconds. Defaults to 0.#force
<bool> Whether to bypass the actionability checks. Defaults tofalse
.#modifiers
<List["Alt"|"Control"|"Meta"|"Shift"]> 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.#no_wait_after
<bool> 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 tofalse
.#position
<Dict> 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> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#trial
<bool> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it. Added in: v1.11#- returns:NoneType># <
This method clicks an element matching selector
by performing the following steps:
- Find an element matching
selector
. If there is none, wait until a matching element is attached to the DOM. - Wait for actionability checks on the matched element, unless
force
option is set. If the element is detached during the checks, the whole action is retried. - Scroll the element into view if needed.
- Use page.mouse to click in the center of the element, or the specified
position
. - Wait for initiated navigations to either succeed or fail, unless
no_wait_after
option is set.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
Shortcut for main frame's frame.click(selector, **kwargs).
page.close(**kwargs)
Added in: v1.8run_before_unload
<bool> Defaults tofalse
. Whether to run the before unload page handlers.#- returns:NoneType># <
If 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.
if run_before_unload
is passed as true, a beforeunload
dialog might be summoned and should be handled manually via page.on("dialog") event.
page.content()
Added in: v1.8Gets the full HTML contents of the page, including the doctype.
page.context
Added in: v1.8- returns:BrowserContext># <
Get the browser context that the page belongs to.
page.dblclick(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#button
<"left"|"right"|"middle"> Defaults toleft
.#delay
<float> Time to wait betweenmousedown
andmouseup
in milliseconds. Defaults to 0.#force
<bool> Whether to bypass the actionability checks. Defaults tofalse
.#modifiers
<List["Alt"|"Control"|"Meta"|"Shift"]> 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.#no_wait_after
<bool> 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 tofalse
.#position
<Dict> 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> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#trial
<bool> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it. Added in: v1.11#- returns:NoneType># <
This method double clicks an element matching selector
by performing the following steps:
- Find an element matching
selector
. If there is none, wait until a matching element is attached to the DOM. - Wait for actionability checks on the matched element, unless
force
option is set. If the element is detached during the checks, the whole action is retried. - Scroll the element into view if needed.
- Use page.mouse to double click in the center of the element, or the specified
position
. - Wait for initiated navigations to either succeed or fail, unless
no_wait_after
option is set. Note that if the first click of thedblclick()
triggers a navigation event, this method will throw.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
page.dblclick()
dispatches two click
events and a single dblclick
event.
Shortcut for main frame's frame.dblclick(selector, **kwargs).
page.dispatch_event(selector, type, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#type
<str> DOM event type:"click"
,"dragstart"
, etc.#event_init
<EvaluationArgument> Optional event-specific initialization properties.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:NoneType># <
The 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().
- Sync
- Async
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:
- Sync
- Async
# note you can only create data_transfer in chromium and firefox
data_transfer = page.evaluate_handle("new DataTransfer()")
page.dispatch_event("#source", "dragstart", { "dataTransfer": data_transfer })
# note you can only create data_transfer in chromium and firefox
data_transfer = await page.evaluate_handle("new DataTransfer()")
await page.dispatch_event("#source", "dragstart", { "dataTransfer": data_transfer })
page.drag_and_drop(source, target, **kwargs)
Added in: v1.13source
<str> A selector to search for an element to drag. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#target
<str> A selector to search for an element to drop onto. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#force
<bool> Whether to bypass the actionability checks. Defaults tofalse
.#no_wait_after
<bool> 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 tofalse
.#source_position
<Dict> 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. Added in: v1.14#strict
<bool> 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. Added in: v1.14#target_position
<Dict> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#trial
<bool> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it.#- returns:NoneType># <
This 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
.
- Sync
- Async
page.drag_and_drop("#source", "#target")
# or specify exact positions relative to the top-left corners of the elements:
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")
# or specify exact positions relative to the top-left corners of the elements:
await page.drag_and_drop(
"#source",
"#target",
source_position={"x": 34, "y": 7},
target_position={"x": 10, "y": 20}
)
page.emulate_media(**kwargs)
Added in: v1.8color_scheme
<NoneType|"light"|"dark"|"no-preference"> Emulates'prefers-colors-scheme'
media feature, supported values are'light'
,'dark'
,'no-preference'
. Passingnull
disables color scheme emulation. Added in: v1.9#forced_colors
<NoneType|"active"|"none"> Emulates'forced-colors'
media feature, supported values are'active'
and'none'
. Passingnull
disables forced colors emulation. Added in: v1.15#media
<NoneType|"screen"|"print"> Changes the CSS media type of the page. The only allowed values are'screen'
,'print'
andnull
. Passingnull
disables CSS media emulation. Added in: v1.9#reduced_motion
<NoneType|"reduce"|"no-preference"> Emulates'prefers-reduced-motion'
media feature, supported values are'reduce'
,'no-preference'
. Passingnull
disables reduced motion emulation. Added in: v1.12#- returns:NoneType># <
This method changes the CSS media type
through the media
argument, and/or the 'prefers-colors-scheme'
media feature, using the colorScheme
argument.
- Sync
- Async
page.evaluate("matchMedia('screen').matches")
# → True
page.evaluate("matchMedia('print').matches")
# → False
page.emulate_media(media="print")
page.evaluate("matchMedia('screen').matches")
# → False
page.evaluate("matchMedia('print').matches")
# → True
page.emulate_media()
page.evaluate("matchMedia('screen').matches")
# → True
page.evaluate("matchMedia('print').matches")
# → False
await page.evaluate("matchMedia('screen').matches")
# → True
await page.evaluate("matchMedia('print').matches")
# → False
await page.emulate_media(media="print")
await page.evaluate("matchMedia('screen').matches")
# → False
await page.evaluate("matchMedia('print').matches")
# → True
await page.emulate_media()
await page.evaluate("matchMedia('screen').matches")
# → True
await page.evaluate("matchMedia('print').matches")
# → False
- Sync
- Async
page.emulate_media(color_scheme="dark")
page.evaluate("matchMedia('(prefers-color-scheme: dark)').matches")
# → True
page.evaluate("matchMedia('(prefers-color-scheme: light)').matches")
# → False
page.evaluate("matchMedia('(prefers-color-scheme: no-preference)').matches")
await page.emulate_media(color_scheme="dark")
await page.evaluate("matchMedia('(prefers-color-scheme: dark)').matches")
# → True
await page.evaluate("matchMedia('(prefers-color-scheme: light)').matches")
# → False
await page.evaluate("matchMedia('(prefers-color-scheme: no-preference)').matches")
# → False
page.eval_on_selector(selector, expression, **kwargs)
Added in: v1.9selector
<str> A selector to query for. See working with selectors for more details.#expression
<str> JavaScript expression to be evaluated in the browser context. If the expresion evaluates to a function, the function is automatically invoked.#arg
<EvaluationArgument> Optional argument to pass toexpression
.#strict
<bool> 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. Added in: v1.14#- returns:Serializable># <
This method does not wait for the element to pass actionability checks and therefore can lead to the flaky tests. Use locator.evaluate(expression, **kwargs), 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(selector, expression, **kwargs) would wait for the promise to resolve and return its value.
Examples:
- Sync
- Async
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")
Shortcut for main frame's frame.eval_on_selector(selector, expression, **kwargs).
page.eval_on_selector_all(selector, expression, **kwargs)
Added in: v1.9selector
<str> A selector to query for. See working with selectors for more details.#expression
<str> JavaScript expression to be evaluated in the browser context. If the expresion evaluates to a function, the function is automatically invoked.#arg
<EvaluationArgument> Optional argument to pass toexpression
.#- returns:Serializable># <
In most cases, locator.evaluate_all(expression, **kwargs), other Locator helper methods and web-first assertions do a better job.
The 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(selector, expression, **kwargs) would wait for the promise to resolve and return its value.
Examples:
- Sync
- Async
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)
page.evaluate(expression, **kwargs)
Added in: v1.8expression
<str> JavaScript expression to be evaluated in the browser context. If the expresion evaluates to a function, the function is automatically invoked.#arg
<EvaluationArgument> Optional argument to pass toexpression
.#- returns:Serializable># <
Returns the value of the expression
invocation.
If the function passed to the page.evaluate(expression, **kwargs) returns a Promise, then page.evaluate(expression, **kwargs) would wait for the promise to resolve and return its value.
If the function passed to the page.evaluate(expression, **kwargs) returns a non-Serializable value, then page.evaluate(expression, **kwargs) resolves to undefined
. Playwright also supports transferring some additional values that are not serializable by JSON
: -0
, NaN
, Infinity
, -Infinity
.
Passing argument to expression
:
- Sync
- Async
result = page.evaluate("([x, y]) => Promise.resolve(x * y)", [7, 8])
print(result) # prints "56"
result = await page.evaluate("([x, y]) => Promise.resolve(x * y)", [7, 8])
print(result) # prints "56"
A string can also be passed in instead of a function:
- Sync
- Async
print(page.evaluate("1 + 2")) # prints "3"
x = 10
print(page.evaluate(f"1 + {x}")) # prints "11"
print(await page.evaluate("1 + 2")) # prints "3"
x = 10
print(await page.evaluate(f"1 + {x}")) # prints "11"
ElementHandle instances can be passed as an argument to the page.evaluate(expression, **kwargs):
- Sync
- Async
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()
Shortcut for main frame's frame.evaluate(expression, **kwargs).
page.evaluate_handle(expression, **kwargs)
Added in: v1.8expression
<str> JavaScript expression to be evaluated in the browser context. If the expresion evaluates to a function, the function is automatically invoked.#arg
<EvaluationArgument> Optional argument to pass toexpression
.#- returns:JSHandle># <
Returns the value of the expression
invocation as a JSHandle.
The only difference between page.evaluate(expression, **kwargs) and page.evaluate_handle(expression, **kwargs) is that page.evaluate_handle(expression, **kwargs) returns JSHandle.
If the function passed to the page.evaluate_handle(expression, **kwargs) returns a Promise, then page.evaluate_handle(expression, **kwargs) would wait for the promise to resolve and return its value.
- Sync
- Async
a_window_handle = page.evaluate_handle("Promise.resolve(window)")
a_window_handle # handle for the window object.
a_window_handle = await page.evaluate_handle("Promise.resolve(window)")
a_window_handle # handle for the window object.
A string can also be passed in instead of a function:
- Sync
- Async
a_handle = page.evaluate_handle("document") # handle for the "document"
a_handle = await page.evaluate_handle("document") # handle for the "document"
JSHandle instances can be passed as an argument to the page.evaluate_handle(expression, **kwargs):
- Sync
- Async
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()
page.expect_console_message(**kwargs)
Added in: v1.9predicate
<Callable[ConsoleMessage]:bool> Receives the ConsoleMessage object and resolves to truthy value when the waiting should resolve.#timeout
<float> Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout).#- returns:EventContextManager[ConsoleMessage]># <
Performs 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.
page.expect_download(**kwargs)
Added in: v1.9predicate
<Callable[Download]:bool> Receives the Download object and resolves to truthy value when the waiting should resolve.#timeout
<float> Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout).#- returns:EventContextManager[Download]># <
Performs 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.
page.expect_event(event, **kwargs)
Added in: v1.8event
<str> Event name, same one typically passed into*.on(event)
.#predicate
<Callable> Receives the event data and resolves to truthy value when the waiting should resolve.#timeout
<float> Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout).#- returns:EventContextManager># <
Waits 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.
- Sync
- Async
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
page.expect_file_chooser(**kwargs)
Added in: v1.9predicate
<Callable[FileChooser]:bool> Receives the FileChooser object and resolves to truthy value when the waiting should resolve.#timeout
<float> Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout).#- returns:EventContextManager[FileChooser]># <
Performs 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.
page.expect_navigation(**kwargs)
Added in: v1.8timeout
<float> Maximum operation time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(timeout), browser_context.set_default_timeout(timeout), page.set_default_navigation_timeout(timeout) or page.set_default_timeout(timeout) methods.#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.#wait_until
<"load"|"domcontentloaded"|"networkidle"|"commit"> When to consider operation succeeded, defaults toload
. Events can be either:#'domcontentloaded'
- consider operation to be finished when theDOMContentLoaded
event is fired.'load'
- consider operation to be finished when theload
event is fired.'networkidle'
- consider operation to be finished when there are no network connections for at least500
ms.'commit'
- consider operation to be finished when network response is received and the document started loading.
- returns:EventContextManager[Response]># <
Waits 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
.
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:
- Sync
- Async
with page.expect_navigation():
page.click("a.delayed-navigation") # clicking the link will indirectly cause a navigation
# Resolves after navigation has finished
async with page.expect_navigation():
await page.click("a.delayed-navigation") # clicking the link will indirectly cause a navigation
# Resolves after navigation has finished
Usage of the History API to change the URL is considered a navigation.
Shortcut for main frame's frame.expect_navigation(**kwargs).
page.expect_popup(**kwargs)
Added in: v1.9predicate
<Callable[Page]:bool> Receives the Page object and resolves to truthy value when the waiting should resolve.#timeout
<float> Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout).#- returns:EventContextManager[Page]># <
Performs 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.
page.expect_request(url_or_predicate, **kwargs)
Added in: v1.8url_or_predicate
<str|Pattern|Callable[Request]:bool> Request URL string, regex or predicate receiving Request object. When abase_url
via the context options was provided and the passed URL is a path, it gets merged via thenew URL()
constructor.#timeout
<float> Maximum wait time in milliseconds, defaults to 30 seconds, pass0
to disable the timeout. The default value can be changed by using the page.set_default_timeout(timeout) method.#- returns:EventContextManager[Request]># <
Waits for the matching request and returns it. See waiting for event for more details about events.
- Sync
- Async
with page.expect_request("http://example.com/resource") as first:
page.click('button')
first_request = first.value
# or with a lambda
with page.expect_request(lambda request: request.url == "http://example.com" and request.method == "get") as second:
page.click('img')
second_request = second.value
async with page.expect_request("http://example.com/resource") as first:
await page.click('button')
first_request = await first.value
# or with a lambda
async with page.expect_request(lambda request: request.url == "http://example.com" and request.method == "get") as second:
await page.click('img')
second_request = await second.value
page.expect_request_finished(**kwargs)
Added in: v1.12predicate
<Callable[Request]:bool> Receives the Request object and resolves to truthy value when the waiting should resolve.#timeout
<float> Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout).#- returns:EventContextManager[Request]># <
Performs 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.
page.expect_response(url_or_predicate, **kwargs)
Added in: v1.8url_or_predicate
<str|Pattern|Callable[Response]:bool> Request URL string, regex or predicate receiving Response object. When abase_url
via the context options was provided and the passed URL is a path, it gets merged via thenew URL()
constructor.#timeout
<float> Maximum wait time in milliseconds, defaults to 30 seconds, pass0
to disable the timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:EventContextManager[Response]># <
Returns the matched response. See waiting for event for more details about events.
- Sync
- Async
with page.expect_response("https://example.com/resource") as response_info:
page.click("input")
response = response_info.value
return response.ok
# or with a lambda
with page.expect_response(lambda response: response.url == "https://example.com" and response.status == 200) as response_info:
page.click("input")
response = response_info.value
return response.ok
async with page.expect_response("https://example.com/resource") as response_info:
await page.click("input")
response = await response_info.value
return response.ok
# or with a lambda
async with page.expect_response(lambda response: response.url == "https://example.com" and response.status == 200) as response_info:
await page.click("input")
response = await response_info.value
return response.ok
page.expect_websocket(**kwargs)
Added in: v1.9predicate
<Callable[WebSocket]:bool> Receives the WebSocket object and resolves to truthy value when the waiting should resolve.#timeout
<float> Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout).#- returns:EventContextManager[WebSocket]># <
Performs 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.
page.expect_worker(**kwargs)
Added in: v1.9predicate
<Callable[Worker]:bool> Receives the Worker object and resolves to truthy value when the waiting should resolve.#timeout
<float> Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout).#- returns:EventContextManager[Worker]># <
Performs 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.
page.expose_binding(name, callback, **kwargs)
Added in: v1.8name
<str> Name of the function on the window object.#callback
<Callable> Callback function that will be called in the Playwright's context.#handle
<bool> 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:NoneType># <
The 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(name, callback, **kwargs) for the context-wide version.
Functions installed via page.expose_binding(name, callback, **kwargs) survive navigations.
An example of exposing page URL to all frames in a page:
- Sync
- Async
from playwright.sync_api import sync_playwright
def run(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
async def run(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())
An example of passing an element handle:
- Sync
- Async
def print(source, element):
print(element.text_content())
page.expose_binding("clicked", print, handle=true)
page.set_content("""
<script>
document.addEventListener('click', event => window.clicked(event.target));
</script>
<div>Click me</div>
<div>Or click me</div>
""")
async def print(source, element):
print(await element.text_content())
await page.expose_binding("clicked", print, handle=true)
await page.set_content("""
<script>
document.addEventListener('click', event => window.clicked(event.target));
</script>
<div>Click me</div>
<div>Or click me</div>
""")
page.expose_function(name, callback)
Added in: v1.8name
<str> Name of the function on the window object#callback
<Callable> Callback function which will be called in Playwright's context.#- returns:NoneType># <
The 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(name, callback) for context-wide exposed function.
Functions installed via page.expose_function(name, callback) survive navigations.
An example of adding a sha256
function to the page:
- Sync
- Async
import hashlib
from playwright.sync_api import sync_playwright
def sha256(text):
m = hashlib.sha256()
m.update(bytes(text, "utf8"))
return m.hexdigest()
def run(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
def sha256(text):
m = hashlib.sha256()
m.update(bytes(text, "utf8"))
return m.hexdigest()
async def run(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())
page.fill(selector, value, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#value
<str> Value to fill for the<input>
,<textarea>
or[contenteditable]
element.#force
<bool> Whether to bypass the actionability checks. Defaults tofalse
. Added in: v1.13#no_wait_after
<bool> 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 tofalse
.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:NoneType># <
This 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 page.type(selector, text, **kwargs).
Shortcut for main frame's frame.fill(selector, value, **kwargs).
page.focus(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:NoneType># <
This 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.
Shortcut for main frame's frame.focus(selector, **kwargs).
page.frame(**kwargs)
Added in: v1.8name
<str> Frame name specified in theiframe
'sname
attribute. Optional.#url
<str|Pattern|Callable[URL]:bool> A glob pattern, regex pattern or predicate receiving frame'surl
as a URL object. Optional.#- returns:NoneType|Frame># <
Returns frame matching the specified criteria. Either name
or url
must be specified.
frame = page.frame(name="frame-name")
frame = page.frame(url=r".*domain.*")
page.frame_locator(selector)
Added in: v1.17selector
<str> A selector to use when resolving DOM element. See working with selectors for more details.#- returns:FrameLocator># <
When working with iframes, you can create a frame locator that will enter the iframe and allow selecting elements in that iframe. Following snippet locates element with text "Submit" in the iframe with id my-frame
, like <iframe id="my-frame">
:
- Sync
- Async
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()
page.frames
Added in: v1.8An array of all frames attached to the page.
page.get_attribute(selector, name, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#name
<str> Attribute name to get the value for.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:NoneType|str># <
Returns element attribute value.
page.get_by_alt_text(text, **kwargs)
Added in: v1.27text
<str|Pattern> Text to locate the element for.#exact
<bool> 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:Locator># <
Allows locating elements by their alt text. For example, this method will find the image by alt text "Castle":
<img alt='Castle'>
page.get_by_label(text, **kwargs)
Added in: v1.27text
<str|Pattern> Text to locate the element for.#exact
<bool> 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:Locator># <
Allows locating input elements by the text of the associated label. For example, this method will find the input by label text Password in the following DOM:
<label for="password-input">Password:</label>
<input id="password-input">
page.get_by_placeholder(text, **kwargs)
Added in: v1.27text
<str|Pattern> Text to locate the element for.#exact
<bool> 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:Locator># <
Allows locating input elements by the placeholder text. For example, this method will find the input by placeholder "Country":
<input placeholder="Country">
page.get_by_role(role, **kwargs)
Added in: v1.27role
<"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.#checked
<bool> An attribute that is usually set byaria-checked
or native<input type=checkbox>
controls. Available values for checked aretrue
,false
and"mixed"
.#Learn more about
aria-checked
.disabled
<bool> A boolean attribute that is usually set byaria-disabled
ordisabled
.#noteUnlike most other attributes,
disabled
is inherited through the DOM hierarchy. Learn more aboutaria-disabled
.expanded
<bool> A boolean attribute that is usually set byaria-expanded
.#Learn more about
aria-expanded
.include_hidden
<bool> A boolean attribute 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
.level
<int> A number attribute that is usually present for rolesheading
,listitem
,row
,treeitem
, with default values for<h1>-<h6>
elements.#Learn more about
aria-level
.name
<str|Pattern> A string attribute that matches accessible name.#Learn more about accessible name.
pressed
<bool> An attribute that is usually set byaria-pressed
. Available values for pressed aretrue
,false
and"mixed"
.#Learn more about
aria-pressed
.selected
<bool> A boolean attribute that is usually set byaria-selected
.#Learn more about
aria-selected
.- <
Allows locating elements by their ARIA role, ARIA attributes and accessible name. Note that role selector does not replace accessibility audits and conformance tests, but rather gives early feedback about the ARIA guidelines.
Note that 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.
page.get_by_test_id(test_id)
Added in: v1.27Locate element by the test id. By default, the data-testid
attribute is used as a test id. Use selectors.set_test_id_attribute(attribute_name) to configure a different test id attribute if necessary.
page.get_by_text(text, **kwargs)
Added in: v1.27text
<str|Pattern> Text to locate the element for.#exact
<bool> 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:Locator># <
Allows locating elements that contain given text. 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:
- Sync
- Async
# Matches <span>
page.get_by_text("world")
# Matches first <div>
page.get_by_text("Hello world")
# Matches second <div>
page.get_by_text("Hello", exact=True)
# Matches both <div>s
page.get_by_text(re.compile("Hello"))
# Matches second <div>
page.get_by_text(re.compile("^hello$", re.IGNORECASE))
# Matches <span>
page.get_by_text("world")
# Matches first <div>
page.get_by_text("Hello world")
# Matches second <div>
page.get_by_text("Hello", exact=True)
# Matches both <div>s
page.get_by_text(re.compile("Hello"))
# Matches second <div>
page.get_by_text(re.compile("^hello$", re.IGNORECASE))
See also locator.filter(**kwargs) that allows to match by another criteria, like an accessible role, and then filter by the text content.
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">
.
page.get_by_title(text, **kwargs)
Added in: v1.27text
<str|Pattern> Text to locate the element for.#exact
<bool> 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:Locator># <
Allows locating elements by their title. For example, this method will find the button by its title "Submit":
<button title='Place the order'>Order Now</button>
page.go_back(**kwargs)
Added in: v1.8timeout
<float> Maximum operation time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(timeout), browser_context.set_default_timeout(timeout), page.set_default_navigation_timeout(timeout) or page.set_default_timeout(timeout) methods.#wait_until
<"load"|"domcontentloaded"|"networkidle"|"commit"> When to consider operation succeeded, defaults toload
. Events can be either:#'domcontentloaded'
- consider operation to be finished when theDOMContentLoaded
event is fired.'load'
- consider operation to be finished when theload
event is fired.'networkidle'
- consider operation to be finished when there are no network connections for at least500
ms.'commit'
- consider operation to be finished when network response is received and the document started loading.
- returns:NoneType|Response># <
Returns the main resource response. In case of multiple redirects, the navigation will resolve with the response of the last redirect. If can not go back, returns null
.
Navigate to the previous page in history.
page.go_forward(**kwargs)
Added in: v1.8timeout
<float> Maximum operation time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(timeout), browser_context.set_default_timeout(timeout), page.set_default_navigation_timeout(timeout) or page.set_default_timeout(timeout) methods.#wait_until
<"load"|"domcontentloaded"|"networkidle"|"commit"> When to consider operation succeeded, defaults toload
. Events can be either:#'domcontentloaded'
- consider operation to be finished when theDOMContentLoaded
event is fired.'load'
- consider operation to be finished when theload
event is fired.'networkidle'
- consider operation to be finished when there are no network connections for at least500
ms.'commit'
- consider operation to be finished when network response is received and the document started loading.
- returns:NoneType|Response># <
Returns the main resource response. In case of multiple redirects, the navigation will resolve with the response of the last redirect. If can not go forward, returns null
.
Navigate to the next page in history.
page.goto(url, **kwargs)
Added in: v1.8url
<str> URL to navigate page to. The url should include scheme, e.g.https://
. When abase_url
via the context options was provided and the passed URL is a path, it gets merged via thenew URL()
constructor.#referer
<str> Referer header value. If provided it will take preference over the referer header value set by page.set_extra_http_headers(headers).#timeout
<float> Maximum operation time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(timeout), browser_context.set_default_timeout(timeout), page.set_default_navigation_timeout(timeout) or page.set_default_timeout(timeout) methods.#wait_until
<"load"|"domcontentloaded"|"networkidle"|"commit"> When to consider operation succeeded, defaults toload
. Events can be either:#'domcontentloaded'
- consider operation to be finished when theDOMContentLoaded
event is fired.'load'
- consider operation to be finished when theload
event is fired.'networkidle'
- consider operation to be finished when there are no network connections for at least500
ms.'commit'
- consider operation to be finished when network response is received and the document started loading.
- returns:NoneType|Response># <
Returns 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:
- there's an SSL error (e.g. in case of self-signed certificates).
- target URL is invalid.
- the
timeout
is exceeded during navigation. - the remote server does not respond or is unreachable.
- the main resource failed to load.
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.
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
.
Headless mode doesn't support navigation to a PDF document. See the upstream issue.
Shortcut for main frame's frame.goto(url, **kwargs)
page.hover(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#force
<bool> Whether to bypass the actionability checks. Defaults tofalse
.#modifiers
<List["Alt"|"Control"|"Meta"|"Shift"]> 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.#position
<Dict> 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> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#trial
<bool> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it. Added in: v1.11#- returns:NoneType># <
This method hovers over an element matching selector
by performing the following steps:
- Find an element matching
selector
. If there is none, wait until a matching element is attached to the DOM. - Wait for actionability checks on the matched element, unless
force
option is set. If the element is detached during the checks, the whole action is retried. - Scroll the element into view if needed.
- Use page.mouse to hover over the center of the element, or the specified
position
. - Wait for initiated navigations to either succeed or fail, unless
noWaitAfter
option is set.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
Shortcut for main frame's frame.hover(selector, **kwargs).
page.inner_html(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:str># <
Returns element.innerHTML
.
page.inner_text(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:str># <
Returns element.innerText
.
page.input_value(selector, **kwargs)
Added in: v1.13selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:str># <
Returns 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.
page.is_checked(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:bool># <
Returns whether the element is checked. Throws if the element is not a checkbox or radio input.
page.is_closed()
Added in: v1.8Indicates that the page has been closed.
page.is_disabled(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:bool># <
Returns whether the element is disabled, the opposite of enabled.
page.is_editable(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:bool># <
Returns whether the element is editable.
page.is_enabled(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:bool># <
Returns whether the element is enabled.
page.is_hidden(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> DEPRECATED This option is ignored. page.is_hidden(selector, **kwargs) does not wait for the element to become hidden and returns immediately.#- returns:bool># <
Returns whether the element is hidden, the opposite of visible. selector
that does not match any elements is considered hidden.
page.is_visible(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> DEPRECATED This option is ignored. page.is_visible(selector, **kwargs) does not wait for the element to become visible and returns immediately.#- returns:bool># <
Returns whether the element is visible. selector
that does not match any elements is considered not visible.
page.locator(selector, **kwargs)
Added in: v1.14selector
<str> A selector to use when resolving DOM element. See working with selectors for more details.#has
<Locator> Matches elements containing an element that matches an inner locator. Inner locator is queried against the outer one. For example,article
that hastext=Playwright
matches<article><div>Playwright</div></article>
.#Note that outer and inner locators must belong to the same frame. Inner locator must not contain FrameLocators.
has_text
<str|Pattern> 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>
.#- <
The 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.
page.main_frame
Added in: v1.8The page's main frame. Page is guaranteed to have a main frame which persists during navigations.
page.opener()
Added in: v1.8Returns the opener for popup pages and null
for others. If the opener has been closed already the returns null
.
page.pause()
Added in: v1.9Pauses 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.
This method requires Playwright to be started in a headed mode, with a falsy headless
value in the browser_type.launch(**kwargs).
page.pdf(**kwargs)
Added in: v1.8display_header_footer
<bool> Display header and footer. Defaults tofalse
.#footer_template
<str> HTML template for the print footer. Should use the same format as theheader_template
.#format
<str> Paper format. If set, takes priority overwidth
orheight
options. Defaults to 'Letter'.#header_template
<str> 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 document
height
<str|float> Paper height, accepts values labeled with units.#landscape
<bool> Paper orientation. Defaults tofalse
.#margin
<Dict> Paper margins, defaults to none.#top
<str|float> Top margin, accepts values labeled with units. Defaults to0
.right
<str|float> Right margin, accepts values labeled with units. Defaults to0
.bottom
<str|float> Bottom margin, accepts values labeled with units. Defaults to0
.left
<str|float> Left margin, accepts values labeled with units. Defaults to0
.
page_ranges
<str> 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]> The file path to save the PDF to. Ifpath
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> Give any CSS@page
size declared in the page priority over what is declared inwidth
andheight
orformat
options. Defaults tofalse
, which will scale the content to fit the paper size.#print_background
<bool> Print background graphics. Defaults tofalse
.#scale
<float> Scale of the webpage rendering. Defaults to1
. Scale amount must be between 0.1 and 2.#width
<str|float> Paper width, accepts values labeled with units.#- returns:bytes># <
Returns the PDF buffer.
Generating a pdf is currently only supported in Chromium headless.
page.pdf()
generates a pdf of the page with print
css media. To generate a pdf with screen
media, call page.emulate_media(**kwargs) before calling page.pdf()
:
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.
- Sync
- Async
# generates a pdf with "screen" media type.
page.emulate_media(media="screen")
page.pdf(path="page.pdf")
# generates a pdf with "screen" media type.
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
- millimeter
The 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.83in
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.
page.press(selector, key, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#key
<str> Name of the key to press or a character to generate, such asArrowLeft
ora
.#delay
<float> Time to wait betweenkeydown
andkeyup
in milliseconds. Defaults to 0.#no_wait_after
<bool> 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 tofalse
.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:NoneType># <
Focuses the element, and then uses keyboard.down(key) and keyboard.up(key).
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
.
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"
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.
- Sync
- Async
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()
page.query_selector(selector, **kwargs)
Added in: v1.9selector
<str> A selector to query for. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#- returns:NoneType|ElementHandle># <
The use of ElementHandle is discouraged, use Locator objects and web-first assertions instead.
The 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(**kwargs).
Shortcut for main frame's frame.query_selector(selector, **kwargs).
page.query_selector_all(selector)
Added in: v1.9selector
<str> A selector to query for. See working with selectors for more details.#- returns:List[ElementHandle]># <
The use of ElementHandle is discouraged, use Locator objects and web-first assertions instead.
The method finds all elements matching the specified selector within the page. If no elements match the selector, the return value resolves to []
.
Shortcut for main frame's frame.query_selector_all(selector).
page.reload(**kwargs)
Added in: v1.8timeout
<float> Maximum operation time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(timeout), browser_context.set_default_timeout(timeout), page.set_default_navigation_timeout(timeout) or page.set_default_timeout(timeout) methods.#wait_until
<"load"|"domcontentloaded"|"networkidle"|"commit"> When to consider operation succeeded, defaults toload
. Events can be either:#'domcontentloaded'
- consider operation to be finished when theDOMContentLoaded
event is fired.'load'
- consider operation to be finished when theload
event is fired.'networkidle'
- consider operation to be finished when there are no network connections for at least500
ms.'commit'
- consider operation to be finished when network response is received and the document started loading.
- returns:NoneType|Response># <
This 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.
page.route(url, handler, **kwargs)
Added in: v1.8url
<str|Pattern|Callable[URL]:bool> A glob pattern, regex pattern or predicate receiving URL to match while routing. When abase_url
via the context options was provided and the passed URL is a path, it gets merged via thenew URL()
constructor.#handler
<Callable[Route, Request]> handler function to route the request.#times
<int> How often a route should be used. By default it will be used every time. Added in: v1.15#- returns:NoneType># <
Routing 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.
The handler will only be called for the first url if the response is a redirect.
page.route(url, handler, **kwargs) will not intercept requests intercepted by Service Worker. See this issue. We recommend disabling Service Workers when using request interception by setting browser.new_context.service_workers
to 'block'
.
An example of a naive handler that aborts all image requests:
- Sync
- Async
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:
- Sync
- Async
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:
- Sync
- Async
def handle_route(route):
if ("my-string" in route.request.post_data)
route.fulfill(body="mocked-data")
else
route.continue_()
page.route("/api/**", handle_route)
def handle_route(route):
if ("my-string" in route.request.post_data)
route.fulfill(body="mocked-data")
else
route.continue_()
await page.route("/api/**", handle_route)
Page routes take precedence over browser context routes (set up with browser_context.route(url, handler, **kwargs)) when request matches both handlers.
To remove a route with its handler you can use page.unroute(url, **kwargs).
Enabling routing disables http cache.
page.route_from_har(har, **kwargs)
Added in: v1.23har
<Union[str, pathlib.Path]> Path to a HAR file with prerecorded network data. Ifpath
is a relative path, then it is resolved relative to the current working directory.#not_found
<"abort"|"fallback"> If set to 'abort' any request not found in the HAR file will be aborted.#- If set to 'fallback' missing requests will be sent to the network.
Defaults to abort.
update
<bool> If specified, updates the given HAR with the actual network information instead of serving from file.#url
<str|Pattern> 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.#- <
If 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 browser.new_context.service_workers
to 'block'
.
page.screenshot(**kwargs)
Added in: v1.8animations
<"disabled"|"allow"> When set to"disabled"
, stops CSS animations, CSS transitions and Web Animations. Animations get different treatment depending on their duration:#- finite animations are fast-forwarded to completion, so they'll fire
transitionend
event. - infinite animations are canceled to initial state, and then played over after the screenshot.
Defaults to
"allow"
that leaves animations untouched.- finite animations are fast-forwarded to completion, so they'll fire
caret
<"hide"|"initial"> When set to"hide"
, screenshot will hide text caret. When set to"initial"
, text caret behavior will not be changed. Defaults to"hide"
.#clip
<Dict> An object which specifies clipping of the resulting image. Should have the following fields:#full_page
<bool> When true, takes a screenshot of the full scrollable page, instead of the currently visible viewport. Defaults tofalse
.#mask
<List[Locator]> Specify locators that should be masked when the screenshot is taken. Masked elements will be overlaid with a pink box#FF00FF
that completely covers its bounding box.#omit_background
<bool> Hides default white background and allows capturing screenshots with transparency. Not applicable tojpeg
images. Defaults tofalse
.#path
<Union[str, pathlib.Path]> The file path to save the image to. The screenshot type will be inferred from file extension. Ifpath
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.#quality
<int> The quality of the image, between 0-100. Not applicable topng
images.#scale
<"css"|"device"> 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 screenhots of high-dpi devices will be twice as large or even larger.#Defaults to
"device"
.timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#type
<"png"|"jpeg"> Specify screenshot type, defaults topng
.#- <
Returns the buffer with the captured screenshot.
page.select_option(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#force
<bool> Whether to bypass the actionability checks. Defaults tofalse
. Added in: v1.13#no_wait_after
<bool> 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 tofalse
.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#element
<ElementHandle|List[ElementHandle]> Option elements to select. Optional.#index
<int|List[int]> Options to select by index. Optional.#value
<str|List[str]> Options to select by value. If the<select>
has themultiple
attribute, all given options are selected, otherwise only the first option matching one of the passed options is selected. Optional.#label
<str|List[str]> Options to select by label. If the<select>
has themultiple
attribute, all given options are selected, otherwise only the first option matching one of the passed options is selected. Optional.#- returns:List[str]># <
This 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.
- Sync
- Async
# single selection matching the value
page.select_option("select#colors", "blue")
# single selection matching both the label
page.select_option("select#colors", label="blue")
# multiple selection
page.select_option("select#colors", value=["red", "green", "blue"])
# single selection matching the value
await page.select_option("select#colors", "blue")
# single selection matching the label
await page.select_option("select#colors", label="blue")
# multiple selection
await page.select_option("select#colors", value=["red", "green", "blue"])
Shortcut for main frame's frame.select_option(selector, **kwargs).
page.set_checked(selector, checked, **kwargs)
Added in: v1.15selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#checked
<bool> Whether to check or uncheck the checkbox.#force
<bool> Whether to bypass the actionability checks. Defaults tofalse
.#no_wait_after
<bool> 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 tofalse
.#position
<Dict> 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> 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.#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#trial
<bool> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it.#- returns:NoneType># <
This method checks or unchecks an element matching selector
by performing the following steps:
- Find an element matching
selector
. If there is none, wait until a matching element is attached to the DOM. - Ensure that matched element is a checkbox or a radio input. If not, this method throws.
- If the element already has the right checked state, this method returns immediately.
- Wait for actionability checks on the matched element, unless
force
option is set. If the element is detached during the checks, the whole action is retried. - Scroll the element into view if needed.
- Use page.mouse to click in the center of the element.
- Wait for initiated navigations to either succeed or fail, unless
no_wait_after
option is set. - Ensure that the element is now checked or unchecked. If not, this method throws.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
Shortcut for main frame's frame.set_checked(selector, checked, **kwargs).
page.set_content(html, **kwargs)
Added in: v1.8html
<str> HTML markup to assign to the page.#timeout
<float> Maximum operation time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(timeout), browser_context.set_default_timeout(timeout), page.set_default_navigation_timeout(timeout) or page.set_default_timeout(timeout) methods.#wait_until
<"load"|"domcontentloaded"|"networkidle"|"commit"> When to consider operation succeeded, defaults toload
. Events can be either:#'domcontentloaded'
- consider operation to be finished when theDOMContentLoaded
event is fired.'load'
- consider operation to be finished when theload
event is fired.'networkidle'
- consider operation to be finished when there are no network connections for at least500
ms.'commit'
- consider operation to be finished when network response is received and the document started loading.
- returns:NoneType># <
page.set_default_navigation_timeout(timeout)
Added in: v1.8This setting will change the default maximum navigation time for the following methods and related shortcuts:
- page.go_back(**kwargs)
- page.go_forward(**kwargs)
- page.goto(url, **kwargs)
- page.reload(**kwargs)
- page.set_content(html, **kwargs)
- page.expect_navigation(**kwargs)
- page.wait_for_url(url, **kwargs)
page.set_default_timeout(timeout)
Added in: v1.8This setting will change the default maximum time for all the methods accepting timeout
option.
page.set_default_navigation_timeout(timeout) takes priority over page.set_default_timeout(timeout).
page.set_extra_http_headers(headers)
Added in: v1.8headers
<Dict[str, str]> An object containing additional HTTP headers to be sent with every request. All header values must be strings.#- returns:NoneType># <
The extra HTTP headers will be sent with every request the page initiates.
page.set_extra_http_headers(headers) does not guarantee the order of headers in the outgoing requests.
page.set_input_files(selector, files, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#files
<Union[str, pathlib.Path]|List[Union[str, pathlib.Path]]|Dict|List[Dict]>#no_wait_after
<bool> 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 tofalse
.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:NoneType># <
Sets 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.
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.
page.set_viewport_size(viewport_size)
Added in: v1.8In the case of multiple pages in a single browser, each page can have its own viewport size. However, browser.new_context(**kwargs) allows to set viewport size (and more) for all pages in the context at once.
page.set_viewport_size(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(viewport_size) will also reset screen
size, use browser.new_context(**kwargs) with screen
and viewport
parameters if you need better control of these properties.
- Sync
- Async
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")
page.tap(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#force
<bool> Whether to bypass the actionability checks. Defaults tofalse
.#modifiers
<List["Alt"|"Control"|"Meta"|"Shift"]> 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.#no_wait_after
<bool> 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 tofalse
.#position
<Dict> 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> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#trial
<bool> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it. Added in: v1.11#- returns:NoneType># <
This method taps an element matching selector
by performing the following steps:
- Find an element matching
selector
. If there is none, wait until a matching element is attached to the DOM. - Wait for actionability checks on the matched element, unless
force
option is set. If the element is detached during the checks, the whole action is retried. - Scroll the element into view if needed.
- Use page.touchscreen to tap the center of the element, or the specified
position
. - Wait for initiated navigations to either succeed or fail, unless
no_wait_after
option is set.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
page.tap(selector, **kwargs) requires that the has_touch
option of the browser context be set to true.
Shortcut for main frame's frame.tap(selector, **kwargs).
page.text_content(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:NoneType|str># <
Returns element.textContent
.
page.title()
Added in: v1.8Returns the page's title. Shortcut for main frame's frame.title().
page.type(selector, text, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#text
<str> A text to type into a focused element.#delay
<float> Time to wait between key presses in milliseconds. Defaults to 0.#no_wait_after
<bool> 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 tofalse
.#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:NoneType># <
Sends 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(selector, value, **kwargs).
To press a special key, like Control
or ArrowDown
, use keyboard.press(key, **kwargs).
- Sync
- Async
page.type("#mytextarea", "hello") # types instantly
page.type("#mytextarea", "world", delay=100) # types slower, like a user
await page.type("#mytextarea", "hello") # types instantly
await page.type("#mytextarea", "world", delay=100) # types slower, like a user
Shortcut for main frame's frame.type(selector, text, **kwargs).
page.uncheck(selector, **kwargs)
Added in: v1.8selector
<str> A selector to search for an element. If there are multiple elements satisfying the selector, the first will be used. See working with selectors for more details.#force
<bool> Whether to bypass the actionability checks. Defaults tofalse
.#no_wait_after
<bool> 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 tofalse
.#position
<Dict> A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element. Added in: v1.11#strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#trial
<bool> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it. Added in: v1.11#- returns:NoneType># <
This method unchecks an element matching selector
by performing the following steps:
- Find an element matching
selector
. If there is none, wait until a matching element is attached to the DOM. - Ensure that matched element is a checkbox or a radio input. If not, this method throws. If the element is already unchecked, this method returns immediately.
- Wait for actionability checks on the matched element, unless
force
option is set. If the element is detached during the checks, the whole action is retried. - Scroll the element into view if needed.
- Use page.mouse to click in the center of the element.
- Wait for initiated navigations to either succeed or fail, unless
no_wait_after
option is set. - Ensure that the element is now unchecked. If not, this method throws.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
Shortcut for main frame's frame.uncheck(selector, **kwargs).
page.unroute(url, **kwargs)
Added in: v1.8url
<str|Pattern|Callable[URL]:bool> A glob pattern, regex pattern or predicate receiving URL to match while routing.#handler
<Callable[Route, Request]> Optional handler function to route the request.#- returns:NoneType># <
Removes a route created with page.route(url, handler, **kwargs). When handler
is not specified, removes all routes for the url
.
page.url
Added in: v1.8Shortcut for main frame's frame.url.
page.video
Added in: v1.8Video object associated with this page.
page.viewport_size
Added in: v1.8page.wait_for_event(event, **kwargs)
Added in: v1.8event
<str> Event name, same one typically passed into*.on(event)
.#predicate
<Callable> Receives the event data and resolves to truthy value when the waiting should resolve.#timeout
<float> Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout).#- returns:Any># <
In most cases, you should use page.expect_event(event, **kwargs).
Waits 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.
page.wait_for_function(expression, **kwargs)
Added in: v1.8expression
<str> JavaScript expression to be evaluated in the browser context. If the expresion evaluates to a function, the function is automatically invoked.#arg
<EvaluationArgument> Optional argument to pass toexpression
.#polling
<float|"raf"> Ifpolling
is'raf'
, thenexpression
is constantly executed inrequestAnimationFrame
callback. Ifpolling
is a number, then it is treated as an interval in milliseconds at which the function would be executed. Defaults toraf
.#timeout
<float> maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout).#- returns:JSHandle># <
Returns when the expression
returns a truthy value. It resolves to a JSHandle of the truthy value.
The page.wait_for_function(expression, **kwargs) can be used to observe viewport size change:
- Sync
- Async
from playwright.sync_api import sync_playwright
def run(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
async def run(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(expression, **kwargs) function:
- Sync
- Async
selector = ".foo"
page.wait_for_function("selector => !!document.querySelector(selector)", selector)
selector = ".foo"
await page.wait_for_function("selector => !!document.querySelector(selector)", selector)
Shortcut for main frame's frame.wait_for_function(expression, **kwargs).
page.wait_for_load_state(**kwargs)
Added in: v1.8state
<"load"|"domcontentloaded"|"networkidle"> Optional load state to wait for, defaults toload
. If the state has been already reached while loading current document, the method resolves immediately. Can be one of:#'load'
- wait for theload
event to be fired.'domcontentloaded'
- wait for theDOMContentLoaded
event to be fired.'networkidle'
- wait until there are no network connections for at least500
ms.
timeout
<float> Maximum operation time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(timeout), browser_context.set_default_timeout(timeout), page.set_default_navigation_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:NoneType># <
Returns 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.
- Sync
- Async
page.get_by_role("button").click() # click triggers navigation.
page.wait_for_load_state() # the promise resolves after "load" event.
await page.get_by_role("button").click() # click triggers navigation.
await page.wait_for_load_state() # the promise resolves after "load" event.
- Sync
- Async
with page.expect_popup() as page_info:
page.get_by_role("button").click() # click triggers a popup.
popup = page_info.value
# Following resolves after "domcontentloaded" event.
popup.wait_for_load_state("domcontentloaded")
print(popup.title()) # popup is ready to use.
async with page.expect_popup() as page_info:
await page.get_by_role("button").click() # click triggers a popup.
popup = await page_info.value
# Following resolves after "domcontentloaded" event.
await popup.wait_for_load_state("domcontentloaded")
print(await popup.title()) # popup is ready to use.
Shortcut for main frame's frame.wait_for_load_state(**kwargs).
page.wait_for_selector(selector, **kwargs)
Added in: v1.8selector
<str> A selector to query for. See working with selectors for more details.#state
<"attached"|"detached"|"visible"|"hidden"> 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 novisibility:hidden
. Note that element without any content or withdisplay: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 orvisibility:hidden
. This is opposite to the'visible'
option.
strict
<bool> 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. Added in: v1.14#timeout
<float> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_timeout(timeout) or page.set_default_timeout(timeout) methods.#- returns:NoneType|ElementHandle># <
Returns when element specified by selector satisfies state
option. Returns null
if waiting for hidden
or detached
.
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.
This method works across navigations:
- Sync
- Async
from playwright.sync_api import sync_playwright
def run(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
async def run(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())
page.wait_for_timeout(timeout)
Added in: v1.8Waits 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.
- Sync
- Async
# wait for 1 second
page.wait_for_timeout(1000)
# wait for 1 second
await page.wait_for_timeout(1000)
Shortcut for main frame's frame.wait_for_timeout(timeout).
page.wait_for_url(url, **kwargs)
Added in: v1.11url
<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.#timeout
<float> Maximum operation time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browser_context.set_default_navigation_timeout(timeout), browser_context.set_default_timeout(timeout), page.set_default_navigation_timeout(timeout) or page.set_default_timeout(timeout) methods.#wait_until
<"load"|"domcontentloaded"|"networkidle"|"commit"> When to consider operation succeeded, defaults toload
. Events can be either:#'domcontentloaded'
- consider operation to be finished when theDOMContentLoaded
event is fired.'load'
- consider operation to be finished when theload
event is fired.'networkidle'
- consider operation to be finished when there are no network connections for at least500
ms.'commit'
- consider operation to be finished when network response is received and the document started loading.
- returns:NoneType># <
Waits for the main frame to navigate to the given URL.
- Sync
- Async
page.click("a.delayed-navigation") # clicking the link will indirectly cause a navigation
page.wait_for_url("**/target.html")
await page.click("a.delayed-navigation") # clicking the link will indirectly cause a navigation
await page.wait_for_url("**/target.html")
Shortcut for main frame's frame.wait_for_url(url, **kwargs).
page.workers
Added in: v1.8This method returns all of the dedicated WebWorkers associated with the page.
This does not contain ServiceWorkers
page.accessibility
Added in: v1.8- type: <Accessibility>
DEPRECATED This property is deprecated. Please use other libraries such as Axe if you need to test page accessibility. See our Node.js guide for integration with Axe.
page.keyboard
Added in: v1.8- type: <Keyboard>
page.mouse
Added in: v1.8- type: <Mouse>
page.request
Added in: v1.16- type: <APIRequestContext>
API 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.
page.touchscreen
Added in: v1.8- type: <Touchscreen>