56 KiB
			
		
	
	
	
	
	
	
	
			
		
		
	
	webContents
Render and control web pages.
Process: Main
webContents is an EventEmitter.
It is responsible for rendering and controlling a web page and is a property of
the BrowserWindow object. An example of accessing the
webContents object:
const { BrowserWindow } = require('electron')
let win = new BrowserWindow({ width: 800, height: 1500 })
win.loadURL('http://github.com')
let contents = win.webContents
console.log(contents)
Methods
These methods can be accessed from the webContents module:
const { webContents } = require('electron')
console.log(webContents)
webContents.getAllWebContents()
Returns WebContents[] - An array of all WebContents instances. This will contain web contents
for all windows, webviews, opened devtools, and devtools extension background pages.
webContents.getFocusedWebContents()
Returns WebContents - The web contents that is focused in this application, otherwise
returns null.
webContents.fromId(id)
- idInteger
Returns WebContents - A WebContents instance with the given ID.
Class: WebContents
Render and control the contents of a BrowserWindow instance.
Process: Main
Instance Events
Event: 'did-finish-load'
Emitted when the navigation is done, i.e. the spinner of the tab has stopped
spinning, and the onload event was dispatched.
Event: 'did-fail-load'
Returns:
- eventEvent
- errorCodeInteger
- errorDescriptionString
- validatedURLString
- isMainFrameBoolean
- frameProcessIdInteger
- frameRoutingIdInteger
This event is like did-finish-load but emitted when the load failed.
The full list of error codes and their meaning is available here.
Event: 'did-fail-provisional-load'
Returns:
- eventEvent
- errorCodeInteger
- errorDescriptionString
- validatedURLString
- isMainFrameBoolean
- frameProcessIdInteger
- frameRoutingIdInteger
This event is like did-fail-load but emitted when the load was cancelled
(e.g. window.stop() was invoked).
Event: 'did-frame-finish-load'
Returns:
- eventEvent
- isMainFrameBoolean
- frameProcessIdInteger
- frameRoutingIdInteger
Emitted when a frame has done navigation.
Event: 'did-start-loading'
Corresponds to the points in time when the spinner of the tab started spinning.
Event: 'did-stop-loading'
Corresponds to the points in time when the spinner of the tab stopped spinning.
Event: 'dom-ready'
Returns:
- eventEvent
Emitted when the document in the given frame is loaded.
Event: 'page-title-updated'
Returns:
- eventEvent
- titleString
- explicitSetBoolean
Fired when page title is set during navigation. explicitSet is false when
title is synthesized from file url.
Event: 'page-favicon-updated'
Returns:
- eventEvent
- faviconsString[] - Array of URLs.
Emitted when page receives favicon urls.
Event: 'new-window'
Returns:
- eventEvent
- urlString
- frameNameString
- dispositionString - Can be- default,- foreground-tab,- background-tab,- new-window,- save-to-diskand- other.
- optionsBrowserWindowConstructorOptions - The options which will be used for creating the new- BrowserWindow.
- additionalFeaturesString[] - The non-standard features (features not handled by Chromium or Electron) given to- window.open().
- referrerReferrer - The referrer that will be passed to the new window. May or may not result in the- Refererheader being sent, depending on the referrer policy.
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.
Calling event.preventDefault() will prevent Electron from automatically creating a
new BrowserWindow. If you call event.preventDefault() and manually create a new
BrowserWindow then you must set event.newGuest to reference the new BrowserWindow
instance, failing to do so may result in unexpected behavior. For example:
myBrowserWindow.webContents.on('new-window', (event, url, frameName, disposition, options) => {
  event.preventDefault()
  const win = new BrowserWindow({
    webContents: options.webContents, // use existing webContents if provided
    show: false
  })
  win.once('ready-to-show', () => win.show())
  if (!options.webContents) {
    win.loadURL(url) // existing webContents will be navigated automatically
  }
  event.newGuest = win
})
Event: 'will-navigate'
Returns:
- eventEvent
- urlString
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.
This event will not emit when the navigation is started programmatically with
APIs like webContents.loadURL and webContents.back.
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.
Calling event.preventDefault() will prevent the navigation.
Event: 'did-start-navigation'
Returns:
- eventEvent
- urlString
- isInPlaceBoolean
- isMainFrameBoolean
- frameProcessIdInteger
- frameRoutingIdInteger
Emitted when any frame (including main) starts navigating. isInplace will be
true for in-page navigations.
Event: 'will-redirect'
Returns:
- eventEvent
- urlString
- isInPlaceBoolean
- isMainFrameBoolean
- frameProcessIdInteger
- frameRoutingIdInteger
Emitted as a server side redirect occurs during navigation. For example a 302 redirect.
This event will be emitted after did-start-navigation and always before the
did-redirect-navigation event for the same navigation.
Calling event.preventDefault() will prevent the navigation (not just the
redirect).
Event: 'did-redirect-navigation'
Returns:
- eventEvent
- urlString
- isInPlaceBoolean
- isMainFrameBoolean
- frameProcessIdInteger
- frameRoutingIdInteger
Emitted after a server side redirect occurs during navigation. For example a 302 redirect.
This event can not be prevented, if you want to prevent redirects you should
checkout out the will-redirect event above.
Event: 'did-navigate'
Returns:
- eventEvent
- urlString
- httpResponseCodeInteger - -1 for non HTTP navigations
- httpStatusTextString - empty for non HTTP navigations
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:
- eventEvent
- urlString
- httpResponseCodeInteger - -1 for non HTTP navigations
- httpStatusTextString - empty for non HTTP navigations,
- isMainFrameBoolean
- frameProcessIdInteger
- frameRoutingIdInteger
Emitted when any 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-navigate-in-page'
Returns:
- eventEvent
- urlString
- isMainFrameBoolean
- frameProcessIdInteger
- frameRoutingIdInteger
Emitted when an in-page navigation happened in any frame.
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.
Event: 'will-prevent-unload'
Returns:
- eventEvent
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.
const { BrowserWindow, dialog } = require('electron')
const win = new BrowserWindow({ width: 800, height: 600 })
win.webContents.on('will-prevent-unload', (event) => {
  const choice = dialog.showMessageBox(win, {
    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
  })
  const leave = (choice === 0)
  if (leave) {
    event.preventDefault()
  }
})
Event: 'crashed'
Returns:
- eventEvent
- killedBoolean
Emitted when the renderer process crashes or is killed.
Event: 'unresponsive'
Emitted when the web page becomes unresponsive.
Event: 'responsive'
Emitted when the unresponsive web page becomes responsive again.
Event: 'plugin-crashed'
Returns:
- eventEvent
- nameString
- versionString
Emitted when a plugin process has crashed.
Event: 'destroyed'
Emitted when webContents is destroyed.
Event: 'before-input-event'
Returns:
- eventEvent
- inputObject - Input properties.- typeString - Either- keyUpor- keyDown.
- keyString - Equivalent to KeyboardEvent.key.
- codeString - Equivalent to KeyboardEvent.code.
- isAutoRepeatBoolean - Equivalent to KeyboardEvent.repeat.
- shiftBoolean - Equivalent to KeyboardEvent.shiftKey.
- controlBoolean - Equivalent to KeyboardEvent.controlKey.
- altBoolean - Equivalent to KeyboardEvent.altKey.
- metaBoolean - Equivalent to KeyboardEvent.metaKey.
 
