Trio driver for Chrome DevTools Protocol (CDP)
Project description
Trio CDP
This Python library performs remote control of any web browser that implements the Chrome DevTools Protocol. It is built using the type wrappers in python-chrome-devtools-protocol and implements I/O using Trio. This library handles the WebSocket negotiation and session management, allowing you to transparently multiplex commands, responses, and events over a single connection.
The example demonstrates the salient features of the library.
async with open_cdp_connection(cdp_url) as conn:
# Find the first available target (usually a browser tab).
targets = await conn.execute(target.get_targets())
target_id = targets[0].id
# Create a new session with the chosen target.
session = await conn.open_session(target_id)
# Navigate to a website.
await session.execute(page.enable())
await session.execute(page.navigate(target_url))
event = await session.wait_for(page.events.LoadEventFired)
# Extract the page title.
root_node = await session.execute(dom.get_document())
title_node_id = await session.execute(dom.query_selector(root_node.node_id,
'title'))
html = await session.execute(dom.get_outer_html(title_node_id))
print(html)
We'll go through this example bit by bit. First, it starts with a context manager:
async with open_cdp_connection(cdp_url) as conn:
This context manager opens a connection to the browser when the block is entered and closes the connection automatically when the block exists. Now we have a connection to the browser, but the browser has multiple targets that can be operated independently. For example, each browser tab is a separate target. In order to interact with one of them, we have to create a session for it.
targets = await conn.execute(target.get_targets())
target_id = targets[0].id
The first line here executes the get_targets()
command in the browser. Note
the form of the command: await conn.execute(...)
will send a command to the
browser, parse its response, and return a value (if any). The command is one of
the methods in the PyCDP package. Trio CDP multiplexes commands and responses on
a single connection, so we can send commands concurrently if we want, and the
responses will be routed back to the correct task.
In this case, the command is target.get_targets()
, which returns a list of
TargetInfo
objects. We grab the first object and extract its target_id
.
session = await conn.open_session(target_id)
In order to connect to a target, we open a session based on the target ID.
await session.execute(page.enable())
await session.execute(page.navigate(target_url))
event = await session.wait_for(page.LoadEventFired)
Here we use the session (remember, it corresponds to a tab in the browser) to
navigate to the target URL. Just like the connection object, the session object
has an execute(...)
method that sends a command to the target, parses the
response, and returns a value (if any).
This snippet also introduces another concept: events. When we ask the browser to navigate to a URL, it acknowledges our request with a response, then starts the navigation process. How do we know when the page is actually loaded, thought? Easy: the browser can send us an event!
We first have to enable page-level events by calling page.enable()
. Then we
use session.wait_for(...)
to wait for an event of the desired type. In this
example, the script will suspend until it receives a page.LoadEventFired
event.
root_node = await session.execute(dom.get_document())
title_node_id = await session.execute(dom.query_selector(root_node.node_id,
'title'))
html = await session.execute(dom.get_outer_html(title_node_id))
print(html)
The last part of the script navigates the DOM to find the <title>
element.
First we get the document's root node, then we query for a CSS selector, then
we get the outer HTML of the node. This snippet shows some new APIs, but the
mechanics of sending commands and getting responses are the same as the previous
snippets.
A more complete version of this example can be found in examples/get_title.py
.
There is also a screenshot example in examples/screenshot.py
. The unit tests
in test/
also provide more examples.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for trio-chrome-devtools-protocol-0.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4c3d632dfd4065e39837be28e6842dd0eaa974ef8343a7bfb18105c6704d03f |
|
MD5 | 4a98ff1d870161b8244d8d7dfcc47a41 |
|
BLAKE2b-256 | e3d7ac51d71f428d6caf1399ae65a0efa0bac8e39e492c5816ec6ebf2627d0c3 |