get_platform_results_by_period
Retrieve test execution results filtered by platform and time period to analyze testing performance across different environments and identify platform-specific issues.
Instructions
๐ Get test results by platform for a given period (SQL widget, templateId: 8)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
browser | No | Optional BROWSER filter, e.g., ['chrome'] for web | |
dashboardName | No | Override dashboard title | |
format | No | Output format: raw widget response or formatted data | formatted |
milestone | No | Optional MILESTONE filter, e.g., ['25.39.0'] for milestone filtering | |
period | No | Time period | Last 7 Days |
platform | No | Platform alias or explicit array for paramsConfig.PLATFORM | |
project | No | Project alias ('web', 'android', 'ios', 'api'), project key, or numeric projectId | web |
templateId | No | Override templateId if needed |
Input Schema (JSON Schema)
{
"properties": {
"browser": {
"default": [],
"description": "Optional BROWSER filter, e.g., ['chrome'] for web",
"items": {
"type": "string"
},
"type": "array"
},
"dashboardName": {
"description": "Override dashboard title",
"type": "string"
},
"format": {
"default": "formatted",
"description": "Output format: raw widget response or formatted data",
"enum": [
"raw",
"formatted"
],
"type": "string"
},
"milestone": {
"default": [],
"description": "Optional MILESTONE filter, e.g., ['25.39.0'] for milestone filtering",
"items": {
"type": "string"
},
"type": "array"
},
"period": {
"default": "Last 7 Days",
"description": "Time period",
"enum": [
"Last 7 Days",
"Week",
"Month"
],
"type": "string"
},
"platform": {
"anyOf": [
{
"enum": [
"web",
"android",
"ios",
"api"
],
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"description": "Platform alias or explicit array for paramsConfig.PLATFORM"
},
"project": {
"anyOf": [
{
"enum": [
"web",
"android",
"ios",
"api"
],
"type": "string"
},
{
"type": "string"
},
{
"type": "number"
}
],
"default": "web",
"description": "Project alias ('web', 'android', 'ios', 'api'), project key, or numeric projectId"
},
"templateId": {
"default": 8,
"description": "Override templateId if needed",
"type": "number"
}
},
"type": "object"
}