Emitted before dispatching the keydown and keyup events in the page.
Calling event.preventDefault will prevent the page keydown/keyup events
and the menu shortcuts.
To only prevent the menu shortcuts, use
setIgnoreMenuShortcuts:
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)
})
Event: 'enter-html-full-screen'
Emitted when the window enters a full-screen state triggered by HTML API.
Event: 'leave-html-full-screen'
Emitted when the window leaves a full-screen state triggered by HTML API.
Event: 'zoom-changed'
Returns:
- eventEvent
- zoomDirectionString - Can be- inor- out.
Emitted when the user is requesting to change the zoom level using the mouse wheel.
Event: 'devtools-opened'
Emitted when DevTools is opened.
Event: 'devtools-closed'
Emitted when DevTools is closed.
Event: 'devtools-focused'
Emitted when DevTools is focused / opened.
Event: 'certificate-error'
Returns:
- eventEvent
- urlString
- errorString - The error code.
- certificateCertificate
- callbackFunction- isTrustedBoolean - Indicates whether the certificate can be considered trusted.
 
Emitted when failed to verify the certificate for url.
The usage is the same with the certificate-error event of
app.
Event: 'select-client-certificate'
Returns:
- eventEvent
- urlURL
- certificateListCertificate[]
- callbackFunction- certificateCertificate - Must be a certificate from the given list.
 
Emitted when a client certificate is requested.
The usage is the same with the select-client-certificate event of
app.
Event: 'login'
Returns:
- eventEvent
- authenticationResponseDetailsObject- urlURL
 
- authInfoObject- isProxyBoolean
- schemeString
- hostString
- portInteger
- realmString
 
- callbackFunction- usernameString (optional)
- passwordString (optional)
 
Emitted when webContents wants to do basic auth.
The usage is the same with the login event of app.
Event: 'found-in-page'
Returns:
- eventEvent
- resultObject- requestIdInteger
- activeMatchOrdinalInteger - Position of the active match.
- matchesInteger - Number of Matches.
- selectionAreaRectangle - Coordinates of first match region.
- finalUpdateBoolean
 
