2015-08-20 15:17:53 +02:00
# webContents
2016-04-22 10:30:49 -07:00
> Render and control web pages.
2016-04-21 15:35:29 -07:00
2015-08-20 15:17:53 +02:00
`webContents` is an
[EventEmitter ](http://nodejs.org/api/events.html#events_class_events_eventemitter ).
2015-08-24 15:41:02 -07: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 15:17:53 +02:00
```javascript
2016-07-25 18:39:25 -07:00
const {BrowserWindow} = require('electron')
2015-08-20 15:17:53 +02:00
2016-07-25 18:39:25 -07:00
let win = new BrowserWindow({width: 800, height: 1500})
win.loadURL('http://github.com')
2015-08-20 15:17:53 +02:00
2016-07-25 18:39:25 -07:00
let contents = win.webContents
console.log(contents)
2015-08-20 15:17:53 +02:00
```
2016-07-14 17:46:58 -07:00
## Methods
2015-08-20 15:17:53 +02:00
2016-07-14 17:54:18 -07:00
These methods can be accessed from the `webContents` module:
2015-08-20 15:17:53 +02:00
2016-08-16 14:50:21 -07:00
```javascript
2016-07-25 18:39:25 -07:00
const {webContents} = require('electron')
console.log(webContents)
2016-07-14 17:54:18 -07:00
```
2016-07-14 17:46:58 -07:00
### `webContents.getAllWebContents()`
2015-08-20 15:17:53 +02:00
2016-08-22 14:11:03 -07:00
Returns an array of all `WebContents` instances. This will contain web contents
for all windows, webviews, opened devtools, and devtools extension background pages.
2016-07-14 17:46:58 -07:00
### `webContents.getFocusedWebContents()`
Returns the web contents that is focused in this application, otherwise
returns `null` .
2016-08-30 22:25:04 -05:00
### `webContents.fromId(id)`
* `id` Integer
Find a `WebContents` instance according to its ID.
2016-07-14 17:46:58 -07:00
## Class: WebContents
2016-08-22 14:11:03 -07:00
> Render and control the contents of a BrowserWindow instance.
2016-07-14 17:46:58 -07:00
### Instance Events
#### Event: 'did-finish-load'
2015-08-20 15:17:53 +02: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-14 17:46:58 -07:00
#### Event: 'did-fail-load'
2015-08-20 15:17:53 +02:00
Returns:
* `event` Event
* `errorCode` Integer
* `errorDescription` String
2015-11-13 16:03:40 +08:00
* `validatedURL` String
2016-04-04 19:36:19 -07:00
* `isMainFrame` Boolean
2015-08-20 15:17:53 +02: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 17:00:29 +02: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 ).
2016-05-05 15:52:00 -07:00
Note that redirect responses will emit `errorCode` -3; you may want to ignore
that error explicitly.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### Event: 'did-frame-finish-load'
2015-08-20 15:17:53 +02:00
Returns:
* `event` Event
* `isMainFrame` Boolean
Emitted when a frame has done navigation.
2016-07-14 17:46:58 -07:00
#### Event: 'did-start-loading'
2015-08-20 15:17:53 +02:00
Corresponds to the points in time when the spinner of the tab started spinning.
2016-07-14 17:46:58 -07:00
#### Event: 'did-stop-loading'
2015-08-20 15:17:53 +02:00
Corresponds to the points in time when the spinner of the tab stopped spinning.
2016-07-14 17:46:58 -07:00
#### Event: 'did-get-response-details'
2015-08-20 15:17:53 +02:00
Returns:
* `event` Event
* `status` Boolean
2015-11-13 16:03:40 +08:00
* `newURL` String
* `originalURL` String
2015-08-20 15:17:53 +02:00
* `httpResponseCode` Integer
* `requestMethod` String
* `referrer` String
* `headers` Object
2016-04-08 13:03:22 -07:00
* `resourceType` String
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Emitted when details regarding a requested resource are available.
2015-08-20 15:17:53 +02:00
`status` indicates the socket connection to download the resource.
2016-07-14 17:46:58 -07:00
#### Event: 'did-get-redirect-request'
2015-08-20 15:17:53 +02:00
Returns:
* `event` Event
2015-11-13 16:03:40 +08:00
* `oldURL` String
* `newURL` String
2015-08-20 15:17:53 +02:00
* `isMainFrame` Boolean
2015-09-18 12:01:31 +02:00
* `httpResponseCode` Integer
* `requestMethod` String
* `referrer` String
* `headers` Object
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Emitted when a redirect is received while requesting a resource.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### Event: 'dom-ready'
2015-08-20 15:17:53 +02:00
Returns:
* `event` Event
Emitted when the document in the given frame is loaded.
2016-07-14 17:46:58 -07:00
#### Event: 'page-favicon-updated'
2015-08-20 15:17:53 +02:00
Returns:
* `event` Event
2015-11-13 16:03:40 +08:00
* `favicons` Array - Array of URLs
2015-08-20 15:17:53 +02:00
Emitted when page receives favicon urls.
2016-07-14 17:46:58 -07:00
#### Event: 'new-window'
2015-08-20 15:17:53 +02:00
Returns:
* `event` Event
* `url` String
* `frameName` String
* `disposition` String - Can be `default` , `foreground-tab` , `background-tab` ,
2015-08-26 13:57:42 -07:00
`new-window` and `other` .
2015-09-22 23:41:08 +08:00
* `options` Object - The options which will be used for creating the new
`BrowserWindow` .
2015-08-20 15:17:53 +02: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` .
2015-08-26 13:57:42 -07:00
Calling `event.preventDefault()` will prevent creating new windows.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### Event: 'will-navigate'
2015-08-20 15:17:53 +02:00
Returns:
* `event` Event
* `url` String
2016-01-04 12:09:11 +08: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 15:17:53 +02:00
2015-08-24 15:41:02 -07:00
This event will not emit when the navigation is started programmatically with
2015-11-13 16:03:40 +08:00
APIs like `webContents.loadURL` and `webContents.back` .
2015-08-20 15:17:53 +02:00
2016-01-04 12:09:11 +08: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-01 16:05:27 -08:00
2015-08-26 13:57:42 -07:00
Calling `event.preventDefault()` will prevent the navigation.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### Event: 'did-navigate'
2016-01-01 16:05:27 -08:00
2016-01-04 12:09:11 +08:00
Returns:
* `event` Event
* `url` String
Emitted when a 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.
2016-01-01 16:05:27 -08:00
2016-07-14 17:46:58 -07:00
#### Event: 'did-navigate-in-page'
2016-01-01 16:05:27 -08:00
2016-01-04 12:09:11 +08:00
Returns:
* `event` Event
* `url` String
2016-08-12 01:49:56 +10:00
* `isMainFrame` Boolean
2016-01-04 12:09:11 +08:00
Emitted when an in-page navigation happened.
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-01 16:05:27 -08:00
2016-07-14 17:46:58 -07:00
#### Event: 'crashed'
2015-08-20 15:17:53 +02:00
Emitted when the renderer process has crashed.
2016-07-14 17:46:58 -07:00
#### Event: 'plugin-crashed'
2015-08-20 15:17:53 +02:00
Returns:
* `event` Event
* `name` String
* `version` String
Emitted when a plugin process has crashed.
2016-07-14 17:46:58 -07:00
#### Event: 'destroyed'
2015-08-20 15:17:53 +02:00
Emitted when `webContents` is destroyed.
2016-07-14 17:46:58 -07:00
#### Event: 'devtools-opened'
2015-10-01 16:30:31 +08:00
Emitted when DevTools is opened.
2016-07-14 17:46:58 -07:00
#### Event: 'devtools-closed'
2015-10-01 16:30:31 +08:00
Emitted when DevTools is closed.
2016-07-14 17:46:58 -07:00
#### Event: 'devtools-focused'
2015-10-01 16:30:31 +08:00
Emitted when DevTools is focused / opened.
2016-07-14 17:46:58 -07:00
#### Event: 'certificate-error'
2015-11-18 11:35:26 +08:00
Returns:
* `event` Event
* `url` URL
* `error` String - The error code
* `certificate` Object
2016-08-10 14:47:05 -07:00
* `data` String - PEM encoded data
2016-07-13 01:05:28 +08:00
* `issuerName` String - Issuer's Common Name
* `subjectName` String - Subject's Common Name
2016-07-16 02:09:02 +08:00
* `serialNumber` String - Hex value represented string
* `validStart` Integer - Start date of the certificate being valid in seconds
* `validExpiry` Integer - End date of the certificate being valid in seconds
2016-07-13 01:05:28 +08:00
* `fingerprint` String - Fingerprint of the certificate
2015-11-18 11:35:26 +08:00
* `callback` Function
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-14 17:46:58 -07:00
#### Event: 'select-client-certificate'
2015-11-18 11:35:26 +08:00
Returns:
* `event` Event
* `url` URL
* `certificateList` [Objects]
2016-08-10 14:47:05 -07:00
* `data` String - PEM encoded data
2015-11-18 11:35:26 +08:00
* `issuerName` String - Issuer's Common Name
2016-07-13 01:05:28 +08:00
* `subjectName` String - Subject's Common Name
2016-07-16 02:09:02 +08:00
* `serialNumber` String - Hex value represented string
* `validStart` Integer - Start date of the certificate being valid in seconds
* `validExpiry` Integer - End date of the certificate being valid in seconds
2016-07-13 01:05:28 +08:00
* `fingerprint` String - Fingerprint of the certificate
2015-11-18 11:35:26 +08:00
* `callback` Function
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-14 17:46:58 -07:00
#### Event: 'login'
2015-10-28 21:14:00 +08: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
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-14 17:46:58 -07:00
#### Event: 'found-in-page'
2015-12-17 22:57:56 +05:30
Returns:
* `event` Event
* `result` Object
* `requestId` Integer
* `finalUpdate` Boolean - Indicates if more responses are to follow.
2016-03-14 06:49:45 +05:30
* `activeMatchOrdinal` Integer (optional) - Position of the active match.
2016-02-16 11:54:41 +08:00
* `matches` Integer (optional) - Number of Matches.
* `selectionArea` Object (optional) - Coordinates of first match region.
2015-12-17 22:57:56 +05:30
Emitted when a result is available for
[`webContents.findInPage` ](web-contents.md#webcontentsfindinpage ) request.
2016-07-14 17:46:58 -07:00
#### Event: 'media-started-playing'
2015-12-22 17:16:31 -05:00
Emitted when media starts playing.
2016-07-14 17:46:58 -07:00
#### Event: 'media-paused'
2015-12-22 17:16:31 -05:00
Emitted when media is paused or done playing.
2016-07-14 17:46:58 -07:00
#### Event: 'did-change-theme-color'
2015-12-22 17:16:31 -05:00
2016-04-22 22:53:26 +09:00
Emitted when a page's theme color changes. This is usually due to encountering
a meta tag:
2015-12-22 17:16:31 -05:00
```html
< meta name = 'theme-color' content = ' #ff0000 ' >
```
2016-07-14 17:46:58 -07:00
#### Event: 'update-target-url'
2016-06-07 15:56:19 +09:00
Returns:
* `event` Event
* `url` String
Emitted when mouse moves over a link or the keyboard moves the focus to a link.
2016-07-14 17:46:58 -07:00
#### Event: 'cursor-changed'
2016-01-31 02:27:14 +01:00
Returns:
* `event` Event
* `type` String
2016-02-01 07:17:58 +01:00
* `image` NativeImage (optional)
2016-08-01 02:14:45 +02:00
* `scale` Float (optional) - scaling factor for the custom cursor
* `size` Object (optional) - the size of the `image`
* `width` Integer
* `height` Integer
* `hotspot` Object (optional) - coordinates of the custom cursor's hotspot
* `x` Integer - x coordinate
* `y` Integer - y coordinate
2016-01-31 17:00:14 +01: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` ,
`not-allowed` , `zoom-in` , `zoom-out` , `grab` , `grabbing` , `custom` .
If the `type` parameter is `custom` , the `image` parameter will hold the custom
2016-08-03 14:54:36 -07:00
cursor image in a `NativeImage` , and `scale` , `size` and `hotspot` will hold
2016-08-01 02:14:45 +02:00
additional information about the custom cursor.
2016-01-31 02:27:14 +01:00
2016-07-14 17:46:58 -07:00
#### Event: 'context-menu'
2016-05-03 08:48:16 -04:00
Returns:
* `event` Event
* `params` Object
2016-06-16 15:19:38 -07:00
* `x` Integer - x coordinate
* `y` Integer - y coordinate
2016-05-03 08:48:16 -04:00
* `linkURL` String - URL of the link that encloses the node the context menu
2016-05-14 08:35:38 -04:00
was invoked on.
2016-05-03 08:48:16 -04:00
* `linkText` String - Text associated with the link. May be an empty
2016-05-14 08:35:38 -04:00
string if the contents of the link are an image.
2016-05-03 08:48:16 -04:00
* `pageURL` String - URL of the top level page that the context menu was
2016-05-14 08:35:38 -04:00
invoked on.
2016-05-03 08:48:16 -04:00
* `frameURL` String - URL of the subframe that the context menu was invoked
2016-05-14 08:35:38 -04:00
on.
2016-05-03 08:48:16 -04:00
* `srcURL` String - Source URL for the element that the context menu
2016-05-14 08:35:38 -04:00
was invoked on. Elements with source URLs are images, audio and video.
2016-05-03 08:48:16 -04:00
* `mediaType` String - Type of the node the context menu was invoked on. Can
2016-05-14 08:35:38 -04:00
be `none` , `image` , `audio` , `video` , `canvas` , `file` or `plugin` .
2016-07-21 22:46:46 +08:00
* `hasImageContents` Boolean - Whether the context menu was invoked on an image
2016-05-14 08:35:38 -04:00
which has non-empty contents.
2016-06-21 11:05:34 -07:00
* `isEditable` Boolean - Whether the context is editable.
2016-05-03 08:48:16 -04:00
* `selectionText` String - Text of the selection that the context menu was
2016-05-14 08:35:38 -04:00
invoked on.
2016-05-03 08:48:16 -04:00
* `titleText` String - Title or alt text of the selection that the context
2016-05-14 08:35:38 -04:00
was invoked on.
2016-05-03 08:48:16 -04: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 08:35:38 -04:00
menu was invoked.
2016-05-03 08:48:16 -04:00
* `inputFieldType` String - If the context menu was invoked on an input
2016-05-14 08:35:38 -04:00
field, the type of that field. Possible values are `none` , `plainText` ,
`password` , `other` .
2016-05-03 08:48:16 -04:00
* `menuSourceType` String - Input source that invoked the context menu.
2016-05-14 08:35:38 -04:00
Can be `none` , `mouse` , `keyboard` , `touch` , `touchMenu` .
* `mediaFlags` Object - The flags for the media element the context menu was
invoked on. See more about this below.
2016-06-21 11:05:34 -07:00
* `editFlags` Object - These flags indicate whether the renderer believes it is
2016-05-14 08:35:38 -04:00
able to perform the corresponding action. See more about this below.
The `mediaFlags` is an object with the following properties:
2016-06-23 10:36:16 -07: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-05-14 08:35:38 -04:00
The `editFlags` is an object with the following properties:
2016-06-23 10:36:16 -07: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 08:48:16 -04:00
Emitted when there is a new context menu that needs to be handled.
2016-07-14 17:46:58 -07:00
#### Event: 'select-bluetooth-device'
2016-05-31 13:37:45 +05:30
Returns:
* `event` Event
* `devices` [Objects]
* `deviceName` String
* `deviceId` String
* `callback` Function
* `deviceId` String
Emitted when bluetooth device needs to be selected on call to
2016-06-01 11:39:14 +05:30
`navigator.bluetooth.requestDevice` . To use `navigator.bluetooth` api
`webBluetooth` should be enabled. If `event.preventDefault` is not called,
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 09:38:21 -07:00
```javascript
2016-07-25 18:39:25 -07:00
const {app, webContents} = require('electron')
2016-06-01 11:39:14 +05:30
app.commandLine.appendSwitch('enable-web-bluetooth')
app.on('ready', () => {
webContents.on('select-bluetooth-device', (event, deviceList, callback) => {
event.preventDefault()
let result = deviceList.find((device) => {
return device.deviceName === 'test'
})
if (!result) {
callback('')
} else {
callback(result.deviceId)
}
})
})
```
2016-05-31 13:37:45 +05:30
2016-07-31 00:22:34 +02:00
#### Event: 'paint'
Returns:
* `event` Event
* `dirtyRect` Object
2016-08-04 13:47:52 +09:00
* `x` Integer - The x coordinate on the image.
* `y` Integer - The y coordinate on the image.
* `width` Integer - The width of the dirty area.
* `height` Integer - The height of the dirty area.
2016-08-05 18:08:36 +09:00
* `image` [NativeImage ](native-image.md ) - The image data of the whole frame.
2016-07-31 00:22:34 +02:00
Emitted when a new frame is generated. Only the dirty area is passed in the
buffer.
```javascript
2016-08-04 13:58:50 +09:00
const {BrowserWindow} = require('electron')
2016-08-04 13:47:52 +09:00
let win = new BrowserWindow({webPreferences: {offscreen: true}})
win.webContents.on('paint', (event, dirty, image) => {
2016-08-05 18:08:36 +09:00
// updateBitmap(dirty, image.getBitmap())
2016-08-03 10:15:38 +09:00
})
win.loadURL('http://github.com')
2016-07-31 00:22:34 +02:00
```
2016-07-14 17:46:58 -07:00
### Instance Methods
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.loadURL(url[, options])`
2015-08-20 15:17:53 +02:00
* `url` URL
2016-02-16 12:11:05 +08:00
* `options` Object (optional)
2015-08-26 13:57:42 -07:00
* `httpReferrer` String - A HTTP Referrer url.
* `userAgent` String - A user agent originating the request.
2015-10-26 22:18:16 +01:00
* `extraHeaders` String - Extra headers separated by "\n"
2015-08-20 15:17:53 +02:00
2016-08-18 22:20:55 -07:00
Loads the `url` in the window. The `url` must contain the protocol prefix,
2015-11-14 12:09:18 +05:30
e.g. the `http://` or `file://` . If the load should bypass http cache then
use the `pragma` header to achieve it.
```javascript
2016-07-25 18:39:25 -07:00
const {webContents} = require('electron')
const options = {extraHeaders: 'pragma: no-cache\n'}
webContents.loadURL('https://github.com', options)
2015-11-14 12:09:18 +05:30
```
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.downloadURL(url)`
2015-12-02 13:49:42 -08:00
* `url` URL
Initiates a download of the resource at `url` without navigating. The
`will-download` event of `session` will be triggered.
2016-07-14 17:46:58 -07:00
#### `contents.getURL()`
2015-08-20 15:17:53 +02:00
2015-11-12 21:20:09 +08:00
Returns URL of the current web page.
2015-08-20 15:17:53 +02:00
2015-11-12 21:20:09 +08:00
```javascript
2016-07-25 18:39:25 -07:00
const {BrowserWindow} = require('electron')
let win = new BrowserWindow({width: 800, height: 600})
win.loadURL('http://github.com')
2015-08-20 15:17:53 +02:00
2016-07-25 18:39:25 -07:00
let currentURL = win.webContents.getURL()
console.log(currentURL)
2015-08-20 15:17:53 +02:00
```
2016-07-14 17:46:58 -07:00
#### `contents.getTitle()`
2015-08-20 15:17:53 +02:00
2015-08-20 19:03:53 +02:00
Returns the title of the current web page.
2015-08-20 15:17:53 +02:00
2016-08-03 14:54:36 -07:00
#### `contents.isDestroyed()`
Returns a Boolean, whether the web page is destroyed.
2016-07-14 17:46:58 -07:00
#### `contents.isFocused()`
2016-07-13 14:20:33 -07:00
Returns a Boolean, whether the web page is focused.
2016-07-14 17:46:58 -07:00
#### `contents.isLoading()`
2015-08-20 15:17:53 +02:00
Returns whether web page is still loading resources.
2016-07-14 17:46:58 -07:00
#### `contents.isLoadingMainFrame()`
2016-04-19 23:27:22 -07:00
2016-04-22 22:53:26 +09:00
Returns whether the main frame (and not just iframes or frames within it) is
still loading.
2016-04-19 23:27:22 -07:00
2016-07-14 17:46:58 -07:00
#### `contents.isWaitingForResponse()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Returns whether the web page is waiting for a first-response from the main
2015-08-24 15:41:02 -07:00
resource of the page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.stop()`
2015-08-20 15:17:53 +02:00
Stops any pending navigation.
2016-07-14 17:46:58 -07:00
#### `contents.reload()`
2015-08-20 15:17:53 +02:00
2015-08-20 19:03:53 +02:00
Reloads the current web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.reloadIgnoringCache()`
2015-08-20 15:17:53 +02:00
Reloads current page and ignores cache.
2016-07-14 17:46:58 -07:00
#### `contents.canGoBack()`
2015-08-20 15:17:53 +02:00
2015-08-20 19:03:53 +02:00
Returns whether the browser can go back to previous web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.canGoForward()`
2015-08-20 15:17:53 +02:00
2015-08-20 19:03:53 +02:00
Returns whether the browser can go forward to next web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.canGoToOffset(offset)`
2015-08-20 15:17:53 +02:00
* `offset` Integer
Returns whether the web page can go to `offset` .
2016-07-14 17:46:58 -07:00
#### `contents.clearHistory()`
2015-08-20 15:17:53 +02:00
Clears the navigation history.
2016-07-14 17:46:58 -07:00
#### `contents.goBack()`
2015-08-20 15:17:53 +02:00
2015-08-20 19:03:53 +02:00
Makes the browser go back a web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.goForward()`
2015-08-20 15:17:53 +02:00
2015-08-20 19:03:53 +02:00
Makes the browser go forward a web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.goToIndex(index)`
2015-08-20 15:17:53 +02:00
* `index` Integer
2015-08-20 19:03:53 +02:00
Navigates browser to the specified absolute web page index.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.goToOffset(offset)`
2015-08-20 15:17:53 +02:00
* `offset` Integer
Navigates to the specified offset from the "current entry".
2016-07-14 17:46:58 -07:00
#### `contents.isCrashed()`
2015-08-20 15:17:53 +02:00
Whether the renderer process has crashed.
2016-07-14 17:46:58 -07:00
#### `contents.setUserAgent(userAgent)`
2015-08-20 15:17:53 +02:00
* `userAgent` String
2015-08-26 13:57:42 -07:00
Overrides the user agent for this web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.getUserAgent()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Returns a `String` representing the user agent for this web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.insertCSS(css)`
2015-08-20 15:17:53 +02:00
* `css` String
2015-08-20 19:03:53 +02:00
Injects CSS into the current web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.executeJavaScript(code[, userGesture, callback])`
2015-08-20 15:17:53 +02:00
* `code` String
2015-08-24 15:55:53 -07:00
* `userGesture` Boolean (optional)
2016-02-17 22:33:27 +05:30
* `callback` Function (optional) - Called after script has been executed.
2016-02-22 19:30:21 +05:30
* `result`
2015-08-20 15:17:53 +02:00
Evaluates `code` in page.
2015-08-24 15:41:02 -07: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 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.setAudioMuted(muted)`
2015-08-20 15:17:53 +02:00
2015-11-23 16:59:15 +08:00
* `muted` Boolean
2015-08-20 15:17:53 +02:00
2015-08-20 19:03:53 +02:00
Mute the audio on the current web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.isAudioMuted()`
2015-08-20 15:17:53 +02:00
Returns whether this page has been muted.
2016-08-02 12:26:49 +10: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 13:04:21 +10:00
#### `contents.getZoomFactor(callback)`
2016-08-02 14:44:06 +09:00
* `callback` Function
Sends a request to get current zoom factor, the `callback` will be called with
`callback(zoomFactor)` .
2016-08-02 13:04:21 +10:00
2016-08-02 12:26:49 +10:00
#### `contents.setZoomLevel(level)`
* `level` Number - Zoom level
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
limits of 300% and 50% of original size, respectively.
2016-08-02 13:04:21 +10:00
#### `contents.getZoomLevel(callback)`
2016-08-02 14:44:06 +09:00
* `callback` Function
Sends a request to get current zoom level, the `callback` will be called with
`callback(zoomLevel)` .
2016-08-02 13:04:21 +10:00
2016-08-02 12:26:49 +10:00
#### `contents.setZoomLevelLimits(minimumLevel, maximumLevel)`
* `minimumLevel` Number
* `maximumLevel` Number
2016-08-03 15:43:30 +02:00
Sets the maximum and minimum zoom level.
2016-08-02 12:26:49 +10:00
2016-07-14 17:46:58 -07:00
#### `contents.undo()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Executes the editing command `undo` in web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.redo()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Executes the editing command `redo` in web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.cut()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Executes the editing command `cut` in web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.copy()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Executes the editing command `copy` in web page.
2015-08-20 15:17:53 +02:00
2016-08-25 14:42:53 -07:00
#### `contents.copyImageAt(x, y)`
2016-07-26 12:08:05 -07:00
* `x` Integer
* `y` Integer
Copy the image at the given position to the clipboard.
2016-07-14 17:46:58 -07:00
#### `contents.paste()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Executes the editing command `paste` in web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.pasteAndMatchStyle()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Executes the editing command `pasteAndMatchStyle` in web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.delete()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Executes the editing command `delete` in web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.selectAll()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Executes the editing command `selectAll` in web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.unselect()`
2015-08-20 15:17:53 +02:00
2015-08-26 13:57:42 -07:00
Executes the editing command `unselect` in web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.replace(text)`
2015-08-20 15:17:53 +02:00
* `text` String
2015-08-26 13:57:42 -07:00
Executes the editing command `replace` in web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.replaceMisspelling(text)`
2015-08-20 15:17:53 +02:00
* `text` String
2015-08-26 13:57:42 -07:00
Executes the editing command `replaceMisspelling` in web page.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.insertText(text)`
2016-01-13 11:55:49 +08:00
* `text` String
Inserts `text` to the focused element.
2016-07-14 17:46:58 -07:00
#### `contents.findInPage(text[, options])`
2015-12-17 22:57:56 +05:30
* `text` String - Content to be searched, must not be empty.
2016-02-16 11:54:41 +08:00
* `options` Object (optional)
2015-12-18 04:40:42 +05:30
* `forward` Boolean - Whether to search forward or backward, defaults to `true` .
* `findNext` Boolean - Whether the operation is first request or a follow up,
defaults to `false` .
* `matchCase` Boolean - Whether search should be case-sensitive,
defaults to `false` .
2015-12-17 22:57:56 +05:30
* `wordStart` Boolean - Whether to look only at the start of words.
2015-12-18 04:40:42 +05:30
defaults to `false` .
* `medialCapitalAsWordStart` Boolean - When combined with `wordStart` ,
2015-12-17 22:57:56 +05:30
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-18 04:40:42 +05:30
Accepts several other intra-word matches, defaults to `false` .
2015-12-17 22:57:56 +05:30
2016-04-22 22:53:26 +09:00
Starts a request to find all matches for the `text` in the web page and returns
an `Integer` representing the request id used for the request. 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 22:57:56 +05:30
2016-07-14 17:46:58 -07:00
#### `contents.stopFindInPage(action)`
2015-12-17 22:57:56 +05:30
2015-12-18 04:40:42 +05:30
* `action` String - Specifies the action to take place when ending
2015-12-21 18:24:55 +05:30
[`webContents.findInPage` ](web-contents.md#webcontentfindinpage ) request.
2016-07-06 18:58:50 +03:00
* `clearSelection` - Clear the selection.
* `keepSelection` - Translate the selection into a normal selection.
2015-12-18 04:40:42 +05:30
* `activateSelection` - Focus and click the selection node.
2015-12-17 22:57:56 +05:30
2015-12-18 04:40:42 +05:30
Stops any `findInPage` request for the `webContents` with the provided `action` .
2015-12-17 22:57:56 +05:30
```javascript
2016-07-25 18:39:25 -07:00
const {webContents} = require('electron')
2016-05-11 02:15:09 +09:00
webContents.on('found-in-page', (event, result) => {
2016-07-25 18:39:25 -07:00
if (result.finalUpdate) webContents.stopFindInPage('clearSelection')
})
2015-12-17 22:57:56 +05:30
2016-07-25 18:39:25 -07:00
const requestId = webContents.findInPage('api')
console.log(requestId)
2015-12-18 04:40:42 +05:30
```
2015-12-17 22:57:56 +05:30
2016-07-14 17:46:58 -07:00
#### `contents.capturePage([rect, ]callback)`
2016-07-05 17:26:05 -07:00
* `rect` Object (optional) - The area of the page to be captured
* `x` Integer
* `y` Integer
* `width` Integer
* `height` Integer
* `callback` Function
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-14 17:46:58 -07:00
#### `contents.hasServiceWorker(callback)`
2015-08-20 15:17:53 +02:00
* `callback` Function
2015-08-20 19:03:53 +02:00
Checks if any ServiceWorker is registered and returns a boolean as
2015-08-20 15:17:53 +02:00
response to `callback` .
2016-07-14 17:46:58 -07:00
#### `contents.unregisterServiceWorker(callback)`
2015-08-20 15:17:53 +02:00
* `callback` Function
2015-08-20 19:03:53 +02: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 15:17:53 +02:00
when the JS promise is rejected.
2016-07-14 17:46:58 -07:00
#### `contents.print([options])`
2015-08-20 15:17:53 +02:00
2016-02-16 12:11:05 +08:00
* `options` Object (optional)
* `silent` Boolean - Don't ask user for print settings. Default is `false` .
* `printBackground` Boolean - Also prints the background color and image of
the web page. Default is `false` .
2015-08-20 15:17:53 +02:00
2016-07-09 20:31:02 +03:00
Prints window's web page. When `silent` is set to `true` , Electron will pick
2015-08-20 15:17:53 +02:00
up system's default printer and default settings for printing.
2015-08-26 13:57:42 -07:00
Calling `window.print()` in web page is equivalent to calling
2015-08-20 15:17:53 +02:00
`webContents.print({silent: false, printBackground: false})` .
2016-08-30 08:45:39 +08:00
Use `page-break-before: always; ` CSS style to force to print to a new page.
2016-07-14 17:46:58 -07:00
#### `contents.printToPDF(options, callback)`
2015-08-20 15:17:53 +02:00
2016-02-16 12:11:05 +08:00
* `options` Object
* `marginsType` Integer - Specifies the type of margins to use. Uses 0 for
default margin, 1 for no margin, and 2 for minimum margin.
* `pageSize` String - Specify page size of the generated PDF. Can be `A3` ,
2016-06-01 15:27:17 +09:00
`A4` , `A5` , `Legal` , `Letter` , `Tabloid` or an Object containing `height`
and `width` in microns.
2016-02-16 12:11:05 +08:00
* `printBackground` Boolean - Whether to print CSS backgrounds.
* `printSelectionOnly` Boolean - Whether to print selection only.
* `landscape` Boolean - `true` for landscape, `false` for portrait.
* `callback` Function
2015-08-20 15:17:53 +02:00
Prints window's web page as PDF with Chromium's preview printing custom
settings.
2016-02-16 12:11:05 +08:00
The `callback` will be called with `callback(error, data)` on completion. The
`data` is a `Buffer` that contains the generated PDF data.
2015-08-20 19:03:53 +02:00
By default, an empty `options` will be regarded as:
2016-08-16 14:50:21 -07:00
```javascript
2015-08-20 19:03:53 +02:00
{
2015-08-26 13:57:42 -07:00
marginsType: 0,
printBackground: false,
printSelectionOnly: false,
landscape: false
2015-08-20 19:03:53 +02:00
}
```
2015-08-20 15:17:53 +02:00
2016-08-30 08:45:39 +08:00
Use `page-break-before: always; ` CSS style to force to print to a new page.
2016-06-01 15:27:17 +09:00
An example of `webContents.printToPDF` :
2015-08-20 15:17:53 +02:00
```javascript
2016-07-25 18:39:25 -07:00
const {BrowserWindow} = require('electron')
const fs = require('fs')
2015-08-20 15:17:53 +02:00
2016-07-25 18:39:25 -07:00
let win = new BrowserWindow({width: 800, height: 600})
win.loadURL('http://github.com')
2015-08-20 15:17:53 +02:00
2016-05-04 11:59:02 -06:00
win.webContents.on('did-finish-load', () => {
2015-08-20 15:17:53 +02:00
// Use default printing options
2016-05-04 11:59:02 -06:00
win.webContents.printToPDF({}, (error, data) => {
2016-07-25 18:39:25 -07:00
if (error) throw error
2016-05-04 11:59:02 -06:00
fs.writeFile('/tmp/print.pdf', data, (error) => {
2016-07-25 18:39:25 -07:00
if (error) throw error
console.log('Write PDF successfully.')
})
})
})
2015-08-20 15:17:53 +02:00
```
2016-07-14 17:46:58 -07:00
#### `contents.addWorkSpace(path)`
2015-08-20 15:17:53 +02:00
* `path` String
2015-11-26 23:16:00 -07:00
Adds the specified path to DevTools workspace. Must be used after DevTools
creation:
```javascript
2016-07-25 18:39:25 -07:00
const {BrowserWindow} = require('electron')
let win = new BrowserWindow()
2016-05-11 02:38:42 +09:00
win.webContents.on('devtools-opened', () => {
2016-07-25 18:39:25 -07:00
win.webContents.addWorkSpace(__dirname)
})
2015-11-26 23:16:00 -07:00
```
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.removeWorkSpace(path)`
2015-08-20 15:17:53 +02:00
* `path` String
2015-09-09 14:11:06 -07:00
Removes the specified path from DevTools workspace.
2015-08-20 15:17:53 +02:00
2016-07-14 17:46:58 -07:00
#### `contents.openDevTools([options])`
2015-10-01 16:30:31 +08:00
2016-02-16 12:11:05 +08:00
* `options` Object (optional)
2016-05-02 14:39:46 +07: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 16:30:31 +08:00
2016-01-04 10:46:30 +08:00
Opens the devtools.
2015-10-01 16:30:31 +08:00
2016-07-14 17:46:58 -07:00
#### `contents.closeDevTools()`
2015-10-01 16:30:31 +08:00
2016-01-04 10:46:30 +08:00
Closes the devtools.
2015-10-01 16:30:31 +08:00
2016-07-14 17:46:58 -07:00
#### `contents.isDevToolsOpened()`
2015-10-01 16:30:31 +08:00
2016-01-04 10:46:30 +08:00
Returns whether the devtools is opened.
2016-07-14 17:46:58 -07:00
#### `contents.isDevToolsFocused()`
2016-01-04 10:46:30 +08:00
Returns whether the devtools view is focused .
2015-10-01 16:30:31 +08:00
2016-07-14 17:46:58 -07:00
#### `contents.toggleDevTools()`
2015-10-01 16:30:31 +08:00
Toggles the developer tools.
2016-07-14 17:46:58 -07:00
#### `contents.inspectElement(x, y)`
2015-10-01 16:30:31 +08:00
* `x` Integer
* `y` Integer
Starts inspecting element at position (`x` , `y` ).
2016-07-14 17:46:58 -07:00
#### `contents.inspectServiceWorker()`
2015-10-01 16:30:31 +08:00
Opens the developer tools for the service worker context.
2016-07-14 17:46:58 -07:00
#### `contents.send(channel[, arg1][, arg2][, ...])`
2015-08-20 15:17:53 +02:00
* `channel` String
2015-11-10 16:48:24 +08:00
Send an asynchronous message to renderer process via `channel` , you can also
2016-02-16 11:34:39 +08: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
`ipcRenderer` module.
2015-08-20 15:17:53 +02:00
An example of sending messages from the main process to the renderer process:
```javascript
2015-09-04 13:44:40 -07:00
// In the main process.
2016-07-25 18:39:25 -07:00
const {app, BrowserWindow} = require('electron')
let win = null
2016-05-04 11:59:02 -06:00
app.on('ready', () => {
2016-07-25 18:39:25 -07:00
win = new BrowserWindow({width: 800, height: 600})
win.loadURL(`file://${__dirname}/index.html` )
2016-05-11 02:38:42 +09:00
win.webContents.on('did-finish-load', () => {
2016-07-25 18:39:25 -07:00
win.webContents.send('ping', 'whoooooooh!')
})
})
2015-08-20 15:17:53 +02:00
```
```html
<!-- index.html -->
< html >
< body >
< script >
2016-05-04 11:59:02 -06:00
require('electron').ipcRenderer.on('ping', (event, message) => {
2016-07-25 18:39:25 -07:00
console.log(message) // Prints 'whoooooooh!'
})
2015-08-20 15:17:53 +02:00
< / script >
< / body >
< / html >
```
2016-07-14 17:46:58 -07:00
#### `contents.enableDeviceEmulation(parameters)`
2015-08-31 11:19:19 +02:00
2016-08-25 10:52:19 -07:00
* `parameters` Object
* `screenPosition` String - Specify the screen type to emulate
(default: `desktop` )
* `desktop` String - Desktop screen type
* `mobile` String - Mobile screen type
* `screenSize` Object - Set the emulated screen size (screenPosition == mobile)
* `width` Integer - Set the emulated screen width
* `height` Integer - Set the emulated screen height
* `viewPosition` Object - Position the view on the screen
(screenPosition == mobile) (default: `{x: 0, y: 0}` )
* `x` Integer - Set the x axis offset from top left corner
* `y` Integer - Set the y axis offset from top left corner
* `deviceScaleFactor` Integer - Set the device scale factor (if zero defaults to
original device scale factor) (default: `0` )
* `viewSize` Object - Set the emulated view size (empty means no override)
* `width` Integer - Set the emulated view width
* `height` Integer - Set the emulated view height
* `fitToView` Boolean - Whether emulated view should be scaled down if
necessary to fit into available space (default: `false` )
* `offset` Object - Offset of the emulated view inside available space (not in
fit to view mode) (default: `{x: 0, y: 0}` )
* `x` Float - Set the x axis offset from top left corner
* `y` Float - Set the y axis offset from top left corner
* `scale` Float - Scale of emulated view inside available space (not in fit to
view mode) (default: `1` )
2015-08-31 11:19:19 +02:00
Enable device emulation with the given parameters.
2016-07-14 17:46:58 -07:00
#### `contents.disableDeviceEmulation()`
2015-08-31 11:19:19 +02:00
Disable device emulation enabled by `webContents.enableDeviceEmulation` .
2015-09-18 17:44:11 +08:00
2016-07-14 17:46:58 -07:00
#### `contents.sendInputEvent(event)`
2015-09-18 17:44:11 +08:00
* `event` Object
* `type` String (**required**) - The type of the event, can be `mouseDown` ,
`mouseUp` , `mouseEnter` , `mouseLeave` , `contextMenu` , `mouseWheel` ,
2015-11-16 04:22:37 +01:00
`mouseMove` , `keyDown` , `keyUp` , `char` .
2015-09-18 17:44:11 +08:00
* `modifiers` Array - An array of modifiers of the event, can
include `shift` , `control` , `alt` , `meta` , `isKeypad` , `isAutoRepeat` ,
`leftButtonDown` , `middleButtonDown` , `rightButtonDown` , `capsLock` ,
`numLock` , `left` , `right` .
Sends an input `event` to the page.
For keyboard events, the `event` object also have following properties:
2016-03-06 15:12:04 +09: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 17:44:11 +08:00
For mouse events, the `event` object also have following properties:
* `x` Integer (**required**)
* `y` Integer (**required**)
2015-09-28 02:52:16 +02:00
* `button` String - The button pressed, can be `left` , `middle` , `right`
2015-09-18 17:44:11 +08: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 17:53:19 +08:00
2016-07-14 17:46:58 -07:00
#### `contents.beginFrameSubscription([onlyDirty ,]callback)`
2015-09-18 17:53:19 +08:00
2016-06-26 11:46:40 +09:00
* `onlyDirty` Boolean (optional) - Defaults to `false`
2015-09-18 17:53:19 +08:00
* `callback` Function
Begin subscribing for presentation events and captured frames, the `callback`
2016-09-09 23:26:14 +02:00
will be called with `callback(image, dirtyRect)` when there is a
2016-06-21 13:35:30 +02:00
presentation event.
2015-09-18 17:53:19 +08:00
2016-09-09 23:26:14 +02:00
The `image` is a [NativeImage ](native-image.md ) that contains the image data of
the frame.
2015-09-18 17:53:19 +08:00
2016-06-25 18:23:40 +02: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
2016-09-09 23:26:14 +02:00
`true` , `image` will only contain the repainted area. `onlyDirty`
2016-06-21 13:35:30 +02:00
defaults to `false` .
2016-07-14 17:46:58 -07:00
#### `contents.endFrameSubscription()`
2015-09-18 17:53:19 +08:00
End subscribing for frame presentation events.
2015-10-01 16:30:31 +08:00
2016-07-14 17:46:58 -07:00
#### `contents.startDrag(item)`
2016-07-03 15:10:59 +09:00
* `item` object
* `file` String
* `icon` [NativeImage ](native-image.md )
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-14 17:46:58 -07:00
#### `contents.savePage(fullPath, saveType, callback)`
2015-10-14 12:41:31 +08: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-11 02:15:09 +09:00
* `callback` Function - `(error) => {}` .
2015-10-14 12:41:31 +08:00
* `error` Error
Returns true if the process of saving page has been initiated successfully.
```javascript
2016-07-25 18:39:25 -07:00
const {BrowserWindow} = require('electron')
let win = new BrowserWindow()
win.loadURL('https://github.com')
2015-10-14 12:41:31 +08:00
2016-05-04 11:59:02 -06:00
win.webContents.on('did-finish-load', () => {
win.webContents.savePage('/tmp/test.html', 'HTMLComplete', (error) => {
2016-07-25 18:39:25 -07:00
if (!error) console.log('Save page successfully')
})
})
2015-10-14 12:41:31 +08:00
```
2015-11-19 21:10:50 +08:00
2016-07-14 17:46:58 -07:00
#### `contents.showDefinitionForSelection()` _macOS_
2016-06-07 13:09:54 -07:00
Shows pop-up dictionary that searches the selected word on the page.
2016-07-31 17:10:53 +02:00
#### `contents.isOffscreen()`
Indicates whether *offscreen rendering* is enabled.
2016-07-31 00:22:34 +02: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()`
If *offscreen rendering* is enabled returns whether it is currently painting.
#### `contents.setFrameRate(fps)`
2016-08-25 14:43:06 -07:00
* `fps` Integer
2016-07-31 00:22:34 +02:00
If *offscreen rendering* is enabled sets the frame rate to the specified number.
Only values between 1 and 60 are accepted.
#### `contents.getFrameRate()`
If *offscreen rendering* is enabled returns the current frame rate.
2016-07-14 17:46:58 -07:00
### Instance Properties
2015-11-19 21:10:50 +08:00
2016-07-14 17:46:58 -07:00
#### `contents.id`
2016-05-17 21:56:47 +09:00
The unique ID of this WebContents.
2016-07-14 17:46:58 -07:00
#### `contents.session`
2015-11-19 21:48:45 +08:00
Returns the [session ](session.md ) object used by this webContents.
2016-07-14 17:46:58 -07:00
#### `contents.hostWebContents`
2016-02-17 14:22:19 +05:30
Returns the `WebContents` that might own this `WebContents` .
2016-07-14 17:46:58 -07:00
#### `contents.devToolsWebContents`
2015-11-19 21:10:50 +08:00
Get the `WebContents` of DevTools for this `WebContents` .
**Note:** Users should never store this object because it may become `null`
when the DevTools has been closed.
2016-01-21 23:52:23 +05:30
2016-07-14 17:46:58 -07:00
#### `contents.debugger`
Get the debugger instance for this webContents.
## Class: Debugger
2016-01-21 23:52:23 +05:30
2016-08-22 14:11:03 -07:00
> An alternate transport for Chrome's remote debugging protocol.
Chrome Developer Tools has a [special binding][rdp] available at JavaScript
runtime that allows interacting with pages and instrumenting them.
2016-01-21 23:52:23 +05:30
```javascript
2016-07-25 18:39:25 -07:00
const {BrowserWindow} = require('electron')
let win = new BrowserWindow()
2016-01-21 23:52:23 +05:30
try {
2016-07-25 18:39:25 -07:00
win.webContents.debugger.attach('1.1')
} catch (err) {
console.log('Debugger attach failed : ', err)
}
2016-01-21 23:52:23 +05:30
2016-05-04 11:59:02 -06:00
win.webContents.debugger.on('detach', (event, reason) => {
2016-07-25 18:39:25 -07:00
console.log('Debugger detached due to : ', reason)
})
2016-01-21 23:52:23 +05:30
2016-05-04 11:59:02 -06:00
win.webContents.debugger.on('message', (event, method, params) => {
2016-05-10 18:42:11 +09:00
if (method === 'Network.requestWillBeSent') {
2016-07-25 18:39:25 -07:00
if (params.request.url === 'https://www.github.com') {
win.webContents.debugger.detach()
}
2016-01-21 23:52:23 +05:30
}
2016-07-25 18:39:25 -07:00
})
2016-01-21 23:52:23 +05:30
2016-07-25 18:39:25 -07:00
win.webContents.debugger.sendCommand('Network.enable')
2016-01-21 23:52:23 +05:30
```
2016-07-14 17:46:58 -07:00
### Instance Methods
#### `debugger.attach([protocolVersion])`
2016-01-21 23:52:23 +05:30
2016-01-22 14:17:23 +05:30
* `protocolVersion` String (optional) - Requested debugging protocol version.
2016-01-21 23:52:23 +05:30
Attaches the debugger to the `webContents` .
2016-07-14 17:46:58 -07:00
#### `debugger.isAttached()`
2016-01-22 14:17:23 +05:30
Returns a boolean indicating whether a debugger is attached to the `webContents` .
2016-07-14 17:46:58 -07:00
#### `debugger.detach()`
2016-01-21 23:52:23 +05:30
Detaches the debugger from the `webContents` .
2016-07-14 17:46:58 -07:00
#### `debugger.sendCommand(method[, commandParams, callback])`
2016-01-21 23:52:23 +05:30
* `method` String - Method name, should be one of the methods defined by the
remote debugging protocol.
2016-01-22 14:17:23 +05:30
* `commandParams` Object (optional) - JSON object with request parameters.
* `callback` Function (optional) - Response
* `error` Object - Error message indicating the failure of the command.
2016-01-21 23:52:23 +05:30
* `result` Object - Response defined by the 'returns' attribute of
the command description in the remote debugging protocol.
Send given command to the debugging target.
2016-07-14 17:46:58 -07:00
### Instance Events
2016-06-17 14:01:33 -07:00
#### Event: 'detach'
2016-01-21 23:52:23 +05:30
2016-01-22 10:27:25 +05:30
* `event` Event
* `reason` String - Reason for detaching debugger.
2016-01-21 23:52:23 +05:30
2016-01-22 10:27:25 +05:30
Emitted when debugging session is terminated. This happens either when
2016-01-21 23:52:23 +05:30
`webContents` is closed or devtools is invoked for the attached `webContents` .
2016-06-17 14:01:33 -07:00
#### Event: 'message'
2016-01-21 23:52:23 +05:30
2016-01-22 10:27:25 +05:30
* `event` Event
* `method` String - Method name.
* `params` Object - Event parameters defined by the 'parameters'
attribute in the remote debugging protocol.
Emitted whenever debugging target issues instrumentation event.
2016-01-21 23:52:23 +05:30
2016-01-22 10:27:25 +05:30
[rdp]: https://developer.chrome.com/devtools/docs/debugger-protocol