ElementHandle
- extends: JSHandle
ElementHandle represents an in-page DOM element. ElementHandles can be created with the page.$(selector[, options]) method.
const hrefElement = await page.$('a');await hrefElement.click();
ElementHandle prevents DOM element from garbage collection unless the handle is disposed with jsHandle.dispose(). ElementHandles are auto-disposed when their origin frame gets navigated.
ElementHandle instances can be used as an argument in page.$eval(selector, pageFunction[, arg, options]) and page.evaluate(pageFunction[, arg]) methods.
note
In most cases, you would want to use the Locator object instead. You should only use ElementHandle if you want to retain a handle to a particular DOM Node that you intend to pass into page.evaluate(pageFunction[, arg]) as an argument.
The difference between the Locator and ElementHandle is that the ElementHandle points to a particular element, while Locator captures the logic of how to retrieve an element.
In the example below, handle points to a particular DOM element on page. If that element changes text or is used by React to render an entirely different component, handle is still pointing to that very DOM element. This can lead to unexpected behaviors.
const handle = await page.$('text=Submit');// ...await handle.hover();await handle.click();
With the locator, every time the element
is used, up-to-date DOM element is located in the page using the selector. So in the snippet below, underlying DOM element is going to be located twice.
const locator = page.locator('text=Submit');// ...await locator.hover();await locator.click();
- 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.inputValue([options])
- elementHandle.isChecked()
- elementHandle.isDisabled()
- elementHandle.isEditable()
- elementHandle.isEnabled()
- elementHandle.isHidden()
- elementHandle.isVisible()
- elementHandle.ownerFrame()
- elementHandle.press(key[, options])
- elementHandle.screenshot([options])
- elementHandle.scrollIntoViewIfNeeded([options])
- elementHandle.selectOption(values[, options])
- elementHandle.selectText([options])
- elementHandle.setChecked(checked[, options])
- elementHandle.setInputFiles(files[, options])
- elementHandle.tap([options])
- elementHandle.textContent()
- elementHandle.type(text[, options])
- elementHandle.uncheck([options])
- elementHandle.waitForElementState(state[, options])
- elementHandle.waitForSelector(selector[, 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 for. See working with selectors for more details.#- returns:Promise<null|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, returns null
.
#
elementHandle.$$(selector)selector
<string> A selector to query for. See working with selectors for more details.#- returns:Promise<Array<ElementHandle>>># <
The method finds all elements matching the specified selector in the ElementHandle
s subtree. See Working with selectors for more details. If no elements match the selector, returns empty array.
#
elementHandle.$eval(selector, pageFunction[, arg])selector
<string> A selector to query for. See working with selectors for more details.#pageFunction
<function(Element)> Function to be evaluated in the page context.#arg
<EvaluationArgument> Optional argument to pass topageFunction
.#- returns:Promise<Serializable>># <
Returns the return value of pageFunction
.
The method finds an element matching the specified selector in the ElementHandle
s 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 elementHandle.$eval(selector, pageFunction[, arg]) would wait for the promise to resolve and return its value.
Examples:
const tweetHandle = await page.$('.tweet');expect(await tweetHandle.$eval('.like', node => node.innerText)).toBe('100');expect(await tweetHandle.$eval('.retweets', node => node.innerText)).toBe('10');
#
elementHandle.$$eval(selector, pageFunction[, arg])selector
<string> A selector to query for. See working with selectors for more details.#pageFunction
<function(Array<Element>)> Function to be evaluated in the page context.#arg
<EvaluationArgument> Optional argument to pass topageFunction
.#- returns:Promise<Serializable>># <
Returns 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 elementHandle.$$eval(selector, pageFunction[, arg]) would wait for the promise to resolve and return its value.
Examples:
<div class="feed"> <div class="tweet">Hello!</div> <div class="tweet">Hi!</div></div>
const feedHandle = await page.$('.feed');expect(await feedHandle.$$eval('.tweet', nodes => nodes.map(n => n.innerText))).toEqual(['Hello!', 'Hi!']);
#
elementHandle.boundingBox()This method returns the bounding box of the element, or null
if the element is not visible. The bounding box is calculated relative to the main frame viewport - which is usually the same as the browser window.
Scrolling affects the returned bonding box, similarly to Element.getBoundingClientRect. That means x
and/or y
may be negative.
Elements from child frames return the bounding box relative to the main frame, unlike the Element.getBoundingClientRect.
Assuming the page is static, it is safe to use bounding box coordinates to perform input. For example, the following snippet should click the center of the element.
const box = await elementHandle.boundingBox();await page.mouse.click(box.x + box.width / 2, box.y + box.height / 2);
#
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
.#position
<Object> A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.#timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#trial
<boolean> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it.#
- returns:Promise<void>># <
This method checks the element by performing the following steps:
- Ensure that element is a checkbox or a radio input. If not, this method throws. If the element is already checked, this method returns immediately.
- Wait for actionability checks on the element, unless
force
option is set. - Scroll the element into view if needed.
- Use page.mouse to click in the center of the element.
- Wait for initiated navigations to either succeed or fail, unless
noWaitAfter
option is set. - Ensure that the element is now checked. If not, this method throws.
If the element is detached from the DOM at any moment during the action, this method throws.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
#
elementHandle.click([options])options
<Object>button
<"left"|"right"|"middle"> Defaults toleft
.#clickCount
<number> defaults to 1. See UIEvent.detail.#delay
<number> Time to wait betweenmousedown
andmouseup
in milliseconds. Defaults to 0.#force
<boolean> Whether to bypass the actionability checks. Defaults tofalse
.#modifiers
<Array<"Alt"|"Control"|"Meta"|"Shift">> Modifier keys to press. Ensures that only these modifiers are pressed during the operation, and then restores current modifiers back. If not specified, currently pressed modifiers are used.#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
.#position
<Object> A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.#timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#trial
<boolean> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it.#
- returns:Promise<void>># <
This method clicks the element by performing the following steps:
- Wait for actionability checks on the element, unless
force
option is set. - Scroll the element into view if needed.
- Use page.mouse to click in the center of the element, or the specified
position
. - Wait for initiated navigations to either succeed or fail, unless
noWaitAfter
option is set.
If the element is detached from the DOM at any moment during the action, this method throws.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
#
elementHandle.contentFrame()Returns the content frame for element handles referencing iframe nodes, or null
otherwise
#
elementHandle.dblclick([options])options
<Object>button
<"left"|"right"|"middle"> Defaults toleft
.#delay
<number> Time to wait betweenmousedown
andmouseup
in milliseconds. Defaults to 0.#force
<boolean> Whether to bypass the actionability checks. Defaults tofalse
.#modifiers
<Array<"Alt"|"Control"|"Meta"|"Shift">> Modifier keys to press. Ensures that only these modifiers are pressed during the operation, and then restores current modifiers back. If not specified, currently pressed modifiers are used.#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
.#position
<Object> A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.#timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#trial
<boolean> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it.#
- returns:Promise<void>># <
This method double clicks the element by performing the following steps:
- Wait for actionability checks on the element, unless
force
option is set. - Scroll the element into view if needed.
- Use page.mouse to double click in the center of the element, or the specified
position
. - Wait for initiated navigations to either succeed or fail, unless
noWaitAfter
option is set. Note that if the first click of thedblclick()
triggers a navigation event, this method will throw.
If the element is detached from the DOM at any moment during the action, this method throws.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
note
elementHandle.dblclick()
dispatches two click
events and a single dblclick
event.
#
elementHandle.dispatchEvent(type[, eventInit])type
<string> DOM event type:"click"
,"dragstart"
, etc.#eventInit
<EvaluationArgument> Optional event-specific initialization properties.#- returns:Promise<void>># <
The snippet below dispatches the click
event on the element. Regardless of the visibility state of the element, click
is dispatched. This is equivalent to calling element.click().
await elementHandle.dispatchEvent('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 JSHandle
as the property value if you want live objects to be passed into the event:
// Note you can only create DataTransfer in Chromium and Firefoxconst dataTransfer = await page.evaluateHandle(() => new DataTransfer());await elementHandle.dispatchEvent('dragstart', { dataTransfer });
#
elementHandle.fill(value[, options])value
<string> Value to set for the<input>
,<textarea>
or[contenteditable]
element.#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, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#
- returns:Promise<void>># <
This method waits for actionability checks, focuses the element, fills it and triggers an input
event after filling. Note that you can pass an empty string to clear the input field.
If the target element is not an <input>
, <textarea>
or [contenteditable]
element, this method throws an error. However, if the element is inside the <label>
element that has an associated control, the control will be filled instead.
To send fine-grained keyboard events, use elementHandle.type(text[, options]).
#
elementHandle.focus()Calls focus on the element.
#
elementHandle.getAttribute(name)Returns element attribute value.
#
elementHandle.hover([options])options
<Object>force
<boolean> Whether to bypass the actionability checks. Defaults tofalse
.#modifiers
<Array<"Alt"|"Control"|"Meta"|"Shift">> Modifier keys to press. Ensures that only these modifiers are pressed during the operation, and then restores current modifiers back. If not specified, currently pressed modifiers are used.#position
<Object> A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.#timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#trial
<boolean> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it.#
- returns:Promise<void>># <
This method hovers over the element by performing the following steps:
- Wait for actionability checks on the element, unless
force
option is set. - Scroll the element into view if needed.
- Use page.mouse to hover over the center of the element, or the specified
position
. - Wait for initiated navigations to either succeed or fail, unless
noWaitAfter
option is set.
If the element is detached from the DOM at any moment during the action, this method throws.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
#
elementHandle.innerHTML()Returns the element.innerHTML
.
#
elementHandle.innerText()Returns the element.innerText
.
#
elementHandle.inputValue([options])options
<Object>timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#
- returns:Promise<string>># <
Returns input.value
for <input>
or <textarea>
or <select>
element. Throws for non-input elements.
#
elementHandle.isChecked()Returns whether the element is checked. Throws if the element is not a checkbox or radio input.
#
elementHandle.isDisabled()Returns whether the element is disabled, the opposite of enabled.
#
elementHandle.isEditable()Returns whether the element is editable.
#
elementHandle.isEnabled()Returns whether the element is enabled.
#
elementHandle.isHidden()Returns whether the element is hidden, the opposite of visible.
#
elementHandle.isVisible()Returns whether the element is visible.
#
elementHandle.ownerFrame()Returns the frame containing the given element.
#
elementHandle.press(key[, options])key
<string> Name of the key to press or a character to generate, such asArrowLeft
ora
.#options
<Object>delay
<number> Time to wait betweenkeydown
andkeyup
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, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#
- returns:Promise<void>># <
Focuses the element, and then uses keyboard.down(key) and keyboard.up(key).
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 supported: 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 specified with the modifier, modifier is pressed and being held while the subsequent key is being pressed.
#
elementHandle.screenshot([options])options
<Object>omitBackground
<boolean> Hides default white background and allows capturing screenshots with transparency. Not applicable tojpeg
images. Defaults tofalse
.#path
<string> The file path to save the image to. The screenshot type will be inferred from file extension. Ifpath
is a relative path, then it is resolved relative to the current working directory. If no path is provided, the image won't be saved to the disk.#quality
<number> The quality of the image, between 0-100. Not applicable topng
images.#timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#type
<"png"|"jpeg"> Specify screenshot type, defaults topng
.#
- returns:Promise<Buffer>># <
Returns the 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, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#
- returns:Promise<void>># <
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 themultiple
attribute, 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>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, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#
- returns:Promise<Array<string>>># <
This method waits for actionability checks, waits until all specified options are present in the <select>
element and selects these options.
If the target element is not a <select>
element, this method throws an error. However, if the element is inside the <label>
element that has an associated control, the control will be used instead.
Returns the array of option values that have been successfully selected.
Triggers a change
and input
event once all the provided options have been selected.
// single selection matching the valuehandle.selectOption('blue');
// single selection matching the labelhandle.selectOption({ label: 'Blue' });
// multiple selectionhandle.selectOption(['red', 'green', 'blue']);
#
elementHandle.selectText([options])options
<Object>force
<boolean> Whether to bypass the actionability checks. Defaults tofalse
.#timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#
- returns:Promise<void>># <
This method waits for actionability checks, then focuses the element and selects all its text content.
#
elementHandle.setChecked(checked[, options])checked
<boolean> Whether to check or uncheck the checkbox.#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
.#position
<Object> A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.#timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#trial
<boolean> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it.#
- returns:Promise<void>># <
This method checks or unchecks an element by performing the following steps:
- Ensure that element is a checkbox or a radio input. If not, this method throws.
- If the element already has the right checked state, this method returns immediately.
- Wait for actionability checks on the matched element, unless
force
option is set. If the element is detached during the checks, the whole action is retried. - Scroll the element into view if needed.
- Use page.mouse to click in the center of the element.
- Wait for initiated navigations to either succeed or fail, unless
noWaitAfter
option is set. - Ensure that the element is now checked or unchecked. If not, this method throws.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
#
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, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#
- returns:Promise<void>># <
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 the current working directory. For empty array, clears the selected files.
#
elementHandle.tap([options])options
<Object>force
<boolean> Whether to bypass the actionability checks. Defaults tofalse
.#modifiers
<Array<"Alt"|"Control"|"Meta"|"Shift">> Modifier keys to press. Ensures that only these modifiers are pressed during the operation, and then restores current modifiers back. If not specified, currently pressed modifiers are used.#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
.#position
<Object> A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.#timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#trial
<boolean> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it.#
- returns:Promise<void>># <
This method taps the element by performing the following steps:
- Wait for actionability checks on the element, unless
force
option is set. - Scroll the element into view if needed.
- Use page.touchscreen to tap the center of the element, or the specified
position
. - Wait for initiated navigations to either succeed or fail, unless
noWaitAfter
option is set.
If the element is detached from the DOM at any moment during the action, this method throws.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
note
elementHandle.tap()
requires that the hasTouch
option of the browser context be set to true.
#
elementHandle.textContent()Returns the node.textContent
.
#
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, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#
- returns:Promise<void>># <
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(key[, options]).
await elementHandle.type('Hello'); // Types instantlyawait elementHandle.type('World', {delay: 100}); // Types slower, like a user
An example of typing into a text field and then submitting the form:
const elementHandle = await page.$('input');await elementHandle.type('some text');await elementHandle.press('Enter');
#
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
.#position
<Object> A point to use relative to the top-left corner of element padding box. If not specified, uses some visible point of the element.#timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#trial
<boolean> When set, this method only performs the actionability checks and skips the action. Defaults tofalse
. Useful to wait until the element is ready for the action without performing it.#
- returns:Promise<void>># <
This method checks the element by performing the following steps:
- Ensure that element is a checkbox or a radio input. If not, this method throws. If the element is already unchecked, this method returns immediately.
- Wait for actionability checks on the element, unless
force
option is set. - Scroll the element into view if needed.
- Use page.mouse to click in the center of the element.
- Wait for initiated navigations to either succeed or fail, unless
noWaitAfter
option is set. - Ensure that the element is now unchecked. If not, this method throws.
If the element is detached from the DOM at any moment during the action, this method throws.
When all steps combined have not finished during the specified timeout
, this method throws a TimeoutError. Passing zero timeout disables this.
#
elementHandle.waitForElementState(state[, options])state
<"visible"|"hidden"|"stable"|"enabled"|"disabled"|"editable"> A state to wait for, see below for more details.#options
<Object>timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#
- returns:Promise<void>># <
Returns when the element satisfies the state
.
Depending on the state
parameter, this method waits for one of the actionability checks to pass. This method throws when the element is detached while waiting, unless waiting for the "hidden"
state.
"visible"
Wait until the element is visible."hidden"
Wait until the element is not visible or not attached. Note that waiting for hidden does not throw when the element detaches."stable"
Wait until the element is both visible and stable."enabled"
Wait until the element is enabled."disabled"
Wait until the element is not enabled."editable"
Wait until the element is editable.
If the element does not satisfy the condition for the timeout
milliseconds, this method will throw.
#
elementHandle.waitForSelector(selector[, options])selector
<string> A selector to query for. See working with selectors for more details.#options
<Object>state
<"attached"|"detached"|"visible"|"hidden"> Defaults to'visible'
. Can be either:#'attached'
- wait for element to be present in DOM.'detached'
- wait for element to not be present in DOM.'visible'
- wait for element to have non-empty bounding box and novisibility:hidden
. Note that element without any content or withdisplay:none
has an empty bounding box and is not considered visible.'hidden'
- wait for element to be either detached from DOM, or have an empty bounding box orvisibility:hidden
. This is opposite to the'visible'
option.
strict
<boolean> When true, the call requires selector to resolve to a single element. If given selector resolves to more then one element, the call throws an exception.#timeout
<number> Maximum time in milliseconds, defaults to 30 seconds, pass0
to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout) or page.setDefaultTimeout(timeout) methods.#
- returns:Promise<null|ElementHandle>># <
Returns element specified by selector when it satisfies state
option. Returns null
if waiting for hidden
or detached
.
Wait for the selector
relative to the element handle to satisfy state
option (either appear/disappear from dom, or become visible/hidden). If at the moment of calling the method selector
already satisfies the condition, the method will return immediately. If the selector doesn't satisfy the condition for the timeout
milliseconds, the function will throw.
await page.setContent(`<div><span></span></div>`);const div = await page.$('div');// Waiting for the 'span' selector relative to the div.const span = await div.waitForSelector('span', { state: 'attached' });
note
This method does not work across navigations, use page.waitForSelector(selector[, options]) instead.