Emitted when a result is available for
[webContents.findInPage] request.
Event: 'media-started-playing'
Emitted when media starts playing.
Event: 'media-paused'
Emitted when media is paused or done playing.
Event: 'did-change-theme-color'
Returns:
- eventEvent
- color(String | null) - Theme color is in format of '#rrggbb'. It is- nullwhen no theme color is set.
Emitted when a page's theme color changes. This is usually due to encountering a meta tag:
<meta name='theme-color' content='#ff0000'>
Event: 'update-target-url'
Returns:
- eventEvent
- urlString
Emitted when mouse moves over a link or the keyboard moves the focus to a link.
Event: 'cursor-changed'
Returns:
- eventEvent
- typeString
- imageNativeImage (optional)
- scaleFloat (optional) - scaling factor for the custom cursor.
- sizeSize (optional) - the size of the- image.
- hotspotPoint (optional) - coordinates of the custom cursor's hotspot.
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 or custom.
If the type parameter is custom, the image parameter will hold the custom
cursor image in a NativeImage, and scale, size and hotspot will hold
additional information about the custom cursor.
Event: 'context-menu'
Returns:
- eventEvent
- paramsObject- xInteger - x coordinate.
- yInteger - y coordinate.
- linkURLString - URL of the link that encloses the node the context menu was invoked on.
- linkTextString - Text associated with the link. May be an empty string if the contents of the link are an image.
- pageURLString - URL of the top level page that the context menu was invoked on.
- frameURLString - URL of the subframe that the context menu was invoked on.
- srcURLString - Source URL for the element that the context menu was invoked on. Elements with source URLs are images, audio and video.
- mediaTypeString - Type of the node the context menu was invoked on. Can be- none,- image,- audio,- video,- canvas,- fileor- plugin.
- hasImageContentsBoolean - Whether the context menu was invoked on an image which has non-empty contents.
- isEditableBoolean - Whether the context is editable.
- selectionTextString - Text of the selection that the context menu was invoked on.
- titleTextString - Title or alt text of the selection that the context was invoked on.
- misspelledWordString - The misspelled word under the cursor, if any.
- dictionarySuggestionsString[] - An array of suggested words to show the user to replace the- misspelledWord. Only available if there is a misspelled word and spellchecker is enabled.
- frameCharsetString - The character encoding of the frame on which the menu was invoked.
- inputFieldTypeString - If the context menu was invoked on an input field, the type of that field. Possible values are- none,- plainText,- password,- other.
- menuSourceTypeString - Input source that invoked the context menu. Can be- none,- mouse,- keyboard,- touchor- touchMenu.
- mediaFlagsObject - The flags for the media element the context menu was invoked on.- inErrorBoolean - Whether the media element has crashed.
- isPausedBoolean - Whether the media element is paused.
- isMutedBoolean - Whether the media element is muted.
- hasAudioBoolean - Whether the media element has audio.
- isLoopingBoolean - Whether the media element is looping.
- isControlsVisibleBoolean - Whether the media element's controls are visible.
- canToggleControlsBoolean - Whether the media element's controls are toggleable.
- canRotateBoolean - Whether the media element can be rotated.
 
- editFlagsObject - These flags indicate whether the renderer believes it is able to perform the corresponding action.- canUndoBoolean - Whether the renderer believes it can undo.
- canRedoBoolean - Whether the renderer believes it can redo.
- canCutBoolean - Whether the renderer believes it can cut.
- canCopyBoolean - Whether the renderer believes it can copy
- canPasteBoolean - Whether the renderer believes it can paste.
- canDeleteBoolean - Whether the renderer believes it can delete.
- canSelectAllBoolean - Whether the renderer believes it can select all.
 
 
Emitted when there is a new context menu that needs to be handled.
Event: 'select-bluetooth-device'
Returns:
- eventEvent
- devicesBluetoothDevice[]
- callbackFunction- deviceIdString
 
Emitted when bluetooth device needs to be selected on call to
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.
const { app, BrowserWindow } = require('electron')
let win = null
app.commandLine.appendSwitch('enable-experimental-web-platform-features')
app.whenReady().then(() => {
  win = new BrowserWindow({ width: 800, height: 600 })
  win.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)
    }
  })
})
Event: 'paint'
Returns:
- eventEvent
- dirtyRectRectangle
- imageNativeImage - The image data of the whole frame.
Emitted when a new frame is generated. Only the dirty area is passed in the buffer.
const { BrowserWindow } = require('electron')
let win = new BrowserWindow({ webPreferences: { offscreen: true } })
win.webContents.on('paint', (event, dirty, image) => {
  // updateBitmap(dirty, image.getBitmap())
})
win.loadURL('http://github.com')
Event: 'devtools-reload-page'
Emitted when the devtools window instructs the webContents to reload
Event: 'will-attach-webview'
Returns:
- eventEvent
- webPreferencesWebPreferences - The web preferences that will be used by the guest page. This object can be modified to adjust the preferences for the guest page.
- paramsRecord<string, string> - The other- <webview>parameters such as the- srcURL. This object can be modified to adjust the parameters of the guest page.
Emitted when a <webview>'s web contents is being attached to this web
contents. Calling event.preventDefault() will destroy the guest page.
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.
Note: The specified preload script option will be appear as preloadURL
(not preload) in the webPreferences object emitted with this event.
Event: 'did-attach-webview'
Returns:
- eventEvent
- webContentsWebContents - The guest web contents that is used by the- <webview>.
Emitted when a <webview> has been attached to this web contents.
Event: 'console-message'
Returns:
- eventEvent
- levelInteger
- messageString
- lineInteger
- sourceIdString
Emitted when the associated window logs a console message.
Event: 'preload-error'
Returns:
- eventEvent
- preloadPathString
- errorError
Emitted when the preload script preloadPath throws an unhandled exception error.
Event: 'ipc-message'
Returns:
- eventEvent
- channelString
- ...argsany[]
Emitted when the renderer process sends an asynchronous message via ipcRenderer.send().
Event: 'ipc-message-sync'
Returns:
- eventEvent
- channelString
- ...argsany[]
Emitted when the renderer process sends a synchronous message via ipcRenderer.sendSync().
Event: 'desktop-capturer-get-sources'
Returns:
- eventEvent
Emitted when desktopCapturer.getSources() is called in the renderer process.
Calling event.preventDefault() will make it return empty sources.
Event: 'remote-require'
Returns:
- eventIpcMainEvent
- moduleNameString
Emitted when remote.require() is called in the renderer process.
Calling event.preventDefault() will prevent the module from being returned.
Custom value can be returned by setting event.returnValue.
Event: 'remote-get-global'
Returns:
- eventIpcMainEvent
- globalNameString
Emitted when remote.getGlobal() is called in the renderer process.
Calling event.preventDefault() will prevent the global from being returned.
Custom value can be returned by setting event.returnValue.
Event: 'remote-get-builtin'
Returns:
- eventIpcMainEvent
- moduleNameString
Emitted when remote.getBuiltin() is called in the renderer process.
Calling event.preventDefault() will prevent the module from being returned.
Custom value can be returned by setting event.returnValue.
Event: 'remote-get-current-window'
Returns:
- eventIpcMainEvent
Emitted when remote.getCurrentWindow() is called in the renderer process.
Calling event.preventDefault() will prevent the object from being returned.
Custom value can be returned by setting event.returnValue.
Event: 'remote-get-current-web-contents'
Returns:
- eventIpcMainEvent
Emitted when remote.getCurrentWebContents() is called in the renderer process.
Calling event.preventDefault() will prevent the object from being returned.
Custom value can be returned by setting event.returnValue.
Instance Methods
contents.loadURL(url[, options])
- urlString
- optionsObject (optional)- httpReferrer(String | Referrer) (optional) - An HTTP Referrer url.
- userAgentString (optional) - A user agent originating the request.
- extraHeadersString (optional) - Extra headers separated by "\n".
- postData(UploadRawData[] | UploadFile[] | UploadBlob[]) (optional)
- baseURLForDataURLString (optional) - Base url (with trailing path separator) for files to be loaded by the data url. This is needed only if the specified- urlis a data url and needs to load other files.
 
