AgentQL Page
AgentQL Page
is a wrapper around Playwright's Page
that provides access to AgentQL's querying API.
The following example creates a Playwright's page, navigates it to a URL, and queries for WebElements using AgentQL:
Methods
getByPrompt
Returns a single web element located by a natural language prompt (as opposed to an AgentQL query).
Usage
Arguments
-
prompt
string
The natural language description of the element to locate.
-
timeout
number
(optional)Timeout value in milliseconds for the connection with backend API service. Defaults to 60 seconds.
-
waitForNetworkIdle
boolean
(optional)Whether to wait for network reaching full idle state before querying the page. If set to
False
, this method will only check for whether page has emittedload
event. Default isTrue
. -
includeHidden
boolean
(optional)Whether to include hidden elements on the page. Defaults to
false
. -
mode
ResponseMode
(optional)The mode of the query. It can be either
'standard'
or'fast'
. Defaults tofast
mode.
Returns
-
Playwright Locator for the found element or
null
if no matching elements were found.
queryElements
Queries the web page for multiple web elements that match the AgentQL query.
Usage
Arguments
-
query
string
An AgentQL query in String format.
-
timeout
number
(optional)Timeout value in milliseconds for the connection with the backend API service. Defaults to 60 seconds.
-
waitForNetworkIdle
boolean
(optional)Whether to wait for network reaching full idle state before querying the page. If set to
False
, this method will only check for whether page has emittedload
event. Default isTrue
. -
includeHidden
boolean
(optional)Whether to include hidden elements on the page. Defaults to
false
. -
mode
ResponseMode
(optional)The mode of the query. It can be either
'standard'
or'fast'
. Defaults tofast
mode.
Returns
-
The AgentQL response object with elements that match the query. Response provides access to requested elements via its fields.
queryData
Queries the web page for data that matches the AgentQL query, such as blocks of text or numbers.
Usage
Arguments
-
query
string
An AgentQL query in String format.
-
timeout
number
(optional)Timeout value in milliseconds for the connection with backend API service. Defaults to 900 seconds.
-
waitForNetworkIdle
boolean
(optional)Whether to wait for network reaching full idle state before querying the page. If set to
False
, this method will only check for whether page has emittedload
event. Default isTrue
. -
includeHidden
boolean
(optional)Whether to include hidden elements on the page. Defaults to
true
. -
mode
ResponseMode
(optional)The mode of the query. It can be either
'standard'
or'fast'
. Defaults tofast
mode.
Returns
-
Data that matches the query.
waitForPageReadyState
Waits for the page to reach the "Page Ready" state, that is page has entered a relatively stable state and most main content is loaded. Might be useful before triggering an AgentQL query or any other interaction for slowly rendering pages.
Usage
Arguments
-
waitForNetworkIdle
boolean
(optional)Whether to wait for network reaching full idle state. Defaults to
true
.
Returns
Types
ResponseMode
The ResponseMode
type specifies the mode of querying for queryElements()
, queryData()
, and getByPrompt()
methods. It expects the following two values:
-
standard
Executes the query in Standard Mode. Use this mode when your queries are complex or extensive data retrieval is necessary.
-
fast
Executes the query more quickly, potentially at the cost of response accuracy. This mode is useful in situations where speed is prioritized, and the query is straightforward.