scrape_webpage_js
Extract data from web pages by executing custom JavaScript scripts on the desired URL. Ideal for dynamic content scraping and tailored data retrieval tasks.
Instructions
Scrape a web page with custom JS
Input Schema
Name | Required | Description | Default |
---|---|---|---|
js_script | Yes | The javascript code to execute on the page | |
url | Yes | The url to scrape |
Input Schema (JSON Schema)
{
"properties": {
"js_script": {
"description": "The javascript code to execute on the page",
"type": "string"
},
"url": {
"description": "The url to scrape",
"type": "string"
}
},
"required": [
"url",
"js_script"
],
"type": "object"
}