querySelectorAll
Passes through certain properties of the browsers' own document.querySelectorAll
API
Example:
mutation QuerySelectorAll {
goto(url: "https://example.com") {
status
}
query: querySelectorAll(selector: "h1") {
innerHTML
}
}
```graphql
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