Skip to main content
Version: 1.15

Handles

Playwright can create handles to the page DOM elements or any other objects inside the page. These handles live in the Playwright process, whereas the actual objects live in the browser. There are two types of handles:

  • JSHandle to reference any JavaScript objects in the page
  • ElementHandle to reference DOM elements in the page, it has extra methods that allow performing actions on the elements and asserting their properties.

Since any DOM element in the page is also a JavaScript object, any ElementHandle is a JSHandle as well.

Handles are used to perform operations on those actual objects in the page. You can evaluate on a handle, get handle properties, pass handle as an evaluation parameter, serialize page object into JSON etc. See the JSHandle class API for these and methods.

API reference#

Here is the easiest way to obtain a JSHandle.

const jsHandle = await page.evaluateHandle('window');//  Use jsHandle for evaluations.
const ulElementHandle = await page.waitForSelector('ul');//  Use ulElementHandle for actions and evaluation.

Element Handles#

note

It is recommended to use selector-based actions like page.click(selector[, options]) rather than using the ElementHandle for input actions, unless your use case specifically requires the use of handles.

When ElementHandle is required, it is recommended to fetch it with the page.waitForSelector(selector[, options]) or frame.waitForSelector(selector[, options]) methods. These APIs wait for the element to be attached and visible.

// Get the element handleconst elementHandle = page.waitForSelector('#box');
// Assert bounding box for the elementconst boundingBox = await elementHandle.boundingBox();expect(boundingBox.width).toBe(100);
// Assert attribute for the elementconst classNames = await elementHandle.getAttribute('class');expect(classNames.includes('highlighted')).toBeTruthy();

Handles as parameters#

Handles can be passed into the page.evaluate(pageFunction[, arg]) and similar methods. The following snippet creates a new array in the page, initializes it with data and returns a handle to this array into Playwright. It then uses the handle in subsequent evaluations:

// Create new array in page.const myArrayHandle = await page.evaluateHandle(() => {  window.myArray = [1];  return myArray;});
// Get the length of the array.const length = await page.evaluate(a => a.length, myArrayHandle);
// Add one more element to the array using the handleawait page.evaluate(arg => arg.myArray.push(arg.newElement), {  myArray: myArrayHandle,  newElement: 2});
// Release the object when it's no longer needed.await myArrayHandle.dispose();

Handle Lifecycle#

Handles can be acquired using the page methods such as page.evaluateHandle(pageFunction[, arg]), page.$(selector[, options]) or page.$$(selector) or their frame counterparts frame.evaluateHandle(pageFunction[, arg]), frame.$(selector[, options]) or frame.$$(selector). Once created, handles will retain object from garbage collection unless page navigates or the handle is manually disposed via the jsHandle.dispose() method.

API reference#