capture_document_pages
Capture multiple pages from a document window by automatically navigating and saving each page. Specify window ID, page count, output directory, and navigation settings to retrieve results and file paths.
Instructions
Capture multiple pages from a document window with automatic navigation.
Args:
window_id: Window ID containing the document
page_count: Number of pages to capture
output_dir: Directory to save captured pages
navigation_key: Key to press for navigation (Page_Down, Right, space)
delay_seconds: Delay between navigation and capture
Returns:
JSON string with capture results and list of captured files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
delay_seconds | No | ||
navigation_key | No | Page_Down | |
output_dir | No | ||
page_count | Yes | ||
window_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"delay_seconds": {
"default": 1,
"title": "Delay Seconds",
"type": "number"
},
"navigation_key": {
"default": "Page_Down",
"title": "Navigation Key",
"type": "string"
},
"output_dir": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Output Dir"
},
"page_count": {
"title": "Page Count",
"type": "integer"
},
"window_id": {
"title": "Window Id",
"type": "string"
}
},
"required": [
"window_id",
"page_count"
],
"title": "capture_document_pagesArguments",
"type": "object"
}