browser_pdf_save
Save web pages as PDFs for accessibility compliance checks. Specify a custom filename or use a default timestamp-based name to store the document for further review.
Instructions
Save page as PDF
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | No | File name to save the pdf to. Defaults to `page-{timestamp}.pdf` if not specified. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filename": {
"description": "File name to save the pdf to. Defaults to `page-{timestamp}.pdf` if not specified.",
"type": "string"
}
},
"type": "object"
}