navigate
Direct Firefox browser automation to load a specified URL in a specific tab, enabling efficient navigation and control for multi-tab debugging and testing workflows.
Instructions
Navigate to a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tabId | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"tabId": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}