querySelectorAll
Passes through certain properties of the browsers' own document.querySelectorAll API
Usage Example:
mutation FindElements {
goto(url: "https://example.com") {
status
}
query: querySelectorAll(selector: "h1") {
innerHTML
}
}
Field Definition:
querySelectorAll(
selector: String!
timeout: Float
visible: Boolean = false
): [QuerySelectorResponse]
Arguments
querySelectorAll.selector ● String! non-null scalar
querySelectorAll.timeout ● Float scalar
querySelectorAll.visible ● Boolean scalar
Type
QuerySelectorResponse object
The response returned after querying the page for a selector