← Back to Emulation domain

Emulation.setScrollbarsHidden

No description available.

Domain: Emulation experimental

Parameters

NameTypeDescription
hiddenbooleanWhether scrollbars should be always hidden.

Example Request

{
  "id": 1,
  "method": "Emulation.setScrollbarsHidden",
  "params": {
    "hidden": true
  }
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Emulation.setScrollbarsHidden', {"hidden": true});
console.log(result);