Create Webdriver
Create a new webdriver session
This endpoint is not publicly available yet. If you would like the access, please mail us or use support center on the bottom right.
Use this endpoint to start a new webdriver session and connect via a remote connection using the connect_url
field of the response.
The session gets terminated when you quit the driver using remote_driver.quit()
Authorizations
Body
The raccoon passcode associated with the end user on behalf of which the call is being made if any.
"<end-user-raccoon-passcode>"
The name of the app for which the session is going to run for, used for streamlining authentication.
"uber"
The entrypoint url for the session.
"https://www.google.com"
The type of browser to use. Supported values include 'chromium', 'firefox', and 'webkit'.
"chromium"
Configuration settings for the browser, such as viewport size and User-Agent string.
{
"locales": ["en-US", "fr-FR"],
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
"viewport": { "height": 1080, "width": 1920 }
}
Advanced configuration options for the session, such as ad-blocking and CAPTCHA solving.
{
"block_ads": true,
"proxy": true,
"solve_captchas": true
}
Whether to run the browser in headless mode.
true
The timeout for the browser session in seconds.
600
Response
A unique identifier for the created session.
"session_12345"
The current status of the session. Possible values include 'running', 'unknown', or 'terminated'.
"running"
The Connect URL for interacting with the session.
"https://connect.flyingraccoon.tech/6000?sessionId=session_12345"
Was this page helpful?