Returns Promise<void> - the promise will resolve when the page has finished loading
(see did-finish-load), and rejects
if the page fails to load (see
did-fail-load). A noop rejection handler is already attached, which avoids unhandled rejection errors.
Loads the url in the window. The url must contain the protocol prefix,
e.g. the http:// or file://. If the load should bypass http cache then
use the pragma header to achieve it.
const { webContents } = require('electron')
const options = { extraHeaders: 'pragma: no-cache\n' }
webContents.loadURL('https://github.com', options)
contents.loadFile(filePath[, options])
- filePathString
- optionsObject (optional)- queryRecord<String, String> (optional) - Passed to- url.format().
- searchString (optional) - Passed to- url.format().
- hashString (optional) - Passed to- url.format().
 
Returns Promise<void> - the promise will resolve when the page has finished loading
(see did-finish-load), and rejects
if the page fails to load (see did-fail-load).
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:
| root
| - package.json
| - src
|   - main.js
|   - index.html
Would require code like this
win.loadFile('src/index.html')
contents.downloadURL(url)
- urlString
Initiates a download of the resource at url without navigating. The
will-download event of session will be triggered.
contents.getURL()
Returns String - The URL of the current web page.
const { BrowserWindow } = require('electron')
let win = new BrowserWindow({ width: 800, height: 600 })
win.loadURL('http://github.com')
let currentURL = win.webContents.getURL()
console.log(currentURL)
contents.getTitle()
Returns String - The title of the current web page.
contents.isDestroyed()
Returns Boolean - Whether the web page is destroyed.
contents.focus()
Focuses the web page.
contents.isFocused()
Returns Boolean - Whether the web page is focused.
contents.isLoading()
Returns Boolean - Whether web page is still loading resources.
contents.isLoadingMainFrame()
Returns Boolean - Whether the main frame (and not just iframes or frames within it) is
still loading.
contents.isWaitingForResponse()
Returns Boolean - Whether the web page is waiting for a first-response from the main
resource of the page.
contents.stop()
Stops any pending navigation.
contents.reload()
Reloads the current web page.
contents.reloadIgnoringCache()
Reloads current page and ignores cache.
contents.canGoBack()
Returns Boolean - Whether the browser can go back to previous web page.
contents.canGoForward()
Returns Boolean - Whether the browser can go forward to next web page.
contents.canGoToOffset(offset)
- offsetInteger
Returns Boolean - Whether the web page can go to offset.
contents.clearHistory()
Clears the navigation history.
contents.goBack()
Makes the browser go back a web page.
contents.goForward()
Makes the browser go forward a web page.
contents.goToIndex(index)
- indexInteger
Navigates browser to the specified absolute web page index.
contents.goToOffset(offset)
- offsetInteger
Navigates to the specified offset from the "current entry".
contents.isCrashed()
Returns Boolean - Whether the renderer process has crashed.
contents.setUserAgent(userAgent)
- userAgentString
Overrides the user agent for this web page.
contents.getUserAgent()
Returns String - The user agent for this web page.
contents.insertCSS(css[, options])
- cssString
- optionsObject (optional)- cssOriginString (optional) - Can be either 'user' or 'author'; Specifying 'user' enables you to prevent websites from overriding the CSS you insert. Default is 'author'.
 
