browse_webpage
Extract webpage content efficiently by specifying URLs and optional CSS selectors to target specific elements, utilizing BeautifulSoup4 for precise data retrieval.
Instructions
Extract content from a webpage with optional CSS selectors for specific elements
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selectors | No | Optional CSS selectors to extract specific content | |
url | Yes | The URL of the webpage to browse |
Input Schema (JSON Schema)
{
"properties": {
"selectors": {
"additionalProperties": {
"type": "string"
},
"description": "Optional CSS selectors to extract specific content",
"type": "object"
},
"url": {
"description": "The URL of the webpage to browse",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}