Package Exports
- @applitools/dom-snapshot
- @applitools/dom-snapshot/dist/pollResultCjs
- @applitools/dom-snapshot/dist/processPagePollCjs
Readme
dom-snapshot
Script for extracting resources and DOM in CDT format, to serve as the input for rendering a screenshot with the visual grid.
Package Context & Usage Across Applitools SDKs
This package is a core dependency used throughout the Applitools ecosystem:
Consumer Packages
@applitools/eyes-selenium- Selenium WebDriver integration@applitools/eyes-cypress- Cypress testing integration@applitools/eyes-playwright- Playwright testing integration@applitools/core- Shared core functionality across SDKs@applitools/visual-grid-client- Visual Grid rendering service
Usage Patterns
1. Script Injection Pattern (Most Common)
Test frameworks inject DOM capture scripts into browser contexts:
// Used by: eyes-selenium, eyes-playwright, etc.
const { getProcessPage } = require('@applitools/dom-snapshot')
const script = await getProcessPage()
const result = await driver.executeScript(`return (${script}).apply(null, arguments);`, args)2. Direct Function Execution Pattern
Advanced frameworks that pass function objects directly:
// Used by: core package for specific driver capabilities
const processPagePoll = require('@applitools/dom-snapshot/dist/processPagePollCjs')
await driver.executePoll({ main: processPagePoll }, args)3. Client-Side Bundling Pattern
Non-driver based integrations bundle the functions:
// Used by: eyes-cypress (runs in browser context)
import processPage from '@applitools/dom-snapshot/src/browser/processPage'Design Architecture
Multi-Format Build Strategy
The package provides the same functionality in multiple formats to support different execution contexts:
src/browser/processPage.js
├── dist/processPage.js (IIFE - Browser injection)
└── dist/processPagePollCjs.js (CommonJS - Node.js execution)Format Rationale
IIFE (Immediately Invoked Function Expression)
- Purpose: Browser script injection
- Consumers: All driver-based SDKs (Selenium, Playwright, etc.)
- Why: Self-contained, executes immediately when injected
- Example:
dist/processPage.js
CommonJS
- Purpose: Direct Node.js function execution
- Consumers: Core package, advanced driver capabilities
- Why: Can be passed as function object to specialized driver methods
- Example:
dist/processPagePollCjs.js
ES Modules
- Purpose: Client-side bundling
- Consumers: Cypress SDK, other in-browser integrations
- Why: Tree-shakable, modern bundling support
- Example:
src/browser/processPage.js(raw source)
Simplified Index Strategy
Instead of complex bundling with selective obfuscation, we use direct imports:
// Main package exports - simple script getters
const { getProcessPage, getProcessPagePoll, getPollResult } = require('@applitools/dom-snapshot')
// Direct imports for specific formats
const processPagePoll = require('@applitools/dom-snapshot/dist/processPagePollCjs')
const pollResult = require('@applitools/dom-snapshot/dist/pollResultCjs')This approach:
- ✅ Eliminates bundling complexity - No circular dependencies or path resolution issues
- ✅ Clear separation of concerns - Each format serves its specific purpose
- ✅ Better tree-shaking - Consumers import only what they need
- ✅ Simpler maintenance - No selective obfuscation configuration needed
TypeScript Migration Design
Gradual Migration Strategy:
- Coexist
.jsand.tsfiles during transition - Rollup handles both formats with TypeScript plugin
- Build system remains consistent across all outputs
- Consumer packages unaffected during migration
Installing
npm install @applitools/dom-snapshotUsage
From Node.js
This package exports functions that can be used when working with puppeteer, CDP or Selenium in Node.js:
getProcessPagegetProcessPagePollgetPollResult
The following methods are deprecated:
getProcessPageAndSerializegetProcessPageAndSerializePoll
These async functions return a string with a function that can be sent to the browser for evaluation. It doesn't immediately invoke the function, so the sender should wrap it as an IIFE. For example:
const {getProcessPage} = require('@applitools/dom-snapshot');
const processPage = await getProcessPage();
const returnValue = await page.evaluate(`(${processPage})()`); // puppeteerFrom the browser
By using the non bundled version of the scripts:
src/browser/processPagesrc/browser/processPageAndSerialize(deprecated)
These functions can then be bundled together with other client-side code so they are consumed regardless of a browser driver (this is how the Eyes.Cypress SDK uses it).
From non-JavaScript code
This package's dist folder contains scripts that can be sent to the browser regradless of driver and language. An agent that wishes to extract information from a webpage can read the contents of dist/processPage and send that to the browser as an async script. There's still the need to wrap it in a way that invokes it.
For example in Java with Selenium WebDriver:
String response = driver.executeAsyncScript("const callback = arguments[arguments.length - 1];(" + processPage + ")().then(JSON.stringify).then(callback, function(err) {callback(err.stack || err.toString())})";Note for Selenium WebDriver users: The return value must not include objects with the property nodeType. Browser drivers interpret those as HTML nodes, and thus corrupt the result. A possible remedy to this is to JSON.stringify the result before sending it back to the calling process. That's what we're doing in the example above.
The processPage script
Arguments
One single argument with the following properties:
processPage({
doc = document,
showLogs,
useSessionCache,
dontFetchResources,
fetchTimeout,
skipResources,
compressResources,
serializeResources,
})doc- the document for which to take a snapshot. Default: the current document.showLogs- toggle verbose logging in the consoleuseSessionCache- cache resources in the browser'ssessionCache. Optimization for cases whereprocessPageis run on the same browser tab more than once.dontFetchResources- dont fetch resources. Only returnresourceUrlsand notblobs.fetchTimeout- the time it takes to fail on a hanging fetch request for getting a resource. Default: 10000 (10 seconds)skipResources- an array of absolute URL's of resources which shouldn't be fetched byprocessPage.compressResources- a boolean indicating whether to use thedeflatealgorithm on blob data in order to return a smaller response. The caller should theninflatethe blobs to get the value.serializeResources- a boolean indicating whether to return blob data as base64 strings. This is useful in most cases since theprocessPagefunction is generally run from outside the browser, so its response should be serializable.
Return value
This script receives a document, and returns an object with the following:
url- the URL of the document.cdt- a flat array representing the document's DOM in CDT format.resourceUrls- an array of strings with URL's of resources that appear in the page's DOM or are referenced from a CSS resource but are cross-origin and therefore could not be fetched from the browser.blobs- an array of objects with the following structure:{url, type, value}. These are resources that the browser was able to fetch. Thetypeproperty is theContent-Typeresponse header. Thevalueproperty contains an ArrayBuffer with the content of the resource.frames: an array with objects which recursively have the same structure as theprocessPagereturn value:{url, cdt, resourceUrls, blobs, frames}.srcAttr- for frames, this is the original src attribute on the frame (in use by Selenium IDE Eyes extension)crossFrames- an array of objects with the following structure:{selector, index}. Theselectorfield has a value of css selector (strings) that point to cross origin frames. Theindexis an index (number) of frame node in acdtarray, this could be useful to override src attribute once dom snapshot is taken. The caller can then callprocessPagein the context of those frames in order to build a complete DOM snapshot which also contains cross origin iframes.selector- a css selector (string) for the frame (only for iframes). This is helpful to construct the full frame chain that leads to cross origin iframes on the caller side.
The script scans the DOM for resource references, fetches them, and then also scans the body of css resources for more references, and so on recursively.
processPagePoll
This function calls processPage and returns immediately. Then pollResult should be called (or any of the ...Poll script variations, for backwards compatibility) to get the polling result.
Arguments
This function accepts the same arguments as processPage, with one additional parameter:
chunkByteLength- this will cause additional polling after the snapshot is ready, and will transfer the result in chunks, with the chunk size specified. Default: undefined.
For example, to pass a maximum chunk size of 256MB:
procesPagePoll({chunkByteLength: 1024 * 1024 * 256})Return value
The polling result is a stringified JSON object, which is of the following shape:
{
status: string,
error: string,
value: object
}Status could be one of:
- "SUCCESS" - there's a
valuefield with the return value - "ERROR" - there's an
errorfield with the result - "WIP" - internal status, handled by
pollResultto continue polling until "SUCCESS" or "ERROR" are received. - "SUCCESS_CHUNKED" - internal status, handled by
pollResultto continue polling until the entire value is received (used withchunkByteLength).
pollResult
returns the poll result - an object with the same shape as processPagePoll.
Testing
- yarn test
- cd ../core && yarn test:it -b -g snapshot