ElementHandle
- extends: JSHandle
ElementHandle represents an in-page DOM element. ElementHandles can be created with the page.$ method.
ElementHandle prevents DOM element from garbage collection unless the handle is disposed. ElementHandles are auto-disposed when their origin frame gets navigated.
ElementHandle instances can be used as an argument in page.$eval() and page.evaluate() methods.
- elementHandle.$(selector)
- elementHandle.$$(selector)
- elementHandle.$eval(selector, pageFunction[, arg])
- elementHandle.$$eval(selector, pageFunction[, arg])
- elementHandle.boundingBox()
- elementHandle.check([options])
- elementHandle.click([options])
- elementHandle.contentFrame()
- elementHandle.dblclick([options])
- elementHandle.dispatchEvent(type[, eventInit])
- elementHandle.fill(value[, options])
- elementHandle.focus()
- elementHandle.getAttribute(name)
- elementHandle.hover([options])
- elementHandle.innerHTML()
- elementHandle.innerText()
- elementHandle.ownerFrame()
- elementHandle.press(key[, options])
- elementHandle.screenshot([options])
- elementHandle.scrollIntoViewIfNeeded([options])
- elementHandle.selectOption(values[, options])
- elementHandle.selectText([options])
- elementHandle.setInputFiles(files[, options])
- elementHandle.textContent()
- elementHandle.toString()
- elementHandle.type(text[, options])
- elementHandle.uncheck([options])
- jsHandle.asElement()
- jsHandle.dispose()
- jsHandle.evaluate(pageFunction[, arg])
- jsHandle.evaluateHandle(pageFunction[, arg])
- jsHandle.getProperties()
- jsHandle.getProperty(propertyName)
- jsHandle.jsonValue()
elementHandle.$(selector)#
selector<string> A selector to query element for. See working with selectors) for more details.- returns: <Promise<?ElementHandle>>
The method finds an element matching the specified selector in the ElementHandle's subtree. See Working with selectors for more details. If no elements match the selector, the return value resolves to null.
elementHandle.$$(selector)#
selector<string> A selector to query element for. See working with selectors for more details.- returns: <Promise<Array<ElementHandle>>>
The method finds all elements matching the specified selector in the ElementHandles subtree. See Working with selectors for more details. If no elements match the selector, the return value resolves to [].
elementHandle.$eval(selector, pageFunction[, arg])#
selector<string> A selector to query element for. See working with selectors for more details.pageFunction<function(Element)> Function to be evaluated in browser contextarg<EvaluationArgument> Optional argument to pass topageFunction- returns: <Promise<Serializable>> Promise which resolves to the return value of
pageFunction
The method finds an element matching the specified selector in the ElementHandles subtree and passes it as a first argument to pageFunction. See Working with selectors for more details. If no elements match the selector, the method throws an error.
If pageFunction returns a Promise, then frame.$eval would wait for the promise to resolve and return its value.
Examples:
elementHandle.$$eval(selector, pageFunction[, arg])#
selector<string> A selector to query element for. See working with selectors for more details.pageFunction<function(Array<Element>)> Function to be evaluated in browser contextarg<EvaluationArgument> Optional argument to pass topageFunction- returns: <Promise<Serializable>> Promise which resolves to the return value of
pageFunction
The method finds all elements matching the specified selector in the ElementHandle's subtree and passes an array of matched elements as a first argument to pageFunction. See Working with selectors for more details.
If pageFunction returns a Promise, then frame.$$eval would wait for the promise to resolve and return its value.
Examples:
elementHandle.boundingBox()#
This method returns the bounding box of the element (relative to the main frame), or null if the element is not visible.
elementHandle.check([options])#
options<Object>force<boolean> Whether to bypass the actionability checks. Defaults tofalse.noWaitAfter<boolean> Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise> Promise which resolves when the element is successfully checked. Promise gets rejected if the operation fails.
This method waits for actionability checks. Then, if the element is not already checked, this method scrolls the element into view and uses elementHandle.click to click in the center of the element.
elementHandle.click([options])#
options<Object>button<"left"|"right"|"middle"> Defaults toleft.clickCount<number> defaults to 1. See UIEvent.detail.delay<number> Time to wait betweenmousedownandmouseupin milliseconds. Defaults to 0.position<Object> A point to click relative to the top-left corner of element padding box. If not specified, clicks to some visible point of the element.modifiers<Array<"Alt"|"Control"|"Meta"|"Shift">> Modifier keys to press. Ensures that only these modifiers are pressed during the click, and then restores current modifiers back. If not specified, currently pressed modifiers are used.force<boolean> Whether to bypass the actionability checks. Defaults tofalse.noWaitAfter<boolean> Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise> Promise which resolves when the element is successfully clicked. Promise gets rejected if the element is detached from DOM.
This method waits for actionability checks, then scrolls the element into view if needed and uses page.mouse to click in the center of the element.
If the element is detached from DOM, the method throws an error.
elementHandle.contentFrame()#
- returns: <Promise<?Frame>> Resolves to the content frame for element handles referencing iframe nodes, or
nullotherwise
elementHandle.dblclick([options])#
options<Object>button<"left"|"right"|"middle"> Defaults toleft.delay<number> Time to wait betweenmousedownandmouseupin milliseconds. Defaults to 0.position<Object> A point to double click relative to the top-left corner of element padding box. If not specified, double clicks to some visible point of the element.modifiers<Array<"Alt"|"Control"|"Meta"|"Shift">> Modifier keys to press. Ensures that only these modifiers are pressed during the double click, and then restores current modifiers back. If not specified, currently pressed modifiers are used.force<boolean> Whether to bypass the actionability checks. Defaults tofalse.noWaitAfter<boolean> Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise> Promise which resolves when the element is successfully double clicked. Promise gets rejected if the element is detached from DOM.
This method waits for actionability checks, then scrolls the element into view if needed and uses page.mouse to double click in the center of the element.
If the element is detached from DOM, the method throws an error.
Bear in mind that if the first click of the dblclick() triggers a navigation event, there will be an exception.
NOTE
elementHandle.dblclick()dispatches twoclickevents and a singledblclickevent.
elementHandle.dispatchEvent(type[, eventInit])#
type<string> DOM event type:"click","dragstart", etc.eventInit<Object> event-specific initialization properties.- returns: <Promise>
The snippet below dispatches the click event on the element. Regardless of the visibility state of the elment, click is dispatched. This is equivalend to calling element.click().
Under the hood, it creates an instance of an event based on the given type, initializes it with eventInit properties and dispatches it on the element. Events are composed, cancelable and bubble by default.
Since eventInit is event-specific, please refer to the events documentation for the lists of initial properties:
You can also specify
JSHandleas the property value if you want live objects to be passed into the event:
elementHandle.fill(value[, options])#
value<string> Value to set for the<input>,<textarea>or[contenteditable]element.options<Object>noWaitAfter<boolean> Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise>
This method waits for actionability checks, focuses the element, fills it and triggers an input event after filling.
If the element is not an <input>, <textarea> or [contenteditable] element, this method throws an error.
Note that you can pass an empty string to clear the input field.
elementHandle.focus()#
- returns: <Promise>
Calls focus on the element.
elementHandle.getAttribute(name)#
Returns element attribute value.
elementHandle.hover([options])#
options<Object>position<Object> A point to hover relative to the top-left corner of element padding box. If not specified, hovers over some visible point of the element.modifiers<Array<"Alt"|"Control"|"Meta"|"Shift">> Modifier keys to press. Ensures that only these modifiers are pressed during the hover, and then restores current modifiers back. If not specified, currently pressed modifiers are used.force<boolean> Whether to bypass the actionability checks. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise> Promise which resolves when the element is successfully hovered.
This method waits for actionability checks, then scrolls the element into view if needed and uses page.mouse to hover over the center of the element.
If the element is detached from DOM, the method throws an error.
elementHandle.innerHTML()#
elementHandle.innerText()#
elementHandle.ownerFrame()#
elementHandle.press(key[, options])#
key<string> Name of the key to press or a character to generate, such asArrowLeftora.options<Object>delay<number> Time to wait betweenkeydownandkeyupin milliseconds. Defaults to 0.noWaitAfter<boolean> Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise>
Focuses the element, and then uses keyboard.down and keyboard.up.
key can specify the intended keyboardEvent.key value or a single character to generate the text for. A superset of the key values can be found here. Examples of the keys are:
F1 - F12, Digit0- Digit9, KeyA- KeyZ, Backquote, Minus, Equal, Backslash, Backspace, Tab, Delete, Escape, ArrowDown, End, Enter, Home, Insert, PageDown, PageUp, ArrowRight, ArrowUp, etc.
Following modification shortcuts are also suported: Shift, Control, Alt, Meta, ShiftLeft.
Holding down Shift will type the text that corresponds to the key in the upper case.
If key is a single character, it is case-sensitive, so the values a and A will generate different respective texts.
Shortcuts such as key: "Control+o" or key: "Control+Shift+T" are supported as well. When speficied with the modifier, modifier is pressed and being held while the subsequent key is being pressed.
elementHandle.screenshot([options])#
options<Object> Screenshot options.path<string> The file path to save the image to. The screenshot type will be inferred from file extension. Ifpathis a relative path, then it is resolved relative to current working directory. If no path is provided, the image won't be saved to the disk.type<"png"|"jpeg"> Specify screenshot type, defaults topng.quality<number> The quality of the image, between 0-100. Not applicable topngimages.omitBackground<boolean> Hides default white background and allows capturing screenshots with transparency. Not applicable tojpegimages. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise<Buffer>> Promise which resolves to buffer with the captured screenshot.
This method waits for the actionability checks, then scrolls element into view before taking a screenshot. If the element is detached from DOM, the method throws an error.
elementHandle.scrollIntoViewIfNeeded([options])#
options<Object>timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise>
This method waits for actionability checks, then tries to scroll element into view, unless it is completely visible as defined by IntersectionObserver's ratio.
Throws when elementHandle does not point to an element connected to a Document or a ShadowRoot.
elementHandle.selectOption(values[, options])#
values<null|string|ElementHandle|Array<string>|Object|Array<ElementHandle>|Array<Object>> Options to select. If the<select>has themultipleattribute, all matching options are selected, otherwise only the first option matching one of the passed options is selected. String values are equivalent to{value:'string'}. Option is considered matching if all specified properties match.options<Object>noWaitAfter<boolean> Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise<Array<string>>> An array of option values that have been successfully selected.
Triggers a change and input event once all the provided options have been selected.
If element is not a <select> element, the method throws an error.
elementHandle.selectText([options])#
options<Object>timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise>
This method waits for actionability checks, then focuses the element and selects all its text content.
elementHandle.setInputFiles(files[, options])#
files<string|Array<string>|Object|Array<Object>>options<Object>noWaitAfter<boolean> Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise>
This method expects elementHandle to point to an input element.
Sets the value of the file input to these file paths or files. If some of the filePaths are relative paths, then they are resolved relative to the current working directory. For empty array, clears the selected files.
elementHandle.textContent()#
elementHandle.toString()#
- returns: <string>
elementHandle.type(text[, options])#
text<string> A text to type into a focused element.options<Object>delay<number> Time to wait between key presses in milliseconds. Defaults to 0.noWaitAfter<boolean> Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise>
Focuses the element, and then sends a keydown, keypress/input, and keyup event for each character in the text.
To press a special key, like Control or ArrowDown, use elementHandle.press.
An example of typing into a text field and then submitting the form:
elementHandle.uncheck([options])#
options<Object>force<boolean> Whether to bypass the actionability checks. Defaults tofalse.noWaitAfter<boolean> Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to inaccessible pages. Defaults tofalse.timeout<number> Maximum time in milliseconds, defaults to 30 seconds, pass0to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.
- returns: <Promise> Promise which resolves when the element is successfully unchecked. Promise gets rejected if the operation fails.
This method waits for actionability checks. Then, if the element is not already unchecked, this method scrolls the element into view and uses elementHandle.click to click in the center of the element.