performance_analysis
Assess and optimize website performance by analyzing key metrics such as page load times, network activity, and device-specific behavior. Input a URL, specify iterations, and emulate devices for detailed insights.
Instructions
Analyze page performance metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device | No | Optional device to emulate (e.g., "iPhone 13", "Pixel 5") | |
iterations | No | Number of test iterations to run. Default: 1 | |
url | Yes | URL to analyze performance for | |
waitForNetworkIdle | No | Whether to wait for network to be idle. Default: true |
Input Schema (JSON Schema)
{
"properties": {
"device": {
"description": "Optional device to emulate (e.g., \"iPhone 13\", \"Pixel 5\")",
"type": "string"
},
"iterations": {
"description": "Number of test iterations to run. Default: 1",
"type": "number"
},
"url": {
"description": "URL to analyze performance for",
"type": "string"
},
"waitForNetworkIdle": {
"description": "Whether to wait for network to be idle. Default: true",
"type": "boolean"
}
},
"required": [
"url"
],
"type": "object"
}