Returns Promise<String> - A promise that resolves with a key for the inserted CSS that can later be used to remove the CSS via contents.removeInsertedCSS(key).
Injects CSS into the current web page and returns a unique key for the inserted stylesheet.
contents.on('did-finish-load', () => {
  contents.insertCSS('html, body { background-color: #f00; }')
})
contents.removeInsertedCSS(key)
- keyString
Returns Promise<void> - Resolves if the removal was successful.
Removes the inserted CSS from the current web page. The stylesheet is identified
by its key, which is returned from contents.insertCSS(css).
contents.on('did-finish-load', async () => {
  const key = await contents.insertCSS('html, body { background-color: #f00; }')
  contents.removeInsertedCSS(key)
})
contents.executeJavaScript(code[, userGesture])
- codeString
- userGestureBoolean (optional) - Default is- false.
Returns Promise<any> - A promise that resolves with the result of the executed code
or is rejected if the result of the code is a rejected promise.
Evaluates code in page.
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.
Code execution will be suspended until web page stop loading.
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
  })
contents.executeJavaScriptInIsolatedWorld(worldId, scripts[, userGesture])
- worldIdInteger - The ID of the world to run the javascript in,- 0is the default world,- 999is the world used by Electron's- contextIsolationfeature. You can provide any integer here.
- scriptsWebSource[]
- userGestureBoolean (optional) - Default is- false.
Returns Promise<any> - A promise that resolves with the result of the executed code
or is rejected if the result of the code is a rejected promise.
Works like executeJavaScript but evaluates scripts in an isolated context.
contents.setIgnoreMenuShortcuts(ignore) Experimental
- ignoreBoolean
Ignore application menu shortcuts while this web contents is focused.
contents.setAudioMuted(muted)
- mutedBoolean
Mute the audio on the current web page.
contents.isAudioMuted()
Returns Boolean - Whether this page has been muted.
contents.isCurrentlyAudible()
Returns Boolean - Whether audio is currently playing.
contents.setZoomFactor(factor)
- factorNumber - Zoom factor.
Changes the zoom factor to the specified factor. Zoom factor is zoom percent divided by 100, so 300% = 3.0.
contents.getZoomFactor()
Returns Number - the current zoom factor.
contents.setZoomLevel(level)
- levelNumber - 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. The formula for this is
scale := 1.2 ^ level.
contents.getZoomLevel()
Returns Number - the current zoom level.
contents.setVisualZoomLevelLimits(minimumLevel, maximumLevel)
- minimumLevelNumber
- maximumLevelNumber
Returns Promise<void>
Sets the maximum and minimum pinch-to-zoom level.
NOTE: Visual zoom is disabled by default in Electron. To re-enable it, call:
contents.setVisualZoomLevelLimits(1, 3)
contents.undo()
Executes the editing command undo in web page.
contents.redo()
Executes the editing command redo in web page.
contents.cut()
Executes the editing command cut in web page.
contents.copy()
Executes the editing command copy in web page.
contents.copyImageAt(x, y)
- xInteger
- yInteger
Copy the image at the given position to the clipboard.
contents.paste()
Executes the editing command paste in web page.
contents.pasteAndMatchStyle()
Executes the editing command pasteAndMatchStyle in web page.
contents.delete()
Executes the editing command delete in web page.
contents.selectAll()
Executes the editing command selectAll in web page.
contents.unselect()
Executes the editing command unselect in web page.
contents.replace(text)
- textString
Executes the editing command replace in web page.
contents.replaceMisspelling(text)
- textString
Executes the editing command replaceMisspelling in web page.
contents.insertText(text)
- textString
Returns Promise<void>
Inserts text to the focused element.
contents.findInPage(text[, options])
- textString - Content to be searched, must not be empty.
- optionsObject (optional)- forwardBoolean (optional) - Whether to search forward or backward, defaults to- true.
- findNextBoolean (optional) - Whether the operation is first request or a follow up, defaults to- false.
- matchCaseBoolean (optional) - Whether search should be case-sensitive, defaults to- false.
- wordStartBoolean (optional) - Whether to look only at the start of words. defaults to- false.
- medialCapitalAsWordStartBoolean (optional) - When combined with- wordStart, accepts a match in the middle of a word if the match begins with an uppercase letter followed by a lowercase or non-letter. Accepts several other intra-word matches, defaults to- false.
 
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 event.
contents.stopFindInPage(action)
- actionString - Specifies the action to take place when ending [- webContents.findInPage] request.- clearSelection- Clear the selection.
- keepSelection- Translate the selection into a normal selection.
- activateSelection- Focus and click the selection node.
 
