downloadImage
Download images from a URL to a local temporary directory and return the file path for further use in automation workflows with the Better Playwright MCP server.
Instructions
下载图片到本地临时目录,返回本地文件路径
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | 图片URL |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "图片URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}