42 lines
745 B
Django/Jinja
42 lines
745 B
Django/Jinja
```
|
|
{{ action_history }}
|
|
```
|
|
{% if complete_criterion %}
|
|
Complete criterion:
|
|
```
|
|
{{ complete_criterion }}
|
|
```{% endif %}
|
|
|
|
User goal:
|
|
```
|
|
{{ navigation_goal }}
|
|
```
|
|
{% if error_code_mapping_str %}
|
|
Use the error codes and their descriptions to surface user-defined errors. Do not return any error that's not defined by the user. User defined errors:
|
|
```
|
|
{{ error_code_mapping_str }}
|
|
```{% endif %}
|
|
{% if data_extraction_goal %}
|
|
User Data Extraction Goal:
|
|
```
|
|
{{ data_extraction_goal }}
|
|
```
|
|
{% endif %}
|
|
|
|
User details:
|
|
```
|
|
{{ navigation_payload_str }}
|
|
```
|
|
|
|
Clickable elements from `{{ current_url }}`:
|
|
```
|
|
{{ elements }}
|
|
```
|
|
|
|
The URL of the page you're on right now is `{{ current_url }}`.
|
|
|
|
Current datetime, ISO format:
|
|
```
|
|
{{ local_datetime }}
|
|
```
|