Stops any findInPage request for the webContents with the provided action.
const { webContents } = require('electron')
webContents.on('found-in-page', (event, result) => {
  if (result.finalUpdate) webContents.stopFindInPage('clearSelection')
})
const requestId = webContents.findInPage('api')
console.log(requestId)
contents.capturePage([rect])
- rectRectangle (optional) - The area of the page to be captured.
Returns Promise<NativeImage> - Resolves with a NativeImage
Captures a snapshot of the page within rect. Omitting rect will capture the whole visible page.
contents.isBeingCaptured()
Returns Boolean - Whether this page is being captured. It returns true when the capturer count
is large then 0.
contents.incrementCapturerCount([size, stayHidden])
- sizeSize (optional) - The perferred size for the capturer.
- stayHiddenBoolean (optional) - Keep the page hidden instead of visible.
Increase the capturer count by one. The page is considered visible when its browser window is
hidden and the capturer count is non-zero. If you would like the page to stay hidden, you should ensure that stayHidden is set to true.
This also affects the Page Visibility API.
contents.decrementCapturerCount([stayHidden])
- stayHiddenBoolean (optional) - Keep the page in hidden state instead of visible.
Decrease the capturer count by one. The page will be set to hidden or occluded state when its
browser window is hidden or occluded and the capturer count reaches zero. If you want to
decrease the hidden capturer count instead you should set stayHidden to true.
contents.getPrinters()
Get the system printer list.
Returns PrinterInfo[]
contents.print([options], [callback])
- optionsObject (optional)- silentBoolean (optional) - Don't ask user for print settings. Default is- false.
- printBackgroundBoolean (optional) - Prints the background color and image of the web page. Default is- false.
- deviceNameString (optional) - Set the printer device name to use. Must be the system-defined name and not the 'friendly' name, e.g 'Brother_QL_820NWB' and not 'Brother QL-820NWB'.
- colorBoolean (optional) - Set whether the printed web page will be in color or grayscale. Default is- true.
- marginsObject (optional)- marginTypeString (optional) - Can be- default,- none,- printableArea, or- custom. If- customis chosen, you will also need to specify- top,- bottom,- left, and- right.
- topNumber (optional) - The top margin of the printed web page, in pixels.
- bottomNumber (optional) - The bottom margin of the printed web page, in pixels.
- leftNumber (optional) - The left margin of the printed web page, in pixels.
- rightNumber (optional) - The right margin of the printed web page, in pixels.
 
- landscapeBoolean (optional) - Whether the web page should be printed in landscape mode. Default is- false.
- scaleFactorNumber (optional) - The scale factor of the web page.
- pagesPerSheetNumber (optional) - The number of pages to print per page sheet.
- collateBoolean (optional) - Whether the web page should be collated.
- copiesNumber (optional) - The number of copies of the web page to print.
- pageRangesRecord<string, number> (optional) - The page range to print.- fromNumber - the start page.
- toNumber - the end page.
 
- duplexModeString (optional) - Set the duplex mode of the printed web page. Can be- simplex,- shortEdge, or- longEdge.
- dpiRecord<string, number> (optional)- horizontalNumber (optional) - The horizontal dpi.
- verticalNumber (optional) - The vertical dpi.
 
- headerString (optional) - String to be printed as page header.
- footerString (optional) - String to be printed as page footer.
- pageSizeString | Size (optional) - Specify page size of the printed document. Can be- A3,- A4,- A5,- Legal,- Letter,- Tabloidor an Object containing- height.
 
- callbackFunction (optional)- successBoolean - Indicates success of the print call.
- failureReasonString - Called back if the print fails; can be- cancelledor- failed.
 
Prints window's web page. When silent is set to true, Electron will pick
the system's default printer if deviceName is empty and the default settings for printing.
Use page-break-before: always; CSS style to force to print to a new page.
Example usage:
const options = { silent: true, deviceName: 'My-Printer' }
win.webContents.print(options, (success, errorType) => {
  if (!success) console.log(errorType)
})
contents.printToPDF(options)
- optionsObject- headerFooterRecord<string, string> (optional) - the header and footer for the PDF.- titleString - The title for the PDF header.
- urlString - the url for the PDF footer.
 
- landscapeBoolean (optional) -- truefor landscape,- falsefor portrait.
- marginsTypeInteger (optional) - Specifies the type of margins to use. Uses 0 for default margin, 1 for no margin, and 2 for minimum margin. and- widthin microns.
- scaleFactorNumber (optional) - The scale factor of the web page. Can range from 0 to 100.
- pageRangesRecord<string, number> (optional) - The page range to print.- fromNumber - the first page to print.
- toNumber - the last page to print (inclusive).
 
- pageSizeString | Size (optional) - Specify page size of the generated PDF. Can be- A3,- A4,- A5,- Legal,- Letter,- Tabloidor an Object containing- height
- printBackgroundBoolean (optional) - Whether to print CSS backgrounds.
- printSelectionOnlyBoolean (optional) - Whether to print selection only.
 
Returns Promise<Buffer> - Resolves with the generated PDF data.
Prints window's web page as PDF with Chromium's preview printing custom settings.
The landscape will be ignored if @page CSS at-rule is used in the web page.
By default, an empty options will be regarded as:
{
  marginsType: 0,
  printBackground: false,
  printSelectionOnly: false,
  landscape: false,
  pageSize: 'A4',
  scaleFactor: 100
}
Use page-break-before: always;  CSS style to force to print to a new page.
An example of webContents.printToPDF:
const { BrowserWindow } = require('electron')
const fs = require('fs')
let win = new BrowserWindow({ width: 800, height: 600 })
win.loadURL('http://github.com')
win.webContents.on('did-finish-load', () => {
  // Use default printing options
  win.webContents.printToPDF({}).then(data => {
    fs.writeFile('/tmp/print.pdf', data, (error) => {
      if (error) throw error
      console.log('Write PDF successfully.')
    })
  }).catch(error => {
    console.log(error)
  })
})
contents.addWorkSpace(path)
- pathString
Adds the specified path to DevTools workspace. Must be used after DevTools creation:
const { BrowserWindow } = require('electron')
let win = new BrowserWindow()
win.webContents.on('devtools-opened', () => {
  win.webContents.addWorkSpace(__dirname)
})
contents.removeWorkSpace(path)
- pathString
Removes the specified path from DevTools workspace.
contents.setDevToolsWebContents(devToolsWebContents)
- devToolsWebContentsWebContents
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.
Note that closing the devtools does not destroy the devToolsWebContents, it
is caller's responsibility to destroy devToolsWebContents.
An example of showing devtools in a <webview> tag:
<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" src="about:blank"></webview>
  <script>
    const { webContents } = require('electron').remote
    const emittedOnce = (element, eventName) => new Promise(resolve => {
      element.addEventListener(eventName, event => resolve(event), { once: true })
    })
    const browserView = document.getElementById('browser')
    const devtoolsView = document.getElementById('devtools')
    const browserReady = emittedOnce(browserView, 'dom-ready')
    const devtoolsReady = emittedOnce(devtoolsView, 'dom-ready')
    Promise.all([browserReady, devtoolsReady]).then(() => {
      const browser = webContents.fromId(browserView.getWebContentsId())
      const devtools = webContents.fromId(devtoolsView.getWebContentsId())
      browser.setDevToolsWebContents(devtools)
      browser.openDevTools()
    })
  </script>
</body>
</html>
An example of showing devtools in a BrowserWindow:
const { app, BrowserWindow } = require('electron')
let win = null
let devtools = null
app.whenReady().then(() => {
  win = new BrowserWindow()
  devtools = new BrowserWindow()
  win.loadURL('https://github.com')
  win.webContents.setDevToolsWebContents(devtools.webContents)
  win.webContents.openDevTools({ mode: 'detach' })
})
contents.openDevTools([options])
- optionsObject (optional)- modeString - Opens the devtools with specified dock state, can be- right,- bottom,- undocked,- detach. Defaults to last used dock state. In- undockedmode it's possible to dock back. In- detachmode it's not.
- activateBoolean (optional) - Whether to bring the opened devtools window to the foreground. The default is- true.
 
Opens the devtools.
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.
contents.closeDevTools()
Closes the devtools.
contents.isDevToolsOpened()
Returns Boolean - Whether the devtools is opened.
contents.isDevToolsFocused()
Returns Boolean - Whether the devtools view is focused .
contents.toggleDevTools()
Toggles the developer tools.
contents.inspectElement(x, y)
- xInteger
- yInteger
Starts inspecting element at position (x, y).
contents.inspectSharedWorker()
Opens the developer tools for the shared worker context.
contents.inspectSharedWorkerById(workerId)
- workerIdString
Inspects the shared worker based on its ID.
contents.getAllSharedWorkers()
Returns SharedWorkerInfo[] - Information about all Shared Workers.
contents.inspectServiceWorker()
Opens the developer tools for the service worker context.
contents.send(channel, ...args)
- channelString
- ...argsany[]
Send an asynchronous message to the renderer process via channel, along with
arguments. Arguments will be serialized with the Structured Clone
Algorithm, just like postMessage, so prototype chains will not be
included. Sending Functions, Promises, Symbols, WeakMaps, or WeakSets will
throw an exception.
NOTE: Sending non-standard JavaScript types such as DOM objects or special Electron objects is deprecated, and will begin throwing an exception starting with Electron 9.
The renderer process can handle the message by listening to channel with the
ipcRenderer module.
An example of sending messages from the main process to the renderer process:
// In the main process.
const { app, BrowserWindow } = require('electron')
let win = null
app.whenReady().then(() => {
  win = new BrowserWindow({ width: 800, height: 600 })
  win.loadURL(`file://${__dirname}/index.html`)
  win.webContents.on('did-finish-load', () => {
    win.webContents.send('ping', 'whoooooooh!')
  })
})
<!-- index.html -->
<html>
<body>
  <script>
    require('electron').ipcRenderer.on('ping', (event, message) => {
      console.log(message) // Prints 'whoooooooh!'
    })
  </script>
</body>
</html>
contents.sendToFrame(frameId, channel, ...args)
- frameIdInteger
- channelString
- ...argsany[]
Send an asynchronous message to a specific frame in a renderer process via
channel, along with arguments. Arguments will be serialized with the
Structured Clone Algorithm, just like postMessage, so prototype
chains will not be included. Sending Functions, Promises, Symbols, WeakMaps, or
WeakSets will throw an exception.
NOTE: Sending non-standard JavaScript types such as DOM objects or special Electron objects is deprecated, and will begin throwing an exception starting with Electron 9.
The renderer process can handle the message by listening to channel with the
ipcRenderer module.
If you want to get the frameId of a given renderer context you should use
the webFrame.routingId value.  E.g.
// In a renderer process
console.log('My frameId is:', require('electron').webFrame.routingId)
You can also read frameId from all incoming IPC messages in the main process.
// In the main process
ipcMain.on('ping', (event) => {
  console.info('Message came from frameId:', event.frameId)
})
contents.enableDeviceEmulation(parameters)
- parametersObject- screenPositionString - Specify the screen type to emulate (default:- desktop):- desktop- Desktop screen type.
- mobile- Mobile screen type.
 
- screenSizeSize - Set the emulated screen size (screenPosition == mobile).
- viewPositionPoint - Position the view on the screen (screenPosition == mobile) (default:- { x: 0, y: 0 }).
- deviceScaleFactorInteger - Set the device scale factor (if zero defaults to original device scale factor) (default:- 0).
- viewSizeSize - Set the emulated view size (empty means no override)
- scaleFloat - Scale of emulated view inside available space (not in fit to view mode) (default:- 1).
 
Enable device emulation with the given parameters.
contents.disableDeviceEmulation()
Disable device emulation enabled by webContents.enableDeviceEmulation.
contents.sendInputEvent(inputEvent)
- inputEventMouseInputEvent | MouseWheelInputEvent | KeyboardInputEvent
Sends an input event to the page.
Note: The BrowserWindow containing the contents needs to be focused for
sendInputEvent() to work.
contents.beginFrameSubscription([onlyDirty ,]callback)
- onlyDirtyBoolean (optional) - Defaults to- false.
- callbackFunction- imageNativeImage
- dirtyRectRectangle
 
Begin subscribing for presentation events and captured frames, the callback
will be called with callback(image, dirtyRect) when there is a presentation
event.
The image is an instance of NativeImage that stores the
captured frame.
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
true, image will only contain the repainted area. onlyDirty defaults to
false.
contents.endFrameSubscription()
End subscribing for frame presentation events.
contents.startDrag(item)
- itemObject- fileString[] | String - The path(s) to the file(s) being dragged.
- iconNativeImage | String - The image must be non-empty on macOS.
 
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.
contents.savePage(fullPath, saveType)
- fullPathString - The full file path.
- saveTypeString - Specify the save type.- HTMLOnly- Save only the HTML of the page.
- HTMLComplete- Save complete-html page.
- MHTML- Save complete-html page as MHTML.
 
Returns Promise<void> - resolves if the page is saved.
const { BrowserWindow } = require('electron')
let win = new BrowserWindow()
win.loadURL('https://github.com')
win.webContents.on('did-finish-load', async () => {
  win.webContents.savePage('/tmp/test.html', 'HTMLComplete').then(() => {
    console.log('Page was saved successfully.')
  }).catch(err => {
    console.log(err)
  })
})
contents.showDefinitionForSelection() macOS
Shows pop-up dictionary that searches the selected word on the page.
contents.isOffscreen()
Returns Boolean - Indicates whether offscreen rendering is enabled.
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()
Returns Boolean - If offscreen rendering is enabled returns whether it is currently painting.
contents.setFrameRate(fps)
- fpsInteger
If offscreen rendering is enabled sets the frame rate to the specified number. Only values between 1 and 60 are accepted.
contents.getFrameRate()
Returns Integer - If offscreen rendering is enabled returns the current frame rate.
contents.invalidate()
Schedules a full repaint of the window this web contents is in.
If offscreen rendering is enabled invalidates the frame and generates a new
one through the 'paint' event.
contents.getWebRTCIPHandlingPolicy()
Returns String - Returns the WebRTC IP Handling Policy.
contents.setWebRTCIPHandlingPolicy(policy)
- policyString - Specify the WebRTC IP Handling Policy.- 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 interfaces and bind them to discover public interfaces.
- default_public_interface_only- Exposes user's public IP, but does not expose user's local IP. When this policy is used, WebRTC should only use the default route used by http. This doesn't expose any local addresses.
- default_public_and_private_interfaces- Exposes user's public and local IPs. When this policy is used, WebRTC should only use the default route used by http. This also exposes the associated default private address. Default route is the route chosen by the OS on a multi-homed endpoint.
- disable_non_proxied_udp- Does not expose public or local IPs. When this 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 exposed via WebRTC. See BrowserLeaks for more details.
contents.getOSProcessId()
Returns Integer - The operating system pid of the associated renderer
process.
contents.getProcessId()
Returns Integer - The Chromium internal pid of the associated renderer. Can
be compared to the frameProcessId passed by frame specific navigation events
(e.g. did-frame-navigate)
contents.takeHeapSnapshot(filePath)
- filePathString - Path to the output file.
Returns Promise<void> - Indicates whether the snapshot has been created successfully.
Takes a V8 heap snapshot and saves it to filePath.
contents.setBackgroundThrottling(allowed)
- allowedBoolean
Controls whether or not this WebContents will throttle animations and timers when the page becomes backgrounded. This also affects the Page Visibility API.
contents.getType()
Returns String - the type of the webContent. Can be backgroundPage, window, browserView, remote, webview or offscreen.
Instance Properties
contents.audioMuted
A Boolean property that determines whether this page is muted.
contents.userAgent
A String property that determines the user agent for this web page.
contents.zoomLevel
A Number property that determines the zoom level for this web contents.
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. The formula for this is scale := 1.2 ^ level.
contents.zoomFactor
A Number property that determines the zoom factor for this web contents.
The zoom factor is the zoom percent divided by 100, so 300% = 3.0.
contents.frameRate
An Integer property that sets the frame rate of the web contents to the specified number.
Only values between 1 and 60 are accepted.
Only applicable if offscreen rendering is enabled.
contents.id Readonly
A Integer representing the unique ID of this WebContents. Each ID is unique among all WebContents instances of the entire Electron application.
contents.session Readonly
A Session used by this webContents.
contents.hostWebContents Readonly
A WebContents instance that might own this WebContents.
contents.devToolsWebContents Readonly
A WebContents of DevTools for this WebContents.
Note: Users should never store this object because it may become null
when the DevTools has been closed.
contents.debugger Readonly
A Debugger instance for this webContents.
