Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Body
application/json
Fill a form with multiple values. Critical: If you detect a form on a page, try to use this action at first, and otherwise use the regular fill action.
Example:
from notte_core.actions import FormFillAction
# Dict syntax
session.execute({
"type": "form_fill",
"value": {"email": "user@example.com", "first_name": "John", "last_name": "Doe"}
})
# Pydantic syntax
session.execute(FormFillAction(value={"email": "user@example.com", "first_name": "John", "last_name": "Doe"}))
Response
Successful Response
Used for session.execute calls