runBrowserLiveSession
Manually test and debug websites on specific browser and OS combinations using BrowserStack's cloud infrastructure. Identify layout or compatibility issues in real-time by specifying the browser, OS version, and URL to analyze.
Instructions
Use this tool when user wants to manually check their website on a particular browser and OS combination using BrowserStack's cloud infrastructure. Can be used to debug layout issues, compatibility problems, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
desiredBrowser | Yes | The browser to run the test on. Example: 'Chrome', 'IE', 'Safari', 'Edge'. Always ask the user for the browser they want to use, do not assume it. | |
desiredBrowserVersion | Yes | The version of the browser to use. Example: 133.0, 134.0, 87.0 | |
desiredOS | Yes | The operating system to run the browser on. Example: 'Windows', 'OS X' | |
desiredOSVersion | Yes | The OS version to run the browser on. Example: '10' for Windows, '12' for macOS, '14' for iOS | |
desiredURL | Yes | The URL of the website to test. This can be a local URL (e.g., http://localhost:3000) or a public URL. Always ask the user for the URL, do not assume it. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"desiredBrowser": {
"description": "The browser to run the test on. Example: 'Chrome', 'IE', 'Safari', 'Edge'. Always ask the user for the browser they want to use, do not assume it.",
"enum": [
"Chrome",
"IE",
"Firefox",
"Safari",
"Edge"
],
"type": "string"
},
"desiredBrowserVersion": {
"description": "The version of the browser to use. Example: 133.0, 134.0, 87.0",
"type": "string"
},
"desiredOS": {
"description": "The operating system to run the browser on. Example: 'Windows', 'OS X'",
"enum": [
"Windows",
"OS X"
],
"type": "string"
},
"desiredOSVersion": {
"description": "The OS version to run the browser on. Example: '10' for Windows, '12' for macOS, '14' for iOS",
"type": "string"
},
"desiredURL": {
"description": "The URL of the website to test. This can be a local URL (e.g., http://localhost:3000) or a public URL. Always ask the user for the URL, do not assume it.",
"type": "string"
}
},
"required": [
"desiredBrowser",
"desiredOSVersion",
"desiredOS",
"desiredURL",
"desiredBrowserVersion"
],
"type": "object"
}