This endpoint is not publicly available yet. If you would like the access, please mail us or use support center on the bottom right.

1

Get your Secret Key

First, sign up on our Platform and get your Secret Key.

2

Get your Raccoon Passcode(Optional)

Passing Raccoon Passcode is optional and is good to have to identify end user for which this request is being made for.
Get your Raccoon Passcode.

We recommend using Tail SDK to link and manage your end user accounts of different third party apps securely, it uses this passcode to inject user’s authentication context into the app if available in Fleet Sessions.

3

Make your first request

curl --request POST \
--url https://fleet.flyingraccoon.tech/sessions/webdriver/create \
--header 'Content-Type: application/json' \
--header 'raccoon-secret-key: <secret-key>' \
--data '{}'
4

Connect selenium driver via a remote connection using the connect_url field of the response

from selenium import webdriver
from selenium.webdriver.remote.remote_connection import RemoteConnection

options = webdriver.ChromeOptions()
remote_connection = RemoteConnection(connect_url)

remote_driver = webdriver.Remote(remote_connection, options=options)
5

Observe the session

Checkout the session live stream and recording Fleet page on the Platform or on the livestream_url returned in the response.

Next Steps

Was this page helpful?