Simplex exposes a playwright instance that you can use to take deterministic actions on the web if you’ve installed simplex[playwright] package.

Getting the playwright browser instance

from simplex import Simplex

simplex = Simplex(api_key="your_api_key")
simplex.create_session()
pw_browser = simplex.pw.chromium.connect_over_cdp(simplex.connect_url)
page = pw_browser.contexts[0].pages[0]

You can use the Simplex playwright instance in the same way you would use the playwright browser instance in a normal playwright script.

Sample Usage

from simplex import Simplex
simplex = Simplex(api_key="your_api_key")
simplex.create_session()

# define the playwright browser instance
pw_browser = simplex.pw.chromium.connect_over_cdp(simplex.connect_url)
page = pw_browser.contexts[0].pages[0]
page.get_by_text("I'm Feeling Lucky").click()