Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
interface default.Browser.SetDownloadBehaviorRequest
import { type default } from "https://deno.land/x/pptr@1.2.0/vendor/devtools-protocol/protocol.d.ts";
const { SetDownloadBehaviorRequest } = default.Browser;

Properties

behavior:
| "deny"
| "allow"
| "allowAndName"
| "default"

Whether to allow all or deny all download requests, or use default Chrome behavior if available (otherwise deny). |allowAndName| allows download and names files according to their dowmload guids. (SetDownloadBehaviorRequestBehavior enum)

optional
browserContextId: BrowserContextID

BrowserContext to set download behavior. When omitted, default browser context is used.

optional
downloadPath: string

The default path to save downloaded files to. This is requred if behavior is set to 'allow' or 'allowAndName'.