Files
Dorod-Sky/skyvern/forge/prompts/skyvern/opened-dropdown-confirm.j2

16 lines
1.0 KiB
Plaintext
Raw Normal View History

2024-09-10 14:12:38 +08:00
There is a screenshot from a part of a web HTML page. Help me confirm if it is an open dropdown menu.
An open dropdown menu can be defined as:
- At least one option is visible in the screenshot.
2025-01-08 14:27:50 +08:00
- A calendar view could be considered as an open dropdown menu. But DO NOT consider an calendar icon as the dropdown menu.
2025-01-09 16:14:31 +08:00
- If the screenshot contains multiple input fields for selecting quantities, consider as the dropdown menu.
2024-09-10 17:10:47 +08:00
- Do not consider it an open dropdown menu if the only visible option displays a message like "No results" or "No match".
2024-09-24 12:44:06 +08:00
- Do not consider it an open dropdown menu if the only visible element displays a placeholder like "Please select", "-", or "Select...".
2024-09-10 14:12:38 +08:00
2024-08-06 13:30:52 +08:00
MAKE SURE YOU OUTPUT VALID JSON. No text before or after JSON, no trailing commas, no comments (//), no unnecessary quotes, etc.
Reply in JSON format with the following keys:
{
2024-09-09 11:34:09 +08:00
"reasoning": str, // the reason why it's a dropdown menu or not a dropdown menu
2024-08-06 13:30:52 +08:00
"is_opened_dropdown_menu": bool, // true if it's a opened dropdown menu, otherwise false.
}