2015-08-20 13:17:53 +00:00
# webContents
2016-04-22 17:30:49 +00:00
> Render and control web pages.
2016-04-21 22:35:29 +00:00
2016-11-23 19:20:56 +00:00
Process: [Main ](../glossary.md#main-process )
2016-11-03 17:26:00 +00:00
2015-08-20 13:17:53 +00:00
`webContents` is an
2016-10-13 21:09:14 +00:00
[EventEmitter ](https://nodejs.org/api/events.html#events_class_eventemitter ).
2015-08-24 22:41:02 +00:00
It is responsible for rendering and controlling a web page and is a property of
the [`BrowserWindow` ](browser-window.md ) object. An example of accessing the
`webContents` object:
2015-08-20 13:17:53 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
2015-08-20 13:17:53 +00:00
2016-07-26 01:39:25 +00:00
let win = new BrowserWindow({width: 800, height: 1500})
win.loadURL('http://github.com')
2015-08-20 13:17:53 +00:00
2016-07-26 01:39:25 +00:00
let contents = win.webContents
console.log(contents)
2015-08-20 13:17:53 +00:00
```
2016-07-15 00:46:58 +00:00
## Methods
2015-08-20 13:17:53 +00:00
2016-07-15 00:54:18 +00:00
These methods can be accessed from the `webContents` module:
2015-08-20 13:17:53 +00:00
2016-08-16 21:50:21 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {webContents} = require('electron')
console.log(webContents)
2016-07-15 00:54:18 +00:00
```
2016-07-15 00:46:58 +00:00
### `webContents.getAllWebContents()`
2015-08-20 13:17:53 +00:00
2016-09-24 23:59:30 +00:00
Returns `WebContents[]` - An array of all `WebContents` instances. This will contain web contents
2016-08-22 21:11:03 +00:00
for all windows, webviews, opened devtools, and devtools extension background pages.
2016-07-15 00:46:58 +00:00
### `webContents.getFocusedWebContents()`
2016-09-24 23:59:30 +00:00
Returns `WebContents` - The web contents that is focused in this application, otherwise
2016-07-15 00:46:58 +00:00
returns `null` .
2016-08-31 03:25:04 +00:00
### `webContents.fromId(id)`
* `id` Integer
2016-09-24 23:59:30 +00:00
Returns `WebContents` - A WebContents instance with the given ID.
2016-08-31 03:25:04 +00:00
2016-07-15 00:46:58 +00:00
## Class: WebContents
2016-08-22 21:11:03 +00:00
> Render and control the contents of a BrowserWindow instance.
2016-11-23 19:20:56 +00:00
Process: [Main ](../glossary.md#main-process )
2016-11-03 18:50:00 +00:00
2016-07-15 00:46:58 +00:00
### Instance Events
#### Event: 'did-finish-load'
2015-08-20 13:17:53 +00:00
Emitted when the navigation is done, i.e. the spinner of the tab has stopped
spinning, and the `onload` event was dispatched.
2016-07-15 00:46:58 +00:00
#### Event: 'did-fail-load'
2015-08-20 13:17:53 +00:00
Returns:
* `event` Event
* `errorCode` Integer
* `errorDescription` String
2015-11-13 08:03:40 +00:00
* `validatedURL` String
2016-04-05 02:36:19 +00:00
* `isMainFrame` Boolean
2018-05-01 04:34:41 +00:00
* `frameProcessId` Integer
* `frameRoutingId` Integer
2015-08-20 13:17:53 +00:00
This event is like `did-finish-load` but emitted when the load failed or was
cancelled, e.g. `window.stop()` is invoked.
2015-10-25 15:00:29 +00:00
The full list of error codes and their meaning is available [here ](https://code.google.com/p/chromium/codesearch#chromium/src/net/base/net_error_list.h ).
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### Event: 'did-frame-finish-load'
2015-08-20 13:17:53 +00:00
Returns:
* `event` Event
* `isMainFrame` Boolean
2018-05-01 04:34:41 +00:00
* `frameProcessId` Integer
* `frameRoutingId` Integer
2015-08-20 13:17:53 +00:00
Emitted when a frame has done navigation.
2016-07-15 00:46:58 +00:00
#### Event: 'did-start-loading'
2015-08-20 13:17:53 +00:00
Corresponds to the points in time when the spinner of the tab started spinning.
2016-07-15 00:46:58 +00:00
#### Event: 'did-stop-loading'
2015-08-20 13:17:53 +00:00
Corresponds to the points in time when the spinner of the tab stopped spinning.
2016-07-15 00:46:58 +00:00
#### Event: 'dom-ready'
2015-08-20 13:17:53 +00:00
Returns:
* `event` Event
Emitted when the document in the given frame is loaded.
2016-07-15 00:46:58 +00:00
#### Event: 'page-favicon-updated'
2015-08-20 13:17:53 +00:00
Returns:
* `event` Event
2017-11-28 17:15:15 +00:00
* `favicons` String[] - Array of URLs.
2015-08-20 13:17:53 +00:00
Emitted when page receives favicon urls.
2016-07-15 00:46:58 +00:00
#### Event: 'new-window'
2015-08-20 13:17:53 +00:00
Returns:
* `event` Event
* `url` String
* `frameName` String
* `disposition` String - Can be `default` , `foreground-tab` , `background-tab` ,
2016-09-16 11:00:26 +00:00
`new-window` , `save-to-disk` and `other` .
2015-09-22 15:41:08 +00:00
* `options` Object - The options which will be used for creating the new
2017-11-28 17:15:15 +00:00
[`BrowserWindow` ](browser-window.md ).
2016-10-13 03:38:06 +00:00
* `additionalFeatures` String[] - The non-standard features (features not handled
2016-10-04 05:41:37 +00:00
by Chromium or Electron) given to `window.open()` .
2018-04-05 23:13:24 +00:00
* `referrer` [Referrer ](structures/referrer.md ) - The referrer that will be
passed to the new window. May or may not result in the `Referer` header being
sent, depending on the referrer policy.
2015-08-20 13:17:53 +00:00
Emitted when the page requests to open a new window for a `url` . It could be
requested by `window.open` or an external link like `<a target='_blank'>` .
By default a new `BrowserWindow` will be created for the `url` .
2017-02-10 10:57:55 +00:00
Calling `event.preventDefault()` will prevent Electron from automatically creating a
2017-11-28 17:15:15 +00:00
new [`BrowserWindow` ](browser-window.md ). If you call `event.preventDefault()` and manually create a new
[`BrowserWindow` ](browser-window.md ) then you must set `event.newGuest` to reference the new [`BrowserWindow` ](browser-window.md )
2017-02-10 10:57:55 +00:00
instance, failing to do so may result in unexpected behavior. For example:
```javascript
2017-02-10 11:02:03 +00:00
myBrowserWindow.webContents.on('new-window', (event, url) => {
2017-02-10 16:49:13 +00:00
event.preventDefault()
const win = new BrowserWindow({show: false})
win.once('ready-to-show', () => win.show())
win.loadURL(url)
event.newGuest = win
})
2017-02-10 10:57:55 +00:00
```
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### Event: 'will-navigate'
2015-08-20 13:17:53 +00:00
Returns:
* `event` Event
* `url` String
2016-01-04 04:09:11 +00:00
Emitted when a user or the page wants to start navigation. It can happen when
the `window.location` object is changed or a user clicks a link in the page.
2015-08-20 13:17:53 +00:00
2015-08-24 22:41:02 +00:00
This event will not emit when the navigation is started programmatically with
2015-11-13 08:03:40 +00:00
APIs like `webContents.loadURL` and `webContents.back` .
2015-08-20 13:17:53 +00:00
2016-01-04 04:09:11 +00:00
It is also not emitted for in-page navigations, such as clicking anchor links
or updating the `window.location.hash` . Use `did-navigate-in-page` event for
this purpose.
2016-01-02 00:05:27 +00:00
2015-08-26 20:57:42 +00:00
Calling `event.preventDefault()` will prevent the navigation.
2015-08-20 13:17:53 +00:00
2018-05-01 04:34:41 +00:00
#### Event: 'did-start-navigation'
Returns:
* `url` String
* `isInPlace` Boolean
* `isMainFrame` Boolean
* `frameProcessId` Integer
* `frameRoutingId` Integer
Emitted when any frame (including main) starts navigating. `isInplace` will be
`true` for in-page navigations.
2016-07-15 00:46:58 +00:00
#### Event: 'did-navigate'
2016-01-02 00:05:27 +00:00
2016-01-04 04:09:11 +00:00
Returns:
* `event` Event
* `url` String
2018-05-01 04:34:41 +00:00
* `httpResponseCode` Integer - -1 for non HTTP navigations
* `httpStatusText` String - empty for non HTTP navigations
2016-01-04 04:09:11 +00:00
2018-05-01 04:34:41 +00:00
Emitted when a main frame navigation is done.
This event is not emitted for in-page navigations, such as clicking anchor links
or updating the `window.location.hash` . Use `did-navigate-in-page` event for
this purpose.
#### Event: 'did-frame-navigate'
Returns:
* `event` Event
* `url` String
* `httpResponseCode` Integer - -1 for non HTTP navigations
* `httpStatusText` String - empty for non HTTP navigations,
* `isMainFrame` Boolean
* `frameProcessId` Integer
* `frameRoutingId` Integer
Emitted when any frame navigation is done.
2016-01-04 04:09:11 +00:00
This event is not emitted for in-page navigations, such as clicking anchor links
or updating the `window.location.hash` . Use `did-navigate-in-page` event for
this purpose.
2016-01-02 00:05:27 +00:00
2016-07-15 00:46:58 +00:00
#### Event: 'did-navigate-in-page'
2016-01-02 00:05:27 +00:00
2016-01-04 04:09:11 +00:00
Returns:
* `event` Event
* `url` String
2016-08-11 15:49:56 +00:00
* `isMainFrame` Boolean
2018-05-01 04:34:41 +00:00
* `frameProcessId` Integer
* `frameRoutingId` Integer
2016-01-04 04:09:11 +00:00
2018-05-01 04:34:41 +00:00
Emitted when an in-page navigation happened in any frame.
2016-01-04 04:09:11 +00:00
When in-page navigation happens, the page URL changes but does not cause
navigation outside of the page. Examples of this occurring are when anchor links
are clicked or when the DOM `hashchange` event is triggered.
2016-01-02 00:05:27 +00:00
2017-04-28 00:28:48 +00:00
#### Event: 'will-prevent-unload'
Returns:
* `event` Event
Emitted when a `beforeunload` event handler is attempting to cancel a page unload.
Calling `event.preventDefault()` will ignore the `beforeunload` event handler
and allow the page to be unloaded.
```javascript
2017-05-11 16:01:51 +00:00
const {BrowserWindow, dialog} = require('electron')
const win = new BrowserWindow({width: 800, height: 600})
2017-04-28 00:28:48 +00:00
win.webContents.on('will-prevent-unload', (event) => {
2017-05-11 16:01:51 +00:00
const choice = dialog.showMessageBox(win, {
2017-04-28 00:28:48 +00:00
type: 'question',
buttons: ['Leave', 'Stay'],
title: 'Do you want to leave this site?',
message: 'Changes you made may not be saved.',
defaultId: 0,
cancelId: 1
})
2017-05-11 16:01:51 +00:00
const leave = (choice === 0)
2017-04-28 00:28:48 +00:00
if (leave) {
event.preventDefault()
}
})
```
2016-07-15 00:46:58 +00:00
#### Event: 'crashed'
2015-08-20 13:17:53 +00:00
2016-09-18 00:00:45 +00:00
Returns:
* `event` Event
* `killed` Boolean
Emitted when the renderer process crashes or is killed.
2015-08-20 13:17:53 +00:00
2018-05-02 16:19:52 +00:00
#### Event: 'unresponsive'
Emitted when the web page becomes unresponsive.
#### Event: 'responsive'
Emitted when the unresponsive web page becomes responsive again.
2016-07-15 00:46:58 +00:00
#### Event: 'plugin-crashed'
2015-08-20 13:17:53 +00:00
Returns:
* `event` Event
* `name` String
* `version` String
Emitted when a plugin process has crashed.
2016-07-15 00:46:58 +00:00
#### Event: 'destroyed'
2015-08-20 13:17:53 +00:00
Emitted when `webContents` is destroyed.
2016-12-06 22:41:18 +00:00
#### Event: 'before-input-event'
Returns:
* `event` Event
2017-11-28 17:15:15 +00:00
* `input` Object - Input properties.
* `type` String - Either `keyUp` or `keyDown` .
* `key` String - Equivalent to [KeyboardEvent.key][keyboardevent].
* `code` String - Equivalent to [KeyboardEvent.code][keyboardevent].
* `isAutoRepeat` Boolean - Equivalent to [KeyboardEvent.repeat][keyboardevent].
* `shift` Boolean - Equivalent to [KeyboardEvent.shiftKey][keyboardevent].
* `control` Boolean - Equivalent to [KeyboardEvent.controlKey][keyboardevent].
* `alt` Boolean - Equivalent to [KeyboardEvent.altKey][keyboardevent].
* `meta` Boolean - Equivalent to [KeyboardEvent.metaKey][keyboardevent].
2016-12-06 22:41:18 +00:00
Emitted before dispatching the `keydown` and `keyup` events in the page.
Calling `event.preventDefault` will prevent the page `keydown` /`keyup` events
2017-06-25 19:01:05 +00:00
and the menu shortcuts.
To only prevent the menu shortcuts, use
2018-01-22 22:49:30 +00:00
[`setIgnoreMenuShortcuts` ](#contentssetignoremenushortcutsignore-experimental ):
2017-06-25 19:01:05 +00:00
```javascript
const {BrowserWindow} = require('electron')
let win = new BrowserWindow({width: 800, height: 600})
win.webContents.on('before-input-event', (event, input) => {
// For example, only enable application menu keyboard shortcuts when
// Ctrl/Cmd are down.
win.webContents.setIgnoreMenuShortcuts(!input.control & & !input.meta)
})
```
2016-12-06 22:41:18 +00:00
2016-07-15 00:46:58 +00:00
#### Event: 'devtools-opened'
2015-10-01 08:30:31 +00:00
Emitted when DevTools is opened.
2016-07-15 00:46:58 +00:00
#### Event: 'devtools-closed'
2015-10-01 08:30:31 +00:00
Emitted when DevTools is closed.
2016-07-15 00:46:58 +00:00
#### Event: 'devtools-focused'
2015-10-01 08:30:31 +00:00
Emitted when DevTools is focused / opened.
2016-07-15 00:46:58 +00:00
#### Event: 'certificate-error'
2015-11-18 03:35:26 +00:00
Returns:
* `event` Event
2016-11-25 12:17:31 +00:00
* `url` String
2017-11-28 17:15:15 +00:00
* `error` String - The error code.
2016-09-28 07:00:01 +00:00
* `certificate` [Certificate ](structures/certificate.md )
2015-11-18 03:35:26 +00:00
* `callback` Function
2017-11-28 17:15:15 +00:00
* `isTrusted` Boolean - Indicates whether the certificate can be considered trusted.
2015-11-18 03:35:26 +00:00
Emitted when failed to verify the `certificate` for `url` .
The usage is the same with [the `certificate-error` event of
`app` ](app.md#event-certificate-error).
2016-07-15 00:46:58 +00:00
#### Event: 'select-client-certificate'
2015-11-18 03:35:26 +00:00
Returns:
* `event` Event
* `url` URL
2016-10-12 16:12:02 +00:00
* `certificateList` [Certificate[]](structures/certificate.md)
2015-11-18 03:35:26 +00:00
* `callback` Function
2017-11-28 17:15:15 +00:00
* `certificate` [Certificate ](structures/certificate.md ) - Must be a certificate from the given list.
2015-11-18 03:35:26 +00:00
Emitted when a client certificate is requested.
The usage is the same with [the `select-client-certificate` event of
`app` ](app.md#event-select-client-certificate).
2016-07-15 00:46:58 +00:00
#### Event: 'login'
2015-10-28 13:14:00 +00:00
Returns:
* `event` Event
* `request` Object
* `method` String
* `url` URL
* `referrer` URL
* `authInfo` Object
* `isProxy` Boolean
* `scheme` String
* `host` String
* `port` Integer
* `realm` String
* `callback` Function
2016-10-13 06:30:57 +00:00
* `username` String
* `password` String
2015-10-28 13:14:00 +00:00
Emitted when `webContents` wants to do basic auth.
The usage is the same with [the `login` event of `app` ](app.md#event-login ).
2016-07-15 00:46:58 +00:00
#### Event: 'found-in-page'
2015-12-17 17:27:56 +00:00
Returns:
* `event` Event
* `result` Object
* `requestId` Integer
2016-09-09 10:50:43 +00:00
* `activeMatchOrdinal` Integer - Position of the active match.
* `matches` Integer - Number of Matches.
* `selectionArea` Object - Coordinates of first match region.
2017-04-01 01:11:34 +00:00
* `finalUpdate` Boolean
2015-12-17 17:27:56 +00:00
Emitted when a result is available for
2016-10-03 05:54:07 +00:00
[`webContents.findInPage`] request.
2015-12-17 17:27:56 +00:00
2016-07-15 00:46:58 +00:00
#### Event: 'media-started-playing'
2015-12-22 22:16:31 +00:00
Emitted when media starts playing.
2016-07-15 00:46:58 +00:00
#### Event: 'media-paused'
2015-12-22 22:16:31 +00:00
Emitted when media is paused or done playing.
2016-07-15 00:46:58 +00:00
#### Event: 'did-change-theme-color'
2015-12-22 22:16:31 +00:00
2016-04-22 13:53:26 +00:00
Emitted when a page's theme color changes. This is usually due to encountering
a meta tag:
2015-12-22 22:16:31 +00:00
```html
< meta name = 'theme-color' content = '#ff0000' >
```
2017-08-20 14:48:13 +00:00
Returns:
* `event` Event
2017-08-23 15:37:37 +00:00
* `color` (String | null) - Theme color is in format of '#rrggbb'. It is `null` when no theme color is set.
2017-08-20 14:48:13 +00:00
2016-07-15 00:46:58 +00:00
#### Event: 'update-target-url'
2016-06-07 06:56:19 +00:00
Returns:
* `event` Event
* `url` String
Emitted when mouse moves over a link or the keyboard moves the focus to a link.
2016-07-15 00:46:58 +00:00
#### Event: 'cursor-changed'
2016-01-31 01:27:14 +00:00
Returns:
* `event` Event
* `type` String
2017-11-28 17:15:15 +00:00
* `image` [NativeImage ](native-image.md ) (optional)
* `scale` Float (optional) - scaling factor for the custom cursor.
* `size` [Size ](structures/size.md ) (optional) - the size of the `image` .
* `hotspot` [Point ](structures/point.md ) (optional) - coordinates of the custom cursor's hotspot.
2016-01-31 16:00:14 +00:00
Emitted when the cursor's type changes. The `type` parameter can be `default` ,
`crosshair` , `pointer` , `text` , `wait` , `help` , `e-resize` , `n-resize` ,
`ne-resize` , `nw-resize` , `s-resize` , `se-resize` , `sw-resize` , `w-resize` ,
`ns-resize` , `ew-resize` , `nesw-resize` , `nwse-resize` , `col-resize` ,
`row-resize` , `m-panning` , `e-panning` , `n-panning` , `ne-panning` , `nw-panning` ,
`s-panning` , `se-panning` , `sw-panning` , `w-panning` , `move` , `vertical-text` ,
`cell` , `context-menu` , `alias` , `progress` , `nodrop` , `copy` , `none` ,
2017-11-28 17:15:15 +00:00
`not-allowed` , `zoom-in` , `zoom-out` , `grab` , `grabbing` or `custom` .
2016-01-31 16:00:14 +00:00
If the `type` parameter is `custom` , the `image` parameter will hold the custom
2017-11-28 17:15:15 +00:00
cursor image in a [`NativeImage` ](native-image.md ), and `scale` , `size` and `hotspot` will hold
2016-08-01 00:14:45 +00:00
additional information about the custom cursor.
2016-01-31 01:27:14 +00:00
2016-07-15 00:46:58 +00:00
#### Event: 'context-menu'
2016-05-03 12:48:16 +00:00
Returns:
* `event` Event
* `params` Object
2017-11-28 17:15:15 +00:00
* `x` Integer - x coordinate.
* `y` Integer - y coordinate.
2016-05-03 12:48:16 +00:00
* `linkURL` String - URL of the link that encloses the node the context menu
2016-05-14 12:35:38 +00:00
was invoked on.
2016-05-03 12:48:16 +00:00
* `linkText` String - Text associated with the link. May be an empty
2016-05-14 12:35:38 +00:00
string if the contents of the link are an image.
2016-05-03 12:48:16 +00:00
* `pageURL` String - URL of the top level page that the context menu was
2016-05-14 12:35:38 +00:00
invoked on.
2016-05-03 12:48:16 +00:00
* `frameURL` String - URL of the subframe that the context menu was invoked
2016-05-14 12:35:38 +00:00
on.
2016-05-03 12:48:16 +00:00
* `srcURL` String - Source URL for the element that the context menu
2016-05-14 12:35:38 +00:00
was invoked on. Elements with source URLs are images, audio and video.
2016-05-03 12:48:16 +00:00
* `mediaType` String - Type of the node the context menu was invoked on. Can
2016-05-14 12:35:38 +00:00
be `none` , `image` , `audio` , `video` , `canvas` , `file` or `plugin` .
2016-07-21 14:46:46 +00:00
* `hasImageContents` Boolean - Whether the context menu was invoked on an image
2016-05-14 12:35:38 +00:00
which has non-empty contents.
2016-06-21 18:05:34 +00:00
* `isEditable` Boolean - Whether the context is editable.
2016-05-03 12:48:16 +00:00
* `selectionText` String - Text of the selection that the context menu was
2016-05-14 12:35:38 +00:00
invoked on.
2016-05-03 12:48:16 +00:00
* `titleText` String - Title or alt text of the selection that the context
2016-05-14 12:35:38 +00:00
was invoked on.
2016-05-03 12:48:16 +00:00
* `misspelledWord` String - The misspelled word under the cursor, if any.
* `frameCharset` String - The character encoding of the frame on which the
2016-05-14 12:35:38 +00:00
menu was invoked.
2016-05-03 12:48:16 +00:00
* `inputFieldType` String - If the context menu was invoked on an input
2016-05-14 12:35:38 +00:00
field, the type of that field. Possible values are `none` , `plainText` ,
`password` , `other` .
2016-05-03 12:48:16 +00:00
* `menuSourceType` String - Input source that invoked the context menu.
2017-11-28 17:15:15 +00:00
Can be `none` , `mouse` , `keyboard` , `touch` or `touchMenu` .
2016-05-14 12:35:38 +00:00
* `mediaFlags` Object - The flags for the media element the context menu was
2016-10-26 15:40:45 +00:00
invoked on.
2016-10-26 05:18:55 +00:00
* `inError` Boolean - Whether the media element has crashed.
* `isPaused` Boolean - Whether the media element is paused.
* `isMuted` Boolean - Whether the media element is muted.
* `hasAudio` Boolean - Whether the media element has audio.
* `isLooping` Boolean - Whether the media element is looping.
* `isControlsVisible` Boolean - Whether the media element's controls are
visible.
* `canToggleControls` Boolean - Whether the media element's controls are
toggleable.
* `canRotate` Boolean - Whether the media element can be rotated.
2016-10-26 15:40:45 +00:00
* `editFlags` Object - These flags indicate whether the renderer believes it
is able to perform the corresponding action.
2016-10-26 05:18:55 +00:00
* `canUndo` Boolean - Whether the renderer believes it can undo.
* `canRedo` Boolean - Whether the renderer believes it can redo.
* `canCut` Boolean - Whether the renderer believes it can cut.
* `canCopy` Boolean - Whether the renderer believes it can copy
* `canPaste` Boolean - Whether the renderer believes it can paste.
* `canDelete` Boolean - Whether the renderer believes it can delete.
* `canSelectAll` Boolean - Whether the renderer believes it can select all.
2016-05-03 12:48:16 +00:00
Emitted when there is a new context menu that needs to be handled.
2016-07-15 00:46:58 +00:00
#### Event: 'select-bluetooth-device'
2016-05-31 08:07:45 +00:00
Returns:
* `event` Event
2016-10-13 03:38:06 +00:00
* `devices` [BluetoothDevice[]](structures/bluetooth-device.md)
2016-05-31 08:07:45 +00:00
* `callback` Function
* `deviceId` String
Emitted when bluetooth device needs to be selected on call to
2016-06-01 06:09:14 +00:00
`navigator.bluetooth.requestDevice` . To use `navigator.bluetooth` api
2017-11-29 10:58:24 +00:00
`webBluetooth` should be enabled. If `event.preventDefault` is not called,
2016-06-01 06:09:14 +00:00
first available device will be selected. `callback` should be called with
`deviceId` to be selected, passing empty string to `callback` will
cancel the request.
2016-06-02 16:38:21 +00:00
```javascript
2018-06-12 19:07:37 +00:00
const {app, BrowserWindow} = require('electron')
2018-06-07 19:29:20 +00:00
let win = null
2018-06-12 19:07:37 +00:00
app.commandLine.appendSwitch('enable-experimental-web-platform-features')
2016-06-01 06:09:14 +00:00
app.on('ready', () => {
2018-06-07 19:29:20 +00:00
win = new BrowserWindow({width: 800, height: 600})
win.webContents.on('select-bluetooth-device', (event, deviceList, callback) => {
2016-06-01 06:09:14 +00:00
event.preventDefault()
let result = deviceList.find((device) => {
return device.deviceName === 'test'
})
if (!result) {
callback('')
} else {
callback(result.deviceId)
}
})
})
```
2016-05-31 08:07:45 +00:00
2016-07-30 22:22:34 +00:00
#### Event: 'paint'
Returns:
* `event` Event
2016-10-08 02:09:31 +00:00
* `dirtyRect` [Rectangle ](structures/rectangle.md )
2016-08-05 09:08:36 +00:00
* `image` [NativeImage ](native-image.md ) - The image data of the whole frame.
2016-07-30 22:22:34 +00:00
Emitted when a new frame is generated. Only the dirty area is passed in the
buffer.
```javascript
2016-08-04 04:58:50 +00:00
const {BrowserWindow} = require('electron')
2016-08-04 04:47:52 +00:00
let win = new BrowserWindow({webPreferences: {offscreen: true}})
win.webContents.on('paint', (event, dirty, image) => {
2016-08-05 09:08:36 +00:00
// updateBitmap(dirty, image.getBitmap())
2016-08-03 01:15:38 +00:00
})
win.loadURL('http://github.com')
2016-07-30 22:22:34 +00:00
```
2016-11-23 00:51:44 +00:00
#### Event: 'devtools-reload-page'
Emitted when the devtools window instructs the webContents to reload
2017-02-03 20:58:04 +00:00
#### Event: 'will-attach-webview'
Returns:
* `event` Event
* `webPreferences` Object - The web preferences that will be used by the guest
page. This object can be modified to adjust the preferences for the guest
page.
2017-02-03 21:58:07 +00:00
* `params` Object - The other `<webview>` parameters such as the `src` URL.
This object can be modified to adjust the parameters of the guest page.
2017-02-03 20:58:04 +00:00
2017-02-03 21:58:07 +00:00
Emitted when a `<webview>` 's web contents is being attached to this web
contents. Calling `event.preventDefault()` will destroy the guest page.
2017-02-03 20:58:04 +00:00
2017-02-10 03:33:33 +00:00
This event can be used to configure `webPreferences` for the `webContents`
of a `<webview>` before it's loaded, and provides the ability to set settings
that can't be set via `<webview>` attributes.
2017-05-17 20:59:48 +00:00
**Note:** The specified `preload` script option will be appear as `preloadURL`
(not `preload` ) in the `webPreferences` object emitted with this event.
2017-10-06 16:31:41 +00:00
#### Event: 'did-attach-webview'
Returns:
* `event` Event
* `webContents` WebContents - The guest web contents that is used by the
`<webview>` .
Emitted when a `<webview>` has been attached to this web contents.
2017-11-08 17:37:56 +00:00
#### Event: 'console-message'
2017-11-08 17:35:01 +00:00
Returns:
2018-04-15 15:13:02 +00:00
* `event` Event
2017-11-08 17:35:01 +00:00
* `level` Integer
* `message` String
* `line` Integer
* `sourceId` String
Emitted when the associated window logs a console message. Will not be emitted
for windows with *offscreen rendering* enabled.
2016-07-15 00:46:58 +00:00
### Instance Methods
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.loadURL(url[, options])`
2015-08-20 13:17:53 +00:00
2016-11-25 12:17:31 +00:00
* `url` String
2016-02-16 04:11:05 +00:00
* `options` Object (optional)
2018-04-05 23:13:24 +00:00
* `httpReferrer` (String | [Referrer ](structures/referrer.md )) (optional) - An HTTP Referrer url.
2016-11-11 18:55:13 +00:00
* `userAgent` String (optional) - A user agent originating the request.
2017-11-28 17:15:15 +00:00
* `extraHeaders` String (optional) - Extra headers separated by "\n".
2018-04-12 20:20:01 +00:00
* `postData` ([UploadRawData[]](structures/upload-raw-data.md) | [UploadFile[]](structures/upload-file.md) | [UploadBlob[]](structures/upload-blob.md)) (optional)
2017-03-06 18:51:48 +00:00
* `baseURLForDataURL` String (optional) - Base url (with trailing path separator) for files to be loaded by the data url. This is needed only if the specified `url` is a data url and needs to load other files.
2015-08-20 13:17:53 +00:00
2016-08-19 05:20:55 +00:00
Loads the `url` in the window. The `url` must contain the protocol prefix,
2015-11-14 06:39:18 +00:00
e.g. the `http://` or `file://` . If the load should bypass http cache then
use the `pragma` header to achieve it.
```javascript
2016-07-26 01:39:25 +00:00
const {webContents} = require('electron')
const options = {extraHeaders: 'pragma: no-cache\n'}
webContents.loadURL('https://github.com', options)
2015-11-14 06:39:18 +00:00
```
2015-08-20 13:17:53 +00:00
2018-01-03 22:38:56 +00:00
#### `contents.loadFile(filePath)`
* `filePath` String
Loads the given file in the window, `filePath` should be a path to
an HTML file relative to the root of your application. For instance
an app structure like this:
2018-01-22 17:41:46 +00:00
```sh
2018-01-03 22:38:56 +00:00
| root
| - package.json
| - src
| - main.js
| - index.html
```
Would require code like this
```js
win.loadFile('src/index.html')
```
2016-07-15 00:46:58 +00:00
#### `contents.downloadURL(url)`
2015-12-02 21:49:42 +00:00
2016-09-28 07:00:01 +00:00
* `url` String
2015-12-02 21:49:42 +00:00
Initiates a download of the resource at `url` without navigating. The
`will-download` event of `session` will be triggered.
2016-07-15 00:46:58 +00:00
#### `contents.getURL()`
2015-08-20 13:17:53 +00:00
2016-09-24 23:59:30 +00:00
Returns `String` - The URL of the current web page.
2015-08-20 13:17:53 +00:00
2015-11-12 13:20:09 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
let win = new BrowserWindow({width: 800, height: 600})
win.loadURL('http://github.com')
2015-08-20 13:17:53 +00:00
2016-07-26 01:39:25 +00:00
let currentURL = win.webContents.getURL()
console.log(currentURL)
2015-08-20 13:17:53 +00:00
```
2016-07-15 00:46:58 +00:00
#### `contents.getTitle()`
2015-08-20 13:17:53 +00:00
2016-09-24 23:59:30 +00:00
Returns `String` - The title of the current web page.
2015-08-20 13:17:53 +00:00
2016-08-03 21:54:36 +00:00
#### `contents.isDestroyed()`
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the web page is destroyed.
2016-08-03 21:54:36 +00:00
2017-06-15 17:19:27 +00:00
#### `contents.focus()`
Focuses the web page.
2016-07-15 00:46:58 +00:00
#### `contents.isFocused()`
2016-07-13 21:20:33 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the web page is focused.
2016-07-13 21:20:33 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.isLoading()`
2015-08-20 13:17:53 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether web page is still loading resources.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.isLoadingMainFrame()`
2016-04-20 06:27:22 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the main frame (and not just iframes or frames within it) is
2016-04-22 13:53:26 +00:00
still loading.
2016-04-20 06:27:22 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.isWaitingForResponse()`
2015-08-20 13:17:53 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the web page is waiting for a first-response from the main
2015-08-24 22:41:02 +00:00
resource of the page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.stop()`
2015-08-20 13:17:53 +00:00
Stops any pending navigation.
2016-07-15 00:46:58 +00:00
#### `contents.reload()`
2015-08-20 13:17:53 +00:00
2015-08-20 17:03:53 +00:00
Reloads the current web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.reloadIgnoringCache()`
2015-08-20 13:17:53 +00:00
Reloads current page and ignores cache.
2016-07-15 00:46:58 +00:00
#### `contents.canGoBack()`
2015-08-20 13:17:53 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the browser can go back to previous web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.canGoForward()`
2015-08-20 13:17:53 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the browser can go forward to next web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.canGoToOffset(offset)`
2015-08-20 13:17:53 +00:00
* `offset` Integer
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the web page can go to `offset` .
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.clearHistory()`
2015-08-20 13:17:53 +00:00
Clears the navigation history.
2016-07-15 00:46:58 +00:00
#### `contents.goBack()`
2015-08-20 13:17:53 +00:00
2015-08-20 17:03:53 +00:00
Makes the browser go back a web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.goForward()`
2015-08-20 13:17:53 +00:00
2015-08-20 17:03:53 +00:00
Makes the browser go forward a web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.goToIndex(index)`
2015-08-20 13:17:53 +00:00
* `index` Integer
2015-08-20 17:03:53 +00:00
Navigates browser to the specified absolute web page index.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.goToOffset(offset)`
2015-08-20 13:17:53 +00:00
* `offset` Integer
Navigates to the specified offset from the "current entry".
2016-07-15 00:46:58 +00:00
#### `contents.isCrashed()`
2015-08-20 13:17:53 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the renderer process has crashed.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.setUserAgent(userAgent)`
2015-08-20 13:17:53 +00:00
* `userAgent` String
2015-08-26 20:57:42 +00:00
Overrides the user agent for this web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.getUserAgent()`
2015-08-20 13:17:53 +00:00
2016-09-24 23:59:30 +00:00
Returns `String` - The user agent for this web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.insertCSS(css)`
2015-08-20 13:17:53 +00:00
* `css` String
2015-08-20 17:03:53 +00:00
Injects CSS into the current web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.executeJavaScript(code[, userGesture, callback])`
2015-08-20 13:17:53 +00:00
* `code` String
2017-03-06 18:51:48 +00:00
* `userGesture` Boolean (optional) - Default is `false` .
2016-02-17 17:03:27 +00:00
* `callback` Function (optional) - Called after script has been executed.
2016-10-13 06:30:57 +00:00
* `result` Any
2015-08-20 13:17:53 +00:00
2016-10-11 05:47:09 +00:00
Returns `Promise` - A promise that resolves with the result of the executed code
2016-10-24 07:19:45 +00:00
or is rejected if the result of the code is a rejected promise.
2016-10-11 05:47:09 +00:00
2015-08-20 13:17:53 +00:00
Evaluates `code` in page.
2015-08-24 22:41:02 +00:00
In the browser window some HTML APIs like `requestFullScreen` can only be
invoked by a gesture from the user. Setting `userGesture` to `true` will remove
this limitation.
2015-08-20 13:17:53 +00:00
2016-10-11 05:47:09 +00:00
If the result of the executed code is a promise the callback result will be the
2017-11-29 10:58:24 +00:00
resolved value of the promise. We recommend that you use the returned Promise
2016-10-11 05:47:09 +00:00
to handle code that results in a Promise.
```js
contents.executeJavaScript('fetch("https://jsonplaceholder.typicode.com/users/1").then(resp => resp.json())', true)
.then((result) => {
console.log(result) // Will be the JSON object from the fetch call
})
```
2017-06-28 17:20:22 +00:00
#### `contents.setIgnoreMenuShortcuts(ignore)` _Experimental_
2017-06-25 19:01:05 +00:00
* `ignore` Boolean
Ignore application menu shortcuts while this web contents is focused.
2016-07-15 00:46:58 +00:00
#### `contents.setAudioMuted(muted)`
2015-08-20 13:17:53 +00:00
2015-11-23 08:59:15 +00:00
* `muted` Boolean
2015-08-20 13:17:53 +00:00
2015-08-20 17:03:53 +00:00
Mute the audio on the current web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.isAudioMuted()`
2015-08-20 13:17:53 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether this page has been muted.
2015-08-20 13:17:53 +00:00
2018-07-12 11:35:11 +00:00
#### `contents.isCurrentlyAudible()`
Returns `Boolean` - Whether audio is currently playing.
2016-08-02 02:26:49 +00:00
#### `contents.setZoomFactor(factor)`
* `factor` Number - Zoom factor.
Changes the zoom factor to the specified factor. Zoom factor is
zoom percent divided by 100, so 300% = 3.0.
2016-08-02 03:04:21 +00:00
#### `contents.getZoomFactor(callback)`
2016-08-02 05:44:06 +00:00
* `callback` Function
2016-10-13 06:30:57 +00:00
* `zoomFactor` Number
2016-08-02 05:44:06 +00:00
Sends a request to get current zoom factor, the `callback` will be called with
`callback(zoomFactor)` .
2016-08-02 03:04:21 +00:00
2016-08-02 02:26:49 +00:00
#### `contents.setZoomLevel(level)`
2017-11-29 10:38:35 +00:00
* `level` Number - Zoom level.
2016-08-02 02:26:49 +00:00
Changes the zoom level to the specified level. The original size is 0 and each
increment above or below represents zooming 20% larger or smaller to default
2018-02-10 04:20:45 +00:00
limits of 300% and 50% of original size, respectively. The formula for this is
`scale := 1.2 ^ level` .
2016-08-02 02:26:49 +00:00
2016-08-02 03:04:21 +00:00
#### `contents.getZoomLevel(callback)`
2016-08-02 05:44:06 +00:00
* `callback` Function
2016-10-13 06:30:57 +00:00
* `zoomLevel` Number
2016-08-02 05:44:06 +00:00
Sends a request to get current zoom level, the `callback` will be called with
`callback(zoomLevel)` .
2016-08-02 03:04:21 +00:00
2016-11-22 16:07:55 +00:00
#### `contents.setVisualZoomLevelLimits(minimumLevel, maximumLevel)`
* `minimumLevel` Number
* `maximumLevel` Number
Sets the maximum and minimum pinch-to-zoom level.
#### `contents.setLayoutZoomLevelLimits(minimumLevel, maximumLevel)`
* `minimumLevel` Number
* `maximumLevel` Number
Sets the maximum and minimum layout-based (i.e. non-visual) zoom level.
2016-08-02 02:26:49 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.undo()`
2015-08-20 13:17:53 +00:00
2015-08-26 20:57:42 +00:00
Executes the editing command `undo` in web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.redo()`
2015-08-20 13:17:53 +00:00
2015-08-26 20:57:42 +00:00
Executes the editing command `redo` in web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.cut()`
2015-08-20 13:17:53 +00:00
2015-08-26 20:57:42 +00:00
Executes the editing command `cut` in web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.copy()`
2015-08-20 13:17:53 +00:00
2015-08-26 20:57:42 +00:00
Executes the editing command `copy` in web page.
2015-08-20 13:17:53 +00:00
2016-08-25 21:42:53 +00:00
#### `contents.copyImageAt(x, y)`
2016-07-26 19:08:05 +00:00
* `x` Integer
* `y` Integer
Copy the image at the given position to the clipboard.
2016-07-15 00:46:58 +00:00
#### `contents.paste()`
2015-08-20 13:17:53 +00:00
2015-08-26 20:57:42 +00:00
Executes the editing command `paste` in web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.pasteAndMatchStyle()`
2015-08-20 13:17:53 +00:00
2015-08-26 20:57:42 +00:00
Executes the editing command `pasteAndMatchStyle` in web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.delete()`
2015-08-20 13:17:53 +00:00
2015-08-26 20:57:42 +00:00
Executes the editing command `delete` in web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.selectAll()`
2015-08-20 13:17:53 +00:00
2015-08-26 20:57:42 +00:00
Executes the editing command `selectAll` in web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.unselect()`
2015-08-20 13:17:53 +00:00
2015-08-26 20:57:42 +00:00
Executes the editing command `unselect` in web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.replace(text)`
2015-08-20 13:17:53 +00:00
* `text` String
2015-08-26 20:57:42 +00:00
Executes the editing command `replace` in web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.replaceMisspelling(text)`
2015-08-20 13:17:53 +00:00
* `text` String
2015-08-26 20:57:42 +00:00
Executes the editing command `replaceMisspelling` in web page.
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.insertText(text)`
2016-01-13 03:55:49 +00:00
* `text` String
Inserts `text` to the focused element.
2016-07-15 00:46:58 +00:00
#### `contents.findInPage(text[, options])`
2015-12-17 17:27:56 +00:00
* `text` String - Content to be searched, must not be empty.
2016-02-16 03:54:41 +00:00
* `options` Object (optional)
2017-11-28 17:15:15 +00:00
* `forward` Boolean (optional) - Whether to search forward or backward, defaults to `true` .
* `findNext` Boolean (optional) - Whether the operation is first request or a follow up,
2015-12-17 23:10:42 +00:00
defaults to `false` .
2017-11-28 17:15:15 +00:00
* `matchCase` Boolean (optional) - Whether search should be case-sensitive,
2015-12-17 23:10:42 +00:00
defaults to `false` .
2017-11-28 17:15:15 +00:00
* `wordStart` Boolean (optional) - Whether to look only at the start of words.
2015-12-17 23:10:42 +00:00
defaults to `false` .
2017-11-28 17:15:15 +00:00
* `medialCapitalAsWordStart` Boolean (optional) - When combined with `wordStart` ,
2015-12-17 17:27:56 +00:00
accepts a match in the middle of a word if the match begins with an
uppercase letter followed by a lowercase or non-letter.
2015-12-17 23:10:42 +00:00
Accepts several other intra-word matches, defaults to `false` .
2015-12-17 17:27:56 +00:00
2017-10-03 07:39:37 +00:00
Returns `Integer` - The request id used for the request.
Starts a request to find all matches for the `text` in the web page. The result of the request
can be obtained by subscribing to [`found-in-page` ](web-contents.md#event-found-in-page ) event.
2015-12-17 17:27:56 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.stopFindInPage(action)`
2015-12-17 17:27:56 +00:00
2015-12-17 23:10:42 +00:00
* `action` String - Specifies the action to take place when ending
2016-10-03 05:54:07 +00:00
[`webContents.findInPage`] request.
2016-07-06 15:58:50 +00:00
* `clearSelection` - Clear the selection.
* `keepSelection` - Translate the selection into a normal selection.
2015-12-17 23:10:42 +00:00
* `activateSelection` - Focus and click the selection node.
2015-12-17 17:27:56 +00:00
2015-12-17 23:10:42 +00:00
Stops any `findInPage` request for the `webContents` with the provided `action` .
2015-12-17 17:27:56 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {webContents} = require('electron')
2016-05-10 17:15:09 +00:00
webContents.on('found-in-page', (event, result) => {
2016-07-26 01:39:25 +00:00
if (result.finalUpdate) webContents.stopFindInPage('clearSelection')
})
2015-12-17 17:27:56 +00:00
2016-07-26 01:39:25 +00:00
const requestId = webContents.findInPage('api')
console.log(requestId)
2015-12-17 23:10:42 +00:00
```
2015-12-17 17:27:56 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.capturePage([rect, ]callback)`
2016-07-06 00:26:05 +00:00
2017-11-29 10:38:35 +00:00
* `rect` [Rectangle ](structures/rectangle.md ) (optional) - The area of the page to be captured.
2016-07-06 00:26:05 +00:00
* `callback` Function
2016-10-13 06:30:57 +00:00
* `image` [NativeImage ](native-image.md )
2016-07-06 00:26:05 +00:00
Captures a snapshot of the page within `rect` . Upon completion `callback` will
be called with `callback(image)` . The `image` is an instance of
[NativeImage ](native-image.md ) that stores data of the snapshot. Omitting
`rect` will capture the whole visible page.
2016-07-15 00:46:58 +00:00
#### `contents.hasServiceWorker(callback)`
2015-08-20 13:17:53 +00:00
* `callback` Function
2016-10-13 06:30:57 +00:00
* `hasWorker` Boolean
2015-08-20 13:17:53 +00:00
2015-08-20 17:03:53 +00:00
Checks if any ServiceWorker is registered and returns a boolean as
2015-08-20 13:17:53 +00:00
response to `callback` .
2016-07-15 00:46:58 +00:00
#### `contents.unregisterServiceWorker(callback)`
2015-08-20 13:17:53 +00:00
* `callback` Function
2016-10-13 06:30:57 +00:00
* `success` Boolean
2015-08-20 13:17:53 +00:00
2015-08-20 17:03:53 +00:00
Unregisters any ServiceWorker if present and returns a boolean as
response to `callback` when the JS promise is fulfilled or false
2015-08-20 13:17:53 +00:00
when the JS promise is rejected.
2017-05-18 17:14:55 +00:00
#### `contents.getPrinters()`
2017-02-06 09:18:04 +00:00
2017-05-18 17:50:08 +00:00
Get the system printer list.
2017-05-18 17:14:55 +00:00
2017-11-29 10:38:35 +00:00
Returns [`PrinterInfo[]`](structures/printer-info.md).
2017-02-06 09:18:04 +00:00
2017-07-21 07:16:27 +00:00
#### `contents.print([options], [callback])`
2015-08-20 13:17:53 +00:00
2016-02-16 04:11:05 +00:00
* `options` Object (optional)
2017-06-25 08:43:47 +00:00
* `silent` Boolean (optional) - Don't ask user for print settings. Default is `false` .
* `printBackground` Boolean (optional) - Also prints the background color and image of
2016-02-16 04:11:05 +00:00
the web page. Default is `false` .
2017-05-26 19:22:16 +00:00
* `deviceName` String (optional) - Set the printer device name to use. Default is `''` .
2017-07-21 07:16:27 +00:00
* `callback` Function (optional)
2017-11-29 10:38:35 +00:00
* `success` Boolean - Indicates success of the print call.
2015-08-20 13:17:53 +00:00
2016-07-09 17:31:02 +00:00
Prints window's web page. When `silent` is set to `true` , Electron will pick
2017-05-18 17:17:08 +00:00
the system's default printer if `deviceName` is empty and the default settings
for printing.
2015-08-20 13:17:53 +00:00
2015-08-26 20:57:42 +00:00
Calling `window.print()` in web page is equivalent to calling
2017-02-06 09:18:04 +00:00
`webContents.print({silent: false, printBackground: false, deviceName: ''})` .
2015-08-20 13:17:53 +00:00
2016-08-30 00:45:39 +00:00
Use `page-break-before: always; ` CSS style to force to print to a new page.
2016-07-15 00:46:58 +00:00
#### `contents.printToPDF(options, callback)`
2015-08-20 13:17:53 +00:00
2016-02-16 04:11:05 +00:00
* `options` Object
2017-11-28 17:15:15 +00:00
* `marginsType` Integer (optional) - Specifies the type of margins to use. Uses 0 for
2016-02-16 04:11:05 +00:00
default margin, 1 for no margin, and 2 for minimum margin.
2017-11-28 17:15:15 +00:00
* `pageSize` String (optional) - Specify page size of the generated PDF. Can be `A3` ,
2016-06-01 06:27:17 +00:00
`A4` , `A5` , `Legal` , `Letter` , `Tabloid` or an Object containing `height`
and `width` in microns.
2017-11-28 17:15:15 +00:00
* `printBackground` Boolean (optional) - Whether to print CSS backgrounds.
* `printSelectionOnly` Boolean (optional) - Whether to print selection only.
* `landscape` Boolean (optional) - `true` for landscape, `false` for portrait.
2016-02-16 04:11:05 +00:00
* `callback` Function
2016-10-13 06:30:57 +00:00
* `error` Error
* `data` Buffer
2015-08-20 13:17:53 +00:00
Prints window's web page as PDF with Chromium's preview printing custom
settings.
2016-02-16 04:11:05 +00:00
The `callback` will be called with `callback(error, data)` on completion. The
`data` is a `Buffer` that contains the generated PDF data.
2017-01-09 00:31:34 +00:00
The `landscape` will be ignored if `@page` CSS at-rule is used in the web page.
2015-08-20 17:03:53 +00:00
By default, an empty `options` will be regarded as:
2016-08-16 21:50:21 +00:00
```javascript
2015-08-20 17:03:53 +00:00
{
2015-08-26 20:57:42 +00:00
marginsType: 0,
printBackground: false,
printSelectionOnly: false,
landscape: false
2015-08-20 17:03:53 +00:00
}
```
2015-08-20 13:17:53 +00:00
2016-08-30 00:45:39 +00:00
Use `page-break-before: always; ` CSS style to force to print to a new page.
2016-06-01 06:27:17 +00:00
An example of `webContents.printToPDF` :
2015-08-20 13:17:53 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
const fs = require('fs')
2015-08-20 13:17:53 +00:00
2016-07-26 01:39:25 +00:00
let win = new BrowserWindow({width: 800, height: 600})
win.loadURL('http://github.com')
2015-08-20 13:17:53 +00:00
2016-05-04 17:59:02 +00:00
win.webContents.on('did-finish-load', () => {
2015-08-20 13:17:53 +00:00
// Use default printing options
2016-05-04 17:59:02 +00:00
win.webContents.printToPDF({}, (error, data) => {
2016-07-26 01:39:25 +00:00
if (error) throw error
2016-05-04 17:59:02 +00:00
fs.writeFile('/tmp/print.pdf', data, (error) => {
2016-07-26 01:39:25 +00:00
if (error) throw error
console.log('Write PDF successfully.')
})
})
})
2015-08-20 13:17:53 +00:00
```
2016-07-15 00:46:58 +00:00
#### `contents.addWorkSpace(path)`
2015-08-20 13:17:53 +00:00
* `path` String
2015-11-27 06:16:00 +00:00
Adds the specified path to DevTools workspace. Must be used after DevTools
creation:
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
let win = new BrowserWindow()
2016-05-10 17:38:42 +00:00
win.webContents.on('devtools-opened', () => {
2016-07-26 01:39:25 +00:00
win.webContents.addWorkSpace(__dirname)
})
2015-11-27 06:16:00 +00:00
```
2015-08-20 13:17:53 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.removeWorkSpace(path)`
2015-08-20 13:17:53 +00:00
* `path` String
2015-09-09 21:11:06 +00:00
Removes the specified path from DevTools workspace.
2015-08-20 13:17:53 +00:00
2017-11-30 11:25:57 +00:00
#### `contents.setDevToolsWebContents(devToolsWebContents)`
* `devToolsWebContents` WebContents
Uses the `devToolsWebContents` as the target `WebContents` to show devtools.
The `devToolsWebContents` must not have done any navigation, and it should not
be used for other purposes after the call.
By default Electron manages the devtools by creating an internal `WebContents`
with native view, which developers have very limited control of. With the
`setDevToolsWebContents` method, developers can use any `WebContents` to show
the devtools in it, including `BrowserWindow` , `BrowserView` and `<webview>`
tag.
2018-02-13 05:18:27 +00:00
Note that closing the devtools does not destroy the `devToolsWebContents` , it
2017-12-01 10:30:23 +00:00
is caller's responsibility to destroy `devToolsWebContents` .
2017-11-30 11:25:57 +00:00
An example of showing devtools in a `<webview>` tag:
```html
< html >
< head >
< style type = "text/css" >
* { margin: 0; }
#browser { height: 70%; }
#devtools { height: 30%; }
< / style >
< / head >
< body >
< webview id = "browser" src = "https://github.com" > < / webview >
< webview id = "devtools" > < / webview >
< script >
const browserView = document.getElementById('browser')
const devtoolsView = document.getElementById('devtools')
browserView.addEventListener('dom-ready', () => {
const browser = browserView.getWebContents()
browser.setDevToolsWebContents(devtoolsView.getWebContents())
browser.openDevTools()
})
< / script >
< / body >
< / html >
```
An example of showing devtools in a `BrowserWindow` :
```js
const {app, BrowserWindow} = require('electron')
let win = null
let devtools = null
app.once('ready', () => {
win = new BrowserWindow()
2017-12-01 03:04:50 +00:00
devtools = new BrowserWindow()
2017-11-30 11:25:57 +00:00
win.loadURL('https://github.com')
win.webContents.setDevToolsWebContents(devtools.webContents)
2017-11-30 11:42:11 +00:00
win.webContents.openDevTools({mode: 'detach'})
2017-11-30 11:25:57 +00:00
})
```
2016-07-15 00:46:58 +00:00
#### `contents.openDevTools([options])`
2015-10-01 08:30:31 +00:00
2016-02-16 04:11:05 +00:00
* `options` Object (optional)
2016-05-02 07:39:46 +00:00
* `mode` String - Opens the devtools with specified dock state, can be
`right` , `bottom` , `undocked` , `detach` . Defaults to last used dock state.
In `undocked` mode it's possible to dock back. In `detach` mode it's not.
2015-10-01 08:30:31 +00:00
2016-01-04 02:46:30 +00:00
Opens the devtools.
2015-10-01 08:30:31 +00:00
2017-12-01 02:11:37 +00:00
When `contents` is a `<webview>` tag, the `mode` would be `detach` by default,
explicitly passing an empty `mode` can force using last used dock state.
2016-07-15 00:46:58 +00:00
#### `contents.closeDevTools()`
2015-10-01 08:30:31 +00:00
2016-01-04 02:46:30 +00:00
Closes the devtools.
2015-10-01 08:30:31 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.isDevToolsOpened()`
2015-10-01 08:30:31 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the devtools is opened.
2016-01-04 02:46:30 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.isDevToolsFocused()`
2016-01-04 02:46:30 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the devtools view is focused .
2015-10-01 08:30:31 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.toggleDevTools()`
2015-10-01 08:30:31 +00:00
Toggles the developer tools.
2016-07-15 00:46:58 +00:00
#### `contents.inspectElement(x, y)`
2015-10-01 08:30:31 +00:00
* `x` Integer
* `y` Integer
Starts inspecting element at position (`x`, `y` ).
2016-07-15 00:46:58 +00:00
#### `contents.inspectServiceWorker()`
2015-10-01 08:30:31 +00:00
Opens the developer tools for the service worker context.
2016-07-15 00:46:58 +00:00
#### `contents.send(channel[, arg1][, arg2][, ...])`
2015-08-20 13:17:53 +00:00
* `channel` String
2016-11-05 08:42:45 +00:00
* `...args` any[]
2015-08-20 13:17:53 +00:00
2015-11-10 08:48:24 +00:00
Send an asynchronous message to renderer process via `channel` , you can also
2016-02-16 03:34:39 +00:00
send arbitrary arguments. Arguments will be serialized in JSON internally and
hence no functions or prototype chain will be included.
The renderer process can handle the message by listening to `channel` with the
2017-11-29 10:38:35 +00:00
[`ipcRenderer` ](ipc-renderer.md ) module.
2015-08-20 13:17:53 +00:00
An example of sending messages from the main process to the renderer process:
```javascript
2015-09-04 20:44:40 +00:00
// In the main process.
2016-07-26 01:39:25 +00:00
const {app, BrowserWindow} = require('electron')
let win = null
2016-05-04 17:59:02 +00:00
app.on('ready', () => {
2016-07-26 01:39:25 +00:00
win = new BrowserWindow({width: 800, height: 600})
win.loadURL(`file://${__dirname}/index.html`)
2016-05-10 17:38:42 +00:00
win.webContents.on('did-finish-load', () => {
2016-07-26 01:39:25 +00:00
win.webContents.send('ping', 'whoooooooh!')
})
})
2015-08-20 13:17:53 +00:00
```
```html
<!-- index.html -->
< html >
< body >
< script >
2016-05-04 17:59:02 +00:00
require('electron').ipcRenderer.on('ping', (event, message) => {
2017-11-29 10:58:24 +00:00
console.log(message) // Prints 'whoooooooh!'
2016-07-26 01:39:25 +00:00
})
2015-08-20 13:17:53 +00:00
< / script >
< / body >
< / html >
```
2016-07-15 00:46:58 +00:00
#### `contents.enableDeviceEmulation(parameters)`
2015-08-31 09:19:19 +00:00
2016-08-25 17:52:19 +00:00
* `parameters` Object
* `screenPosition` String - Specify the screen type to emulate
2017-11-29 10:38:35 +00:00
(default: `desktop` ):
* `desktop` - Desktop screen type.
* `mobile` - Mobile screen type.
* `screenSize` [Size ](structures/size.md ) - Set the emulated screen size (screenPosition == mobile).
2017-04-03 22:35:39 +00:00
* `viewPosition` [Point ](structures/point.md ) - Position the view on the screen
2017-11-29 10:38:35 +00:00
(screenPosition == mobile) (default: `{x: 0, y: 0}` ).
2016-08-25 17:52:19 +00:00
* `deviceScaleFactor` Integer - Set the device scale factor (if zero defaults to
2017-11-29 10:38:35 +00:00
original device scale factor) (default: `0` ).
2017-04-03 22:35:39 +00:00
* `viewSize` [Size ](structures/size.md ) - Set the emulated view size (empty means no override)
2016-08-25 17:52:19 +00:00
* `scale` Float - Scale of emulated view inside available space (not in fit to
2017-11-29 10:38:35 +00:00
view mode) (default: `1` ).
2015-08-31 09:19:19 +00:00
Enable device emulation with the given parameters.
2016-07-15 00:46:58 +00:00
#### `contents.disableDeviceEmulation()`
2015-08-31 09:19:19 +00:00
Disable device emulation enabled by `webContents.enableDeviceEmulation` .
2015-09-18 09:44:11 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.sendInputEvent(event)`
2015-09-18 09:44:11 +00:00
* `event` Object
* `type` String (**required**) - The type of the event, can be `mouseDown` ,
`mouseUp` , `mouseEnter` , `mouseLeave` , `contextMenu` , `mouseWheel` ,
2017-11-29 10:38:35 +00:00
`mouseMove` , `keyDown` , `keyUp` or `char` .
2016-09-28 05:28:44 +00:00
* `modifiers` String[] - An array of modifiers of the event, can
2015-09-18 09:44:11 +00:00
include `shift` , `control` , `alt` , `meta` , `isKeypad` , `isAutoRepeat` ,
`leftButtonDown` , `middleButtonDown` , `rightButtonDown` , `capsLock` ,
`numLock` , `left` , `right` .
Sends an input `event` to the page.
2017-11-29 10:38:35 +00:00
**Note:** The [`BrowserWindow` ](browser-window.md ) containing the contents needs to be focused for
2017-06-05 17:03:25 +00:00
`sendInputEvent()` to work.
2015-09-18 09:44:11 +00:00
For keyboard events, the `event` object also have following properties:
2016-03-06 06:12:04 +00:00
* `keyCode` String (**required**) - The character that will be sent
as the keyboard event. Should only use the valid key codes in
[Accelerator ](accelerator.md ).
2015-09-18 09:44:11 +00:00
For mouse events, the `event` object also have following properties:
* `x` Integer (**required**)
* `y` Integer (**required**)
2017-11-29 10:38:35 +00:00
* `button` String - The button pressed, can be `left` , `middle` , `right` .
2015-09-18 09:44:11 +00:00
* `globalX` Integer
* `globalY` Integer
* `movementX` Integer
* `movementY` Integer
* `clickCount` Integer
For the `mouseWheel` event, the `event` object also have following properties:
* `deltaX` Integer
* `deltaY` Integer
* `wheelTicksX` Integer
* `wheelTicksY` Integer
* `accelerationRatioX` Integer
* `accelerationRatioY` Integer
* `hasPreciseScrollingDeltas` Boolean
* `canScroll` Boolean
2015-09-18 09:53:19 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.beginFrameSubscription([onlyDirty ,]callback)`
2015-09-18 09:53:19 +00:00
2017-11-29 10:38:35 +00:00
* `onlyDirty` Boolean (optional) - Defaults to `false` .
2015-09-18 09:53:19 +00:00
* `callback` Function
2018-05-14 17:09:05 +00:00
* `image` [NativeImage ](native-image.md )
2016-10-13 06:30:57 +00:00
* `dirtyRect` [Rectangle ](structures/rectangle.md )
2015-09-18 09:53:19 +00:00
Begin subscribing for presentation events and captured frames, the `callback`
2018-05-14 17:09:05 +00:00
will be called with `callback(image, dirtyRect)` when there is a presentation
event.
2015-09-18 09:53:19 +00:00
2018-05-14 17:09:05 +00:00
The `image` is an instance of [NativeImage ](native-image.md ) that stores the
captured frame.
2015-09-18 09:53:19 +00:00
2016-06-25 16:23:40 +00:00
The `dirtyRect` is an object with `x, y, width, height` properties that
describes which part of the page was repainted. If `onlyDirty` is set to
2018-05-14 17:09:05 +00:00
`true` , `image` will only contain the repainted area. `onlyDirty` defaults to
`false` .
2016-06-21 11:35:30 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.endFrameSubscription()`
2015-09-18 09:53:19 +00:00
End subscribing for frame presentation events.
2015-10-01 08:30:31 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.startDrag(item)`
2016-07-03 06:10:59 +00:00
2016-10-13 03:38:06 +00:00
* `item` Object
2017-02-23 21:03:22 +00:00
* `file` String or `files` Array - The path(s) to the file(s) being dragged.
2017-01-26 19:04:59 +00:00
* `icon` [NativeImage ](native-image.md ) - The image must be non-empty on
macOS.
2016-07-03 06:10:59 +00:00
Sets the `item` as dragging item for current drag-drop operation, `file` is the
absolute path of the file to be dragged, and `icon` is the image showing under
the cursor when dragging.
2016-07-15 00:46:58 +00:00
#### `contents.savePage(fullPath, saveType, callback)`
2015-10-14 04:41:31 +00:00
* `fullPath` String - The full file path.
* `saveType` String - Specify the save type.
* `HTMLOnly` - Save only the HTML of the page.
* `HTMLComplete` - Save complete-html page.
* `MHTML` - Save complete-html page as MHTML.
2016-05-10 17:15:09 +00:00
* `callback` Function - `(error) => {}` .
2015-10-14 04:41:31 +00:00
* `error` Error
2017-02-12 09:03:33 +00:00
Returns `Boolean` - true if the process of saving page has been initiated successfully.
2015-10-14 04:41:31 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
let win = new BrowserWindow()
win.loadURL('https://github.com')
2015-10-14 04:41:31 +00:00
2016-05-04 17:59:02 +00:00
win.webContents.on('did-finish-load', () => {
win.webContents.savePage('/tmp/test.html', 'HTMLComplete', (error) => {
2016-07-26 01:39:25 +00:00
if (!error) console.log('Save page successfully')
})
})
2015-10-14 04:41:31 +00:00
```
2015-11-19 13:10:50 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.showDefinitionForSelection()` _macOS_
2016-06-07 20:09:54 +00:00
Shows pop-up dictionary that searches the selected word on the page.
2016-07-31 15:10:53 +00:00
#### `contents.isOffscreen()`
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Indicates whether *offscreen rendering* is enabled.
2016-07-31 15:10:53 +00:00
2016-07-30 22:22:34 +00:00
#### `contents.startPainting()`
If *offscreen rendering* is enabled and not painting, start painting.
#### `contents.stopPainting()`
If *offscreen rendering* is enabled and painting, stop painting.
#### `contents.isPainting()`
2016-09-24 23:59:30 +00:00
Returns `Boolean` - If *offscreen rendering* is enabled returns whether it is currently painting.
2016-07-30 22:22:34 +00:00
#### `contents.setFrameRate(fps)`
2016-08-25 21:43:06 +00:00
* `fps` Integer
2016-07-30 22:22:34 +00:00
If *offscreen rendering* is enabled sets the frame rate to the specified number.
Only values between 1 and 60 are accepted.
#### `contents.getFrameRate()`
2016-09-24 23:59:30 +00:00
Returns `Integer` - If *offscreen rendering* is enabled returns the current frame rate.
2016-07-30 22:22:34 +00:00
2016-09-01 22:18:16 +00:00
#### `contents.invalidate()`
2017-02-14 19:17:39 +00:00
Schedules a full repaint of the window this web contents is in.
2016-09-01 22:18:16 +00:00
If *offscreen rendering* is enabled invalidates the frame and generates a new
one through the `'paint'` event.
2017-03-08 14:55:59 +00:00
#### `contents.getWebRTCIPHandlingPolicy()`
2017-03-25 07:27:43 +00:00
Returns `String` - Returns the WebRTC IP Handling Policy.
2017-03-08 14:55:59 +00:00
#### `contents.setWebRTCIPHandlingPolicy(policy)`
2017-03-09 14:54:09 +00:00
* `policy` String - Specify the WebRTC IP Handling Policy.
2017-11-29 10:58:24 +00:00
* `default` - Exposes user's public and local IPs. This is the default
behavior. When this policy is used, WebRTC has the right to enumerate all
2017-03-09 14:54:09 +00:00
interfaces and bind them to discover public interfaces.
* `default_public_interface_only` - Exposes user's public IP, but does not
2017-11-29 10:58:24 +00:00
expose user's local IP. When this policy is used, WebRTC should only use the
2017-03-09 14:54:09 +00:00
default route used by http. This doesn't expose any local addresses.
* `default_public_and_private_interfaces` - Exposes user's public and local
2017-11-29 10:58:24 +00:00
IPs. When this policy is used, WebRTC should only use the default route used
2017-03-09 14:54:09 +00:00
by http. This also exposes the associated default private address. Default
route is the route chosen by the OS on a multi-homed endpoint.
2017-11-29 10:58:24 +00:00
* `disable_non_proxied_udp` - Does not expose public or local IPs. When this
2017-03-09 14:54:09 +00:00
policy is used, WebRTC should only use TCP to contact peers or servers unless
the proxy server supports UDP.
Setting the WebRTC IP handling policy allows you to control which IPs are
2017-11-29 10:38:35 +00:00
exposed via WebRTC. See [BrowserLeaks ](https://browserleaks.com/webrtc ) for
2017-03-09 14:54:09 +00:00
more details.
2017-03-08 14:55:59 +00:00
2017-05-15 18:02:20 +00:00
#### `contents.getOSProcessId()`
2018-05-01 04:34:41 +00:00
Returns `Integer` - The operating system `pid` of the associated renderer
process.
#### `contents.getProcessId()`
2018-07-20 17:58:19 +00:00
Returns `Integer` - The Chromium internal `pid` of the associated renderer. Can
2018-05-01 04:34:41 +00:00
be compared to the `frameProcessId` passed by frame specific navigation events
2018-05-25 17:50:27 +00:00
(e.g. `did-frame-navigate` )
2017-05-15 18:02:20 +00:00
2016-07-15 00:46:58 +00:00
### Instance Properties
2015-11-19 13:10:50 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.id`
2016-05-17 12:56:47 +00:00
2017-07-24 08:29:03 +00:00
A `Integer` representing the unique ID of this WebContents.
2016-05-17 12:56:47 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.session`
2015-11-19 13:48:45 +00:00
2017-07-24 08:29:03 +00:00
A [`Session` ](session.md ) used by this webContents.
2015-11-19 13:48:45 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.hostWebContents`
2016-02-17 08:52:19 +00:00
2016-11-10 20:25:26 +00:00
A [`WebContents` ](web-contents.md ) instance that might own this `WebContents` .
2016-02-17 08:52:19 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.devToolsWebContents`
2015-11-19 13:10:50 +00:00
2016-09-24 23:59:30 +00:00
A `WebContents` of DevTools for this `WebContents` .
2015-11-19 13:10:50 +00:00
**Note:** Users should never store this object because it may become `null`
when the DevTools has been closed.
2016-01-21 18:22:23 +00:00
2016-07-15 00:46:58 +00:00
#### `contents.debugger`
2016-11-10 20:25:26 +00:00
A [Debugger ](debugger.md ) instance for this webContents.
2016-12-13 23:58:03 +00:00
[keyboardevent]: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent