Package io.webfolder.cdp.command
Interface Page
public interface Page
Actions and events related to the inspected page belong to the page domain.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addCompilationCache
(String url, String data) Seeds compilation cache for given url.addScriptToEvaluateOnLoad
(String scriptSource) Deprecated.Evaluates given script in every frame upon creation (before loading frame's scripts).addScriptToEvaluateOnNewDocument
(String source, String worldName, Boolean includeCommandLineAPI) Evaluates given script in every frame upon creation (before loading frame's scripts).void
Brings page to front (activates tab).byte[]
Capture page screenshot.byte[]
captureScreenshot
(ImageFormat format, Integer quality, Viewport clip, Boolean fromSurface, Boolean captureBeyondViewport) Capture page screenshot.Returns a snapshot of the page as a string.captureSnapshot
(SnapshotType format) Returns a snapshot of the page as a string.void
Clears seeded compilation cache.void
Deprecated.void
Deprecated.void
Deprecated.void
close()
Tries to close page, running its beforeunload hooks, if any.void
crash()
Crashes renderer on the IO thread, generates minidumps.createIsolatedWorld
(String frameId) Creates an isolated world for the given frame.createIsolatedWorld
(String frameId, String worldName, Boolean grantUniveralAccess) Creates an isolated world for the given frame.void
deleteCookie
(String cookieName, String url) Deprecated.void
disable()
Disables page domain notifications.void
enable()
Enables page domain notifications.void
generateTestReport
(String message) Generates a report for testing.void
generateTestReport
(String message, String group) Generates a report for testing.getAppId()
Returns the unique (PWA) app id.Deprecated.Returns present frame tree structure.Returns metrics relating to the layouting of the page, such as viewport bounds/scale.Returns navigation history for the current page.getOriginTrials
(String frameId) Get Origin Trials on given frame.getPermissionsPolicyState
(String frameId) Get Permissions Policy state on given frame.getResourceContent
(String frameId, String url) Returns content of the given resource.Returns present frame / resource tree structure.void
handleJavaScriptDialog
(Boolean accept) Accepts or dismisses a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload).void
handleJavaScriptDialog
(Boolean accept, String promptText) Accepts or dismisses a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload).Navigates current page to the given URL.navigate
(String url, String referrer, TransitionType transitionType, String frameId, ReferrerPolicy referrerPolicy) Navigates current page to the given URL.void
navigateToHistoryEntry
(Integer entryId) Navigates current page to the given history entry.Print page as PDF.printToPDF
(Boolean landscape, Boolean displayHeaderFooter, Boolean printBackground, Double scale, Double paperWidth, Double paperHeight, Double marginTop, Double marginBottom, Double marginLeft, Double marginRight, String pageRanges, String headerTemplate, String footerTemplate, Boolean preferCSSPageSize, TransferMode transferMode) Print page as PDF.void
Requests backend to produce compilation cache for the specified scripts.void
reload()
Reloads given page optionally ignoring the cache.void
Reloads given page optionally ignoring the cache.void
removeScriptToEvaluateOnLoad
(String identifier) Deprecated.void
removeScriptToEvaluateOnNewDocument
(String identifier) Removes given script from the list.void
Resets navigation history for the current page.void
screencastFrameAck
(Integer sessionId) Acknowledges that a screencast frame has been received by the frontend.searchInResource
(String frameId, String url, String query) Searches for given string in resource content.Searches for given string in resource content.void
setAdBlockingEnabled
(Boolean enabled) Enable Chrome's experimental ad filter on all sites.void
setBypassCSP
(Boolean enabled) Enable page Content Security Policy by-passing.void
setDeviceMetricsOverride
(Integer width, Integer height, Double deviceScaleFactor, Boolean mobile) Deprecated.void
setDeviceMetricsOverride
(Integer width, Integer height, Double deviceScaleFactor, Boolean mobile, Double scale, Integer screenWidth, Integer screenHeight, Integer positionX, Integer positionY, Boolean dontSetVisibleSize, ScreenOrientation screenOrientation, Viewport viewport) Deprecated.void
setDeviceOrientationOverride
(Double alpha, Double beta, Double gamma) Deprecated.void
setDocumentContent
(String frameId, String html) Sets given markup as the document's HTML.void
setDownloadBehavior
(DownloadBehavior behavior) Deprecated.void
setDownloadBehavior
(DownloadBehavior behavior, String downloadPath) Deprecated.void
setFontFamilies
(FontFamilies fontFamilies) Set generic font families.void
setFontFamilies
(FontFamilies fontFamilies, List<ScriptFontFamilies> forScripts) Set generic font families.void
setFontSizes
(FontSizes fontSizes) Set default font sizes.void
Deprecated.void
setGeolocationOverride
(Double latitude, Double longitude, Double accuracy) Deprecated.void
setInterceptFileChooserDialog
(Boolean enabled) Intercept file chooser requests and transfer control to protocol clients.void
setLifecycleEventsEnabled
(Boolean enabled) Controls whether page will emit lifecycle events.void
Sets the Secure Payment Confirmation transaction mode.void
setTouchEmulationEnabled
(Boolean enabled) Deprecated.void
setTouchEmulationEnabled
(Boolean enabled, Platform configuration) Deprecated.void
Tries to update the web lifecycle state of the page.void
Starts sending each frame using the screencastFrame event.void
startScreencast
(ImageFormat format, Integer quality, Integer maxWidth, Integer maxHeight, Integer everyNthFrame) Starts sending each frame using the screencastFrame event.void
Force the page stop all navigations and pending resource fetches.void
Stops sending each frame in the screencastFrame.void
Pauses page execution.
-
Method Details
-
addCompilationCache
Seeds compilation cache for given url. Compilation cache does not survive cross-process navigation.- Parameters:
data
- Base64-encoded data (Encoded as a base64 string when passed over JSON)
-
addScriptToEvaluateOnLoad
Deprecated.Deprecated, please use addScriptToEvaluateOnNewDocument instead.- Returns:
- Identifier of the added script.
-
addScriptToEvaluateOnNewDocument
Evaluates given script in every frame upon creation (before loading frame's scripts).- Returns:
- Identifier of the added script.
-
addScriptToEvaluateOnNewDocument
String addScriptToEvaluateOnNewDocument(String source, String worldName, Boolean includeCommandLineAPI) Evaluates given script in every frame upon creation (before loading frame's scripts).- Parameters:
worldName
- If specified, creates an isolated world with the given name and evaluates given script in it. This world name will be used as the ExecutionContextDescription::name when the corresponding event is emitted.includeCommandLineAPI
- Specifies whether command line API should be available to the script, defaults to false.- Returns:
- Identifier of the added script.
-
bringToFront
void bringToFront()Brings page to front (activates tab). -
captureScreenshot
byte[] captureScreenshot()Capture page screenshot.- Returns:
- Base64-encoded image data. (Encoded as a base64 string when passed over JSON)
-
captureScreenshot
byte[] captureScreenshot(ImageFormat format, Integer quality, Viewport clip, Boolean fromSurface, Boolean captureBeyondViewport) Capture page screenshot.- Parameters:
format
- Image compression format (defaults to png).quality
- Compression quality from range [0..100] (jpeg only).clip
- Capture the screenshot of a given region only.fromSurface
- Capture the screenshot from the surface, rather than the view. Defaults to true.captureBeyondViewport
- Capture the screenshot beyond the viewport. Defaults to false.- Returns:
- Base64-encoded image data. (Encoded as a base64 string when passed over JSON)
-
captureSnapshot
String captureSnapshot()Returns a snapshot of the page as a string. For MHTML format, the serialization includes iframes, shadow DOM, external resources, and element-inline styles.- Returns:
- Serialized page data.
-
captureSnapshot
Returns a snapshot of the page as a string. For MHTML format, the serialization includes iframes, shadow DOM, external resources, and element-inline styles.- Parameters:
format
- Format (defaults to mhtml).- Returns:
- Serialized page data.
-
clearCompilationCache
void clearCompilationCache()Clears seeded compilation cache. -
clearDeviceMetricsOverride
Deprecated.Clears the overridden device metrics. -
clearDeviceOrientationOverride
Deprecated.Clears the overridden Device Orientation. -
clearGeolocationOverride
Deprecated.Clears the overridden Geolocation Position and Error. -
close
void close()Tries to close page, running its beforeunload hooks, if any. -
crash
void crash()Crashes renderer on the IO thread, generates minidumps. -
createIsolatedWorld
Creates an isolated world for the given frame.- Parameters:
frameId
- Id of the frame in which the isolated world should be created.- Returns:
- Execution context of the isolated world.
-
createIsolatedWorld
Creates an isolated world for the given frame.- Parameters:
frameId
- Id of the frame in which the isolated world should be created.worldName
- An optional name which is reported in the Execution Context.grantUniveralAccess
- Whether or not universal access should be granted to the isolated world. This is a powerful option, use with caution.- Returns:
- Execution context of the isolated world.
-
deleteCookie
Deprecated.Deletes browser cookie with given name, domain and path.- Parameters:
cookieName
- Name of the cookie to remove.url
- URL to match cooke domain and path.
-
disable
void disable()Disables page domain notifications. -
enable
void enable()Enables page domain notifications. -
generateTestReport
Generates a report for testing.- Parameters:
message
- Message to be displayed in the report.
-
generateTestReport
Generates a report for testing.- Parameters:
message
- Message to be displayed in the report.group
- Specifies the endpoint group to deliver the report to.
-
getAppId
GetAppIdResult getAppId()Returns the unique (PWA) app id. Only returns values if the feature flag 'WebAppEnableManifestId' is enabled- Returns:
- GetAppIdResult
-
getAppManifest
GetAppManifestResult getAppManifest()- Returns:
- GetAppManifestResult
-
getCookies
Deprecated.Returns all browser cookies. Depending on the backend support, will return detailed cookie information in the cookies field.- Returns:
- Array of cookie objects.
-
getFrameTree
FrameTree getFrameTree()Returns present frame tree structure.- Returns:
- Present frame tree structure.
-
getInstallabilityErrors
List<InstallabilityError> getInstallabilityErrors() -
getLayoutMetrics
GetLayoutMetricsResult getLayoutMetrics()Returns metrics relating to the layouting of the page, such as viewport bounds/scale.- Returns:
- GetLayoutMetricsResult
-
getManifestIcons
String getManifestIcons() -
getOriginTrials
Get Origin Trials on given frame. -
getPermissionsPolicyState
Get Permissions Policy state on given frame. -
getResourceContent
Returns content of the given resource.- Parameters:
frameId
- Frame id to get resource for.url
- URL of the resource to get content for.- Returns:
- GetResourceContentResult
-
getResourceTree
FrameResourceTree getResourceTree()Returns present frame / resource tree structure.- Returns:
- Present frame / resource tree structure.
-
handleJavaScriptDialog
Accepts or dismisses a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload).- Parameters:
accept
- Whether to accept or dismiss the dialog.
-
handleJavaScriptDialog
Accepts or dismisses a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload).- Parameters:
accept
- Whether to accept or dismiss the dialog.promptText
- The text to enter into the dialog prompt before accepting. Used only if this is a prompt dialog.
-
printToPDF
PrintToPDFResult printToPDF()Print page as PDF.- Returns:
- PrintToPDFResult
-
printToPDF
PrintToPDFResult printToPDF(Boolean landscape, Boolean displayHeaderFooter, Boolean printBackground, Double scale, Double paperWidth, Double paperHeight, Double marginTop, Double marginBottom, Double marginLeft, Double marginRight, String pageRanges, String headerTemplate, String footerTemplate, Boolean preferCSSPageSize, TransferMode transferMode) Print page as PDF.- Parameters:
landscape
- Paper orientation. Defaults to false.displayHeaderFooter
- Display header and footer. Defaults to false.printBackground
- Print background graphics. Defaults to false.scale
- Scale of the webpage rendering. Defaults to 1.paperWidth
- Paper width in inches. Defaults to 8.5 inches.paperHeight
- Paper height in inches. Defaults to 11 inches.marginTop
- Top margin in inches. Defaults to 1cm (~0.4 inches).marginBottom
- Bottom margin in inches. Defaults to 1cm (~0.4 inches).marginLeft
- Left margin in inches. Defaults to 1cm (~0.4 inches).marginRight
- Right margin in inches. Defaults to 1cm (~0.4 inches).pageRanges
- Paper ranges to print, one based, e.g., '1-5, 8, 11-13'. Pages are printed in the document order, not in the order specified, and no more than once. Defaults to empty string, which implies the entire document is printed. The page numbers are quietly capped to actual page count of the document, and ranges beyond the end of the document are ignored. If this results in no pages to print, an error is reported. It is an error to specify a range with start greater than end.headerTemplate
- HTML template for the print header. Should be valid HTML markup with following classes used to inject printing values into them: - date: formatted print date - title: document title - url: document location - pageNumber: current page number - totalPages: total pages in the document For example, would generate span containing the title.footerTemplate
- HTML template for the print footer. Should use the same format as the headerTemplate.preferCSSPageSize
- Whether or not to prefer page size as defined by css. Defaults to false, in which case the content will be scaled to fit the paper size.transferMode
- return as stream- Returns:
- PrintToPDFResult
-
produceCompilationCache
Requests backend to produce compilation cache for the specified scripts. scripts are appeneded to the list of scripts for which the cache would be produced. The list may be reset during page navigation. When script with a matching URL is encountered, the cache is optionally produced upon backend discretion, based on internal heuristics. See also: Page.compilationCacheProduced. -
reload
void reload()Reloads given page optionally ignoring the cache. -
reload
Reloads given page optionally ignoring the cache.- Parameters:
ignoreCache
- If true, browser cache is ignored (as if the user pressed Shift+refresh).scriptToEvaluateOnLoad
- If set, the script will be injected into all frames of the inspected page after reload. Argument will be ignored if reloading dataURL origin.
-
removeScriptToEvaluateOnLoad
Deprecated.Deprecated, please use removeScriptToEvaluateOnNewDocument instead. -
removeScriptToEvaluateOnNewDocument
Removes given script from the list. -
screencastFrameAck
Acknowledges that a screencast frame has been received by the frontend.- Parameters:
sessionId
- Frame number.
-
searchInResource
Searches for given string in resource content.- Parameters:
frameId
- Frame id for resource to search in.url
- URL of the resource to search in.query
- String to search for.- Returns:
- List of search matches.
-
searchInResource
List<SearchMatch> searchInResource(String frameId, String url, String query, Boolean caseSensitive, Boolean isRegex) Searches for given string in resource content.- Parameters:
frameId
- Frame id for resource to search in.url
- URL of the resource to search in.query
- String to search for.caseSensitive
- If true, search is case sensitive.isRegex
- If true, treats string parameter as regex.- Returns:
- List of search matches.
-
setAdBlockingEnabled
Enable Chrome's experimental ad filter on all sites.- Parameters:
enabled
- Whether to block ads.
-
setBypassCSP
Enable page Content Security Policy by-passing.- Parameters:
enabled
- Whether to bypass page CSP.
-
setDeviceMetricsOverride
@Deprecated void setDeviceMetricsOverride(Integer width, Integer height, Double deviceScaleFactor, Boolean mobile) Deprecated.Overrides the values of device screen dimensions (window.screen.width, window.screen.height, window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media query results).- Parameters:
width
- Overriding width value in pixels (minimum 0, maximum 10000000). 0 disables the override.height
- Overriding height value in pixels (minimum 0, maximum 10000000). 0 disables the override.deviceScaleFactor
- Overriding device scale factor value. 0 disables the override.mobile
- Whether to emulate mobile device. This includes viewport meta tag, overlay scrollbars, text autosizing and more.
-
setDeviceMetricsOverride
@Deprecated void setDeviceMetricsOverride(Integer width, Integer height, Double deviceScaleFactor, Boolean mobile, Double scale, Integer screenWidth, Integer screenHeight, Integer positionX, Integer positionY, Boolean dontSetVisibleSize, ScreenOrientation screenOrientation, Viewport viewport) Deprecated.Overrides the values of device screen dimensions (window.screen.width, window.screen.height, window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media query results).- Parameters:
width
- Overriding width value in pixels (minimum 0, maximum 10000000). 0 disables the override.height
- Overriding height value in pixels (minimum 0, maximum 10000000). 0 disables the override.deviceScaleFactor
- Overriding device scale factor value. 0 disables the override.mobile
- Whether to emulate mobile device. This includes viewport meta tag, overlay scrollbars, text autosizing and more.scale
- Scale to apply to resulting view image.screenWidth
- Overriding screen width value in pixels (minimum 0, maximum 10000000).screenHeight
- Overriding screen height value in pixels (minimum 0, maximum 10000000).positionX
- Overriding view X position on screen in pixels (minimum 0, maximum 10000000).positionY
- Overriding view Y position on screen in pixels (minimum 0, maximum 10000000).dontSetVisibleSize
- Do not set visible view size, rely upon explicit setVisibleSize call.screenOrientation
- Screen orientation override.viewport
- The viewport dimensions and scale. If not set, the override is cleared.
-
setDeviceOrientationOverride
Deprecated.Overrides the Device Orientation.- Parameters:
alpha
- Mock alphabeta
- Mock betagamma
- Mock gamma
-
setDocumentContent
Sets given markup as the document's HTML.- Parameters:
frameId
- Frame id to set HTML for.html
- HTML content to set.
-
setDownloadBehavior
Deprecated.Set the behavior when downloading a file.- Parameters:
behavior
- Whether to allow all or deny all download requests, or use default Chrome behavior if available (otherwise deny).
-
setDownloadBehavior
Deprecated.Set the behavior when downloading a file.- Parameters:
behavior
- Whether to allow all or deny all download requests, or use default Chrome behavior if available (otherwise deny).downloadPath
- The default path to save downloaded files to. This is required if behavior is set to 'allow'
-
setFontFamilies
Set generic font families.- Parameters:
fontFamilies
- Specifies font families to set. If a font family is not specified, it won't be changed.
-
setFontFamilies
Set generic font families.- Parameters:
fontFamilies
- Specifies font families to set. If a font family is not specified, it won't be changed.forScripts
- Specifies font families to set for individual scripts.
-
setFontSizes
Set default font sizes.- Parameters:
fontSizes
- Specifies font sizes to set. If a font size is not specified, it won't be changed.
-
setGeolocationOverride
Deprecated.Overrides the Geolocation Position or Error. Omitting any of the parameters emulates position unavailable. -
setGeolocationOverride
Deprecated.Overrides the Geolocation Position or Error. Omitting any of the parameters emulates position unavailable.- Parameters:
latitude
- Mock latitudelongitude
- Mock longitudeaccuracy
- Mock accuracy
-
setInterceptFileChooserDialog
Intercept file chooser requests and transfer control to protocol clients. When file chooser interception is enabled, native file chooser dialog is not shown. Instead, a protocol event Page.fileChooserOpened is emitted. -
setLifecycleEventsEnabled
Controls whether page will emit lifecycle events.- Parameters:
enabled
- If true, starts emitting lifecycle events.
-
setSPCTransactionMode
Sets the Secure Payment Confirmation transaction mode. https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode -
setTouchEmulationEnabled
Deprecated.Toggles mouse event-based touch event emulation.- Parameters:
enabled
- Whether the touch event emulation should be enabled.
-
setTouchEmulationEnabled
Deprecated.Toggles mouse event-based touch event emulation.- Parameters:
enabled
- Whether the touch event emulation should be enabled.configuration
- Touch/gesture events configuration. Default: current platform.
-
setWebLifecycleState
Tries to update the web lifecycle state of the page. It will transition the page to the given state according to: https://github.com/WICG/web-lifecycle/- Parameters:
state
- Target lifecycle state
-
startScreencast
void startScreencast()Starts sending each frame using the screencastFrame event. -
startScreencast
void startScreencast(ImageFormat format, Integer quality, Integer maxWidth, Integer maxHeight, Integer everyNthFrame) Starts sending each frame using the screencastFrame event.- Parameters:
format
- Image compression format.quality
- Compression quality from range [0..100].maxWidth
- Maximum screenshot width.maxHeight
- Maximum screenshot height.everyNthFrame
- Send every n-th frame.
-
stopLoading
void stopLoading()Force the page stop all navigations and pending resource fetches. -
stopScreencast
void stopScreencast()Stops sending each frame in the screencastFrame. -
waitForDebugger
void waitForDebugger()Pauses page execution. Can be resumed using generic Runtime.runIfWaitingForDebugger.
-