Skip to main content

Trio driver for Chrome DevTools Protocol (CDP)

Project description

Trio CDP

PyPI Python Versions MIT License Build Status

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.

define hyperion gray

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

trio-chrome-devtools-protocol-0.1.0.tar.gz (7.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page