{ "version": "1.0", "total_tasks": 943, "categories": { "form_filling": { "count": 160, "subcategories": { "authentication": 30, "registration": 50, "contact_form": 30, "survey": 20, "job_application": 30 } }, "data_extraction": { "count": 184, "subcategories": { "e-commerce": 80, "social_media": 24, "news": 30, "tables": 30, "real_estate": 20 } }, "navigation": { "count": 145, "subcategories": { "menu_navigation": 45, "search_filter": 50, "pagination": 30, "tabs": 20 } }, "workflow": { "count": 206, "subcategories": { "e-commerce": 50, "email": 42, "crm": 42, "social_media": 30, "cms": 42 } }, "advanced": { "count": 148, "subcategories": { "file_handling": 48, "drag_drop": 40, "infinite_scroll": 30, "modal_handling": 30 } }, "error_handling": { "count": 100, "subcategories": { "retry": 40, "fallback": 30, "validation": 30 } } }, "tasks": [ { "id": "task_0001", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to gmail.com", "description": "Navigate to gmail.com and log in with username and password", "url_pattern": "https://gmail.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for gmail.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://gmail.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to gmail.com", "Authenticate on gmail.com", "Log into my gmail.com account", "Access gmail.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "gmail.com" ] }, { "id": "task_0002", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to gmail.com with 2FA", "description": "Log in to gmail.com and enter two-factor authentication code", "url_pattern": "https://gmail.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for gmail.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://gmail.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to gmail.com with two-factor authentication", "Login to gmail.com and verify with 2FA", "Authenticate on gmail.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "gmail.com" ] }, { "id": "task_0003", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to facebook.com", "description": "Navigate to facebook.com and log in with username and password", "url_pattern": "https://facebook.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for facebook.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://facebook.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to facebook.com", "Authenticate on facebook.com", "Log into my facebook.com account", "Access facebook.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "facebook.com" ] }, { "id": "task_0004", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to facebook.com with 2FA", "description": "Log in to facebook.com and enter two-factor authentication code", "url_pattern": "https://facebook.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for facebook.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://facebook.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to facebook.com with two-factor authentication", "Login to facebook.com and verify with 2FA", "Authenticate on facebook.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "facebook.com" ] }, { "id": "task_0005", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to linkedin.com", "description": "Navigate to linkedin.com and log in with username and password", "url_pattern": "https://linkedin.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for linkedin.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://linkedin.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to linkedin.com", "Authenticate on linkedin.com", "Log into my linkedin.com account", "Access linkedin.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "linkedin.com" ] }, { "id": "task_0006", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to linkedin.com with 2FA", "description": "Log in to linkedin.com and enter two-factor authentication code", "url_pattern": "https://linkedin.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for linkedin.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://linkedin.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to linkedin.com with two-factor authentication", "Login to linkedin.com and verify with 2FA", "Authenticate on linkedin.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "linkedin.com" ] }, { "id": "task_0007", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to twitter.com", "description": "Navigate to twitter.com and log in with username and password", "url_pattern": "https://twitter.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for twitter.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://twitter.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to twitter.com", "Authenticate on twitter.com", "Log into my twitter.com account", "Access twitter.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "twitter.com" ] }, { "id": "task_0008", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to twitter.com with 2FA", "description": "Log in to twitter.com and enter two-factor authentication code", "url_pattern": "https://twitter.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for twitter.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://twitter.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to twitter.com with two-factor authentication", "Login to twitter.com and verify with 2FA", "Authenticate on twitter.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "twitter.com" ] }, { "id": "task_0009", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to instagram.com", "description": "Navigate to instagram.com and log in with username and password", "url_pattern": "https://instagram.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for instagram.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://instagram.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to instagram.com", "Authenticate on instagram.com", "Log into my instagram.com account", "Access instagram.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "instagram.com" ] }, { "id": "task_0010", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to instagram.com with 2FA", "description": "Log in to instagram.com and enter two-factor authentication code", "url_pattern": "https://instagram.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for instagram.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://instagram.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to instagram.com with two-factor authentication", "Login to instagram.com and verify with 2FA", "Authenticate on instagram.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "instagram.com" ] }, { "id": "task_0011", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to github.com", "description": "Navigate to github.com and log in with username and password", "url_pattern": "https://github.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for github.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://github.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to github.com", "Authenticate on github.com", "Log into my github.com account", "Access github.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "github.com" ] }, { "id": "task_0012", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to github.com with 2FA", "description": "Log in to github.com and enter two-factor authentication code", "url_pattern": "https://github.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for github.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://github.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to github.com with two-factor authentication", "Login to github.com and verify with 2FA", "Authenticate on github.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "github.com" ] }, { "id": "task_0013", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to stackoverflow.com", "description": "Navigate to stackoverflow.com and log in with username and password", "url_pattern": "https://stackoverflow.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for stackoverflow.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://stackoverflow.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to stackoverflow.com", "Authenticate on stackoverflow.com", "Log into my stackoverflow.com account", "Access stackoverflow.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "stackoverflow.com" ] }, { "id": "task_0014", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to stackoverflow.com with 2FA", "description": "Log in to stackoverflow.com and enter two-factor authentication code", "url_pattern": "https://stackoverflow.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for stackoverflow.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://stackoverflow.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to stackoverflow.com with two-factor authentication", "Login to stackoverflow.com and verify with 2FA", "Authenticate on stackoverflow.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "stackoverflow.com" ] }, { "id": "task_0015", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to reddit.com", "description": "Navigate to reddit.com and log in with username and password", "url_pattern": "https://reddit.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for reddit.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://reddit.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to reddit.com", "Authenticate on reddit.com", "Log into my reddit.com account", "Access reddit.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "reddit.com" ] }, { "id": "task_0016", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to reddit.com with 2FA", "description": "Log in to reddit.com and enter two-factor authentication code", "url_pattern": "https://reddit.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for reddit.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://reddit.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to reddit.com with two-factor authentication", "Login to reddit.com and verify with 2FA", "Authenticate on reddit.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "reddit.com" ] }, { "id": "task_0017", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to amazon.com", "description": "Navigate to amazon.com and log in with username and password", "url_pattern": "https://amazon.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for amazon.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to amazon.com", "Authenticate on amazon.com", "Log into my amazon.com account", "Access amazon.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "amazon.com" ] }, { "id": "task_0018", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to amazon.com with 2FA", "description": "Log in to amazon.com and enter two-factor authentication code", "url_pattern": "https://amazon.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for amazon.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to amazon.com with two-factor authentication", "Login to amazon.com and verify with 2FA", "Authenticate on amazon.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "amazon.com" ] }, { "id": "task_0019", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to netflix.com", "description": "Navigate to netflix.com and log in with username and password", "url_pattern": "https://netflix.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for netflix.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://netflix.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to netflix.com", "Authenticate on netflix.com", "Log into my netflix.com account", "Access netflix.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "netflix.com" ] }, { "id": "task_0020", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to netflix.com with 2FA", "description": "Log in to netflix.com and enter two-factor authentication code", "url_pattern": "https://netflix.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for netflix.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://netflix.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to netflix.com with two-factor authentication", "Login to netflix.com and verify with 2FA", "Authenticate on netflix.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "netflix.com" ] }, { "id": "task_0021", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to spotify.com", "description": "Navigate to spotify.com and log in with username and password", "url_pattern": "https://spotify.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for spotify.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://spotify.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to spotify.com", "Authenticate on spotify.com", "Log into my spotify.com account", "Access spotify.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "spotify.com" ] }, { "id": "task_0022", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to spotify.com with 2FA", "description": "Log in to spotify.com and enter two-factor authentication code", "url_pattern": "https://spotify.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for spotify.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://spotify.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to spotify.com with two-factor authentication", "Login to spotify.com and verify with 2FA", "Authenticate on spotify.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "spotify.com" ] }, { "id": "task_0023", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to dropbox.com", "description": "Navigate to dropbox.com and log in with username and password", "url_pattern": "https://dropbox.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for dropbox.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dropbox.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to dropbox.com", "Authenticate on dropbox.com", "Log into my dropbox.com account", "Access dropbox.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "dropbox.com" ] }, { "id": "task_0024", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to dropbox.com with 2FA", "description": "Log in to dropbox.com and enter two-factor authentication code", "url_pattern": "https://dropbox.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for dropbox.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dropbox.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to dropbox.com with two-factor authentication", "Login to dropbox.com and verify with 2FA", "Authenticate on dropbox.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "dropbox.com" ] }, { "id": "task_0025", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to slack.com", "description": "Navigate to slack.com and log in with username and password", "url_pattern": "https://slack.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for slack.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://slack.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to slack.com", "Authenticate on slack.com", "Log into my slack.com account", "Access slack.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "slack.com" ] }, { "id": "task_0026", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to slack.com with 2FA", "description": "Log in to slack.com and enter two-factor authentication code", "url_pattern": "https://slack.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for slack.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://slack.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to slack.com with two-factor authentication", "Login to slack.com and verify with 2FA", "Authenticate on slack.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "slack.com" ] }, { "id": "task_0027", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to zoom.us", "description": "Navigate to zoom.us and log in with username and password", "url_pattern": "https://zoom.us/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for zoom.us", "ground_truth_dsl": [ { "action": "navigate", "url": "https://zoom.us/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to zoom.us", "Authenticate on zoom.us", "Log into my zoom.us account", "Access zoom.us with my credentials" ], "keywords": [ "login", "signin", "authenticate", "zoom.us" ] }, { "id": "task_0028", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to zoom.us with 2FA", "description": "Log in to zoom.us and enter two-factor authentication code", "url_pattern": "https://zoom.us/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for zoom.us", "ground_truth_dsl": [ { "action": "navigate", "url": "https://zoom.us/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to zoom.us with two-factor authentication", "Login to zoom.us and verify with 2FA", "Authenticate on zoom.us using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "zoom.us" ] }, { "id": "task_0029", "category": "form_filling", "subcategory": "authentication", "difficulty": "simple", "title": "Login to shopify.com", "description": "Navigate to shopify.com and log in with username and password", "url_pattern": "https://shopify.com/login", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard login flow for shopify.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shopify.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": ".dashboard" } ], "variations": [ "Sign in to shopify.com", "Authenticate on shopify.com", "Log into my shopify.com account", "Access shopify.com with my credentials" ], "keywords": [ "login", "signin", "authenticate", "shopify.com" ] }, { "id": "task_0030", "category": "form_filling", "subcategory": "authentication", "difficulty": "medium", "title": "Login to shopify.com with 2FA", "description": "Log in to shopify.com and enter two-factor authentication code", "url_pattern": "https://shopify.com/login", "expected_actions": [ "navigate", "fill_form", "click", "wait_for_load", "fill_form" ], "expected_operation_count": 7, "context": "Two-factor authentication flow for shopify.com", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shopify.com/login" }, { "action": "fill_form", "fields": { "#username": "user@example.com", "#password": "password123" } }, { "action": "click", "selector": "button[type='submit']" }, { "action": "wait_for_load", "selector": "#2fa-code" }, { "action": "wait_for_human", "prompt": "Enter 2FA code" }, { "action": "fill_form", "fields": { "#2fa-code": "{{human_input}}" } }, { "action": "click", "selector": "#verify-button" } ], "variations": [ "Sign in to shopify.com with two-factor authentication", "Login to shopify.com and verify with 2FA", "Authenticate on shopify.com using 2FA code" ], "keywords": [ "login", "2fa", "two-factor", "authentication", "shopify.com" ] }, { "id": "task_0031", "category": "form_filling", "subcategory": "registration", "difficulty": "simple", "title": "Basic registration for email platform", "description": "Complete basic registration form for a email service", "url_pattern": "https://example-email.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 5, "context": "Basic registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-email.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for email service", "Create account on email platform", "Register for email with basic info" ], "keywords": [ "registration", "signup", "create account", "email", "basic" ] }, { "id": "task_0032", "category": "form_filling", "subcategory": "registration", "difficulty": "medium", "title": "With profile registration for email platform", "description": "Complete with profile registration form for a email service", "url_pattern": "https://example-email.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 10, "context": "With profile registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-email.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for email service", "Create account on email platform", "Register for email with with profile info" ], "keywords": [ "registration", "signup", "create account", "email", "with profile" ] }, { "id": "task_0033", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Multi-step registration for email platform", "description": "Complete multi-step registration form for a email service", "url_pattern": "https://example-email.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 15, "context": "Multi-step registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-email.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for email service", "Create account on email platform", "Register for email with multi-step info" ], "keywords": [ "registration", "signup", "create account", "email", "multi-step" ] }, { "id": "task_0034", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "With payment registration for email platform", "description": "Complete with payment registration form for a email service", "url_pattern": "https://example-email.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 20, "context": "With payment registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-email.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for email service", "Create account on email platform", "Register for email with with payment info" ], "keywords": [ "registration", "signup", "create account", "email", "with payment" ] }, { "id": "task_0035", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Enterprise registration for email platform", "description": "Complete enterprise registration form for a email service", "url_pattern": "https://example-email.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 25, "context": "Enterprise registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-email.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for email service", "Create account on email platform", "Register for email with enterprise info" ], "keywords": [ "registration", "signup", "create account", "email", "enterprise" ] }, { "id": "task_0036", "category": "form_filling", "subcategory": "registration", "difficulty": "simple", "title": "Basic registration for social media platform", "description": "Complete basic registration form for a social media service", "url_pattern": "https://example-social media.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 5, "context": "Basic registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-social media.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for social media service", "Create account on social media platform", "Register for social media with basic info" ], "keywords": [ "registration", "signup", "create account", "social media", "basic" ] }, { "id": "task_0037", "category": "form_filling", "subcategory": "registration", "difficulty": "medium", "title": "With profile registration for social media platform", "description": "Complete with profile registration form for a social media service", "url_pattern": "https://example-social media.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 10, "context": "With profile registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-social media.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for social media service", "Create account on social media platform", "Register for social media with with profile info" ], "keywords": [ "registration", "signup", "create account", "social media", "with profile" ] }, { "id": "task_0038", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Multi-step registration for social media platform", "description": "Complete multi-step registration form for a social media service", "url_pattern": "https://example-social media.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 15, "context": "Multi-step registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-social media.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for social media service", "Create account on social media platform", "Register for social media with multi-step info" ], "keywords": [ "registration", "signup", "create account", "social media", "multi-step" ] }, { "id": "task_0039", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "With payment registration for social media platform", "description": "Complete with payment registration form for a social media service", "url_pattern": "https://example-social media.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 20, "context": "With payment registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-social media.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for social media service", "Create account on social media platform", "Register for social media with with payment info" ], "keywords": [ "registration", "signup", "create account", "social media", "with payment" ] }, { "id": "task_0040", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Enterprise registration for social media platform", "description": "Complete enterprise registration form for a social media service", "url_pattern": "https://example-social media.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 25, "context": "Enterprise registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-social media.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for social media service", "Create account on social media platform", "Register for social media with enterprise info" ], "keywords": [ "registration", "signup", "create account", "social media", "enterprise" ] }, { "id": "task_0041", "category": "form_filling", "subcategory": "registration", "difficulty": "simple", "title": "Basic registration for e-commerce platform", "description": "Complete basic registration form for a e-commerce service", "url_pattern": "https://example-e-commerce.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 5, "context": "Basic registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-e-commerce.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for e-commerce service", "Create account on e-commerce platform", "Register for e-commerce with basic info" ], "keywords": [ "registration", "signup", "create account", "e-commerce", "basic" ] }, { "id": "task_0042", "category": "form_filling", "subcategory": "registration", "difficulty": "medium", "title": "With profile registration for e-commerce platform", "description": "Complete with profile registration form for a e-commerce service", "url_pattern": "https://example-e-commerce.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 10, "context": "With profile registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-e-commerce.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for e-commerce service", "Create account on e-commerce platform", "Register for e-commerce with with profile info" ], "keywords": [ "registration", "signup", "create account", "e-commerce", "with profile" ] }, { "id": "task_0043", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Multi-step registration for e-commerce platform", "description": "Complete multi-step registration form for a e-commerce service", "url_pattern": "https://example-e-commerce.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 15, "context": "Multi-step registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-e-commerce.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for e-commerce service", "Create account on e-commerce platform", "Register for e-commerce with multi-step info" ], "keywords": [ "registration", "signup", "create account", "e-commerce", "multi-step" ] }, { "id": "task_0044", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "With payment registration for e-commerce platform", "description": "Complete with payment registration form for a e-commerce service", "url_pattern": "https://example-e-commerce.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 20, "context": "With payment registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-e-commerce.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for e-commerce service", "Create account on e-commerce platform", "Register for e-commerce with with payment info" ], "keywords": [ "registration", "signup", "create account", "e-commerce", "with payment" ] }, { "id": "task_0045", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Enterprise registration for e-commerce platform", "description": "Complete enterprise registration form for a e-commerce service", "url_pattern": "https://example-e-commerce.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 25, "context": "Enterprise registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-e-commerce.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for e-commerce service", "Create account on e-commerce platform", "Register for e-commerce with enterprise info" ], "keywords": [ "registration", "signup", "create account", "e-commerce", "enterprise" ] }, { "id": "task_0046", "category": "form_filling", "subcategory": "registration", "difficulty": "simple", "title": "Basic registration for SaaS platform", "description": "Complete basic registration form for a SaaS service", "url_pattern": "https://example-SaaS.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 5, "context": "Basic registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-SaaS.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for SaaS service", "Create account on SaaS platform", "Register for SaaS with basic info" ], "keywords": [ "registration", "signup", "create account", "SaaS", "basic" ] }, { "id": "task_0047", "category": "form_filling", "subcategory": "registration", "difficulty": "medium", "title": "With profile registration for SaaS platform", "description": "Complete with profile registration form for a SaaS service", "url_pattern": "https://example-SaaS.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 10, "context": "With profile registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-SaaS.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for SaaS service", "Create account on SaaS platform", "Register for SaaS with with profile info" ], "keywords": [ "registration", "signup", "create account", "SaaS", "with profile" ] }, { "id": "task_0048", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Multi-step registration for SaaS platform", "description": "Complete multi-step registration form for a SaaS service", "url_pattern": "https://example-SaaS.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 15, "context": "Multi-step registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-SaaS.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for SaaS service", "Create account on SaaS platform", "Register for SaaS with multi-step info" ], "keywords": [ "registration", "signup", "create account", "SaaS", "multi-step" ] }, { "id": "task_0049", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "With payment registration for SaaS platform", "description": "Complete with payment registration form for a SaaS service", "url_pattern": "https://example-SaaS.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 20, "context": "With payment registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-SaaS.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for SaaS service", "Create account on SaaS platform", "Register for SaaS with with payment info" ], "keywords": [ "registration", "signup", "create account", "SaaS", "with payment" ] }, { "id": "task_0050", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Enterprise registration for SaaS platform", "description": "Complete enterprise registration form for a SaaS service", "url_pattern": "https://example-SaaS.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 25, "context": "Enterprise registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-SaaS.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for SaaS service", "Create account on SaaS platform", "Register for SaaS with enterprise info" ], "keywords": [ "registration", "signup", "create account", "SaaS", "enterprise" ] }, { "id": "task_0051", "category": "form_filling", "subcategory": "registration", "difficulty": "simple", "title": "Basic registration for banking platform", "description": "Complete basic registration form for a banking service", "url_pattern": "https://example-banking.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 5, "context": "Basic registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-banking.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for banking service", "Create account on banking platform", "Register for banking with basic info" ], "keywords": [ "registration", "signup", "create account", "banking", "basic" ] }, { "id": "task_0052", "category": "form_filling", "subcategory": "registration", "difficulty": "medium", "title": "With profile registration for banking platform", "description": "Complete with profile registration form for a banking service", "url_pattern": "https://example-banking.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 10, "context": "With profile registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-banking.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for banking service", "Create account on banking platform", "Register for banking with with profile info" ], "keywords": [ "registration", "signup", "create account", "banking", "with profile" ] }, { "id": "task_0053", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Multi-step registration for banking platform", "description": "Complete multi-step registration form for a banking service", "url_pattern": "https://example-banking.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 15, "context": "Multi-step registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-banking.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for banking service", "Create account on banking platform", "Register for banking with multi-step info" ], "keywords": [ "registration", "signup", "create account", "banking", "multi-step" ] }, { "id": "task_0054", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "With payment registration for banking platform", "description": "Complete with payment registration form for a banking service", "url_pattern": "https://example-banking.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 20, "context": "With payment registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-banking.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for banking service", "Create account on banking platform", "Register for banking with with payment info" ], "keywords": [ "registration", "signup", "create account", "banking", "with payment" ] }, { "id": "task_0055", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Enterprise registration for banking platform", "description": "Complete enterprise registration form for a banking service", "url_pattern": "https://example-banking.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 25, "context": "Enterprise registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-banking.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for banking service", "Create account on banking platform", "Register for banking with enterprise info" ], "keywords": [ "registration", "signup", "create account", "banking", "enterprise" ] }, { "id": "task_0056", "category": "form_filling", "subcategory": "registration", "difficulty": "simple", "title": "Basic registration for healthcare platform", "description": "Complete basic registration form for a healthcare service", "url_pattern": "https://example-healthcare.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 5, "context": "Basic registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-healthcare.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for healthcare service", "Create account on healthcare platform", "Register for healthcare with basic info" ], "keywords": [ "registration", "signup", "create account", "healthcare", "basic" ] }, { "id": "task_0057", "category": "form_filling", "subcategory": "registration", "difficulty": "medium", "title": "With profile registration for healthcare platform", "description": "Complete with profile registration form for a healthcare service", "url_pattern": "https://example-healthcare.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 10, "context": "With profile registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-healthcare.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for healthcare service", "Create account on healthcare platform", "Register for healthcare with with profile info" ], "keywords": [ "registration", "signup", "create account", "healthcare", "with profile" ] }, { "id": "task_0058", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Multi-step registration for healthcare platform", "description": "Complete multi-step registration form for a healthcare service", "url_pattern": "https://example-healthcare.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 15, "context": "Multi-step registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-healthcare.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for healthcare service", "Create account on healthcare platform", "Register for healthcare with multi-step info" ], "keywords": [ "registration", "signup", "create account", "healthcare", "multi-step" ] }, { "id": "task_0059", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "With payment registration for healthcare platform", "description": "Complete with payment registration form for a healthcare service", "url_pattern": "https://example-healthcare.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 20, "context": "With payment registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-healthcare.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for healthcare service", "Create account on healthcare platform", "Register for healthcare with with payment info" ], "keywords": [ "registration", "signup", "create account", "healthcare", "with payment" ] }, { "id": "task_0060", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Enterprise registration for healthcare platform", "description": "Complete enterprise registration form for a healthcare service", "url_pattern": "https://example-healthcare.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 25, "context": "Enterprise registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-healthcare.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for healthcare service", "Create account on healthcare platform", "Register for healthcare with enterprise info" ], "keywords": [ "registration", "signup", "create account", "healthcare", "enterprise" ] }, { "id": "task_0061", "category": "form_filling", "subcategory": "registration", "difficulty": "simple", "title": "Basic registration for education platform", "description": "Complete basic registration form for a education service", "url_pattern": "https://example-education.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 5, "context": "Basic registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-education.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for education service", "Create account on education platform", "Register for education with basic info" ], "keywords": [ "registration", "signup", "create account", "education", "basic" ] }, { "id": "task_0062", "category": "form_filling", "subcategory": "registration", "difficulty": "medium", "title": "With profile registration for education platform", "description": "Complete with profile registration form for a education service", "url_pattern": "https://example-education.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 10, "context": "With profile registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-education.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for education service", "Create account on education platform", "Register for education with with profile info" ], "keywords": [ "registration", "signup", "create account", "education", "with profile" ] }, { "id": "task_0063", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Multi-step registration for education platform", "description": "Complete multi-step registration form for a education service", "url_pattern": "https://example-education.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 15, "context": "Multi-step registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-education.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for education service", "Create account on education platform", "Register for education with multi-step info" ], "keywords": [ "registration", "signup", "create account", "education", "multi-step" ] }, { "id": "task_0064", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "With payment registration for education platform", "description": "Complete with payment registration form for a education service", "url_pattern": "https://example-education.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 20, "context": "With payment registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-education.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for education service", "Create account on education platform", "Register for education with with payment info" ], "keywords": [ "registration", "signup", "create account", "education", "with payment" ] }, { "id": "task_0065", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Enterprise registration for education platform", "description": "Complete enterprise registration form for a education service", "url_pattern": "https://example-education.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 25, "context": "Enterprise registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-education.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for education service", "Create account on education platform", "Register for education with enterprise info" ], "keywords": [ "registration", "signup", "create account", "education", "enterprise" ] }, { "id": "task_0066", "category": "form_filling", "subcategory": "registration", "difficulty": "simple", "title": "Basic registration for gaming platform", "description": "Complete basic registration form for a gaming service", "url_pattern": "https://example-gaming.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 5, "context": "Basic registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-gaming.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for gaming service", "Create account on gaming platform", "Register for gaming with basic info" ], "keywords": [ "registration", "signup", "create account", "gaming", "basic" ] }, { "id": "task_0067", "category": "form_filling", "subcategory": "registration", "difficulty": "medium", "title": "With profile registration for gaming platform", "description": "Complete with profile registration form for a gaming service", "url_pattern": "https://example-gaming.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 10, "context": "With profile registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-gaming.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for gaming service", "Create account on gaming platform", "Register for gaming with with profile info" ], "keywords": [ "registration", "signup", "create account", "gaming", "with profile" ] }, { "id": "task_0068", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Multi-step registration for gaming platform", "description": "Complete multi-step registration form for a gaming service", "url_pattern": "https://example-gaming.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 15, "context": "Multi-step registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-gaming.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for gaming service", "Create account on gaming platform", "Register for gaming with multi-step info" ], "keywords": [ "registration", "signup", "create account", "gaming", "multi-step" ] }, { "id": "task_0069", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "With payment registration for gaming platform", "description": "Complete with payment registration form for a gaming service", "url_pattern": "https://example-gaming.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 20, "context": "With payment registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-gaming.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for gaming service", "Create account on gaming platform", "Register for gaming with with payment info" ], "keywords": [ "registration", "signup", "create account", "gaming", "with payment" ] }, { "id": "task_0070", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Enterprise registration for gaming platform", "description": "Complete enterprise registration form for a gaming service", "url_pattern": "https://example-gaming.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 25, "context": "Enterprise registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-gaming.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for gaming service", "Create account on gaming platform", "Register for gaming with enterprise info" ], "keywords": [ "registration", "signup", "create account", "gaming", "enterprise" ] }, { "id": "task_0071", "category": "form_filling", "subcategory": "registration", "difficulty": "simple", "title": "Basic registration for streaming platform", "description": "Complete basic registration form for a streaming service", "url_pattern": "https://example-streaming.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 5, "context": "Basic registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-streaming.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for streaming service", "Create account on streaming platform", "Register for streaming with basic info" ], "keywords": [ "registration", "signup", "create account", "streaming", "basic" ] }, { "id": "task_0072", "category": "form_filling", "subcategory": "registration", "difficulty": "medium", "title": "With profile registration for streaming platform", "description": "Complete with profile registration form for a streaming service", "url_pattern": "https://example-streaming.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 10, "context": "With profile registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-streaming.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for streaming service", "Create account on streaming platform", "Register for streaming with with profile info" ], "keywords": [ "registration", "signup", "create account", "streaming", "with profile" ] }, { "id": "task_0073", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Multi-step registration for streaming platform", "description": "Complete multi-step registration form for a streaming service", "url_pattern": "https://example-streaming.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 15, "context": "Multi-step registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-streaming.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for streaming service", "Create account on streaming platform", "Register for streaming with multi-step info" ], "keywords": [ "registration", "signup", "create account", "streaming", "multi-step" ] }, { "id": "task_0074", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "With payment registration for streaming platform", "description": "Complete with payment registration form for a streaming service", "url_pattern": "https://example-streaming.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 20, "context": "With payment registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-streaming.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for streaming service", "Create account on streaming platform", "Register for streaming with with payment info" ], "keywords": [ "registration", "signup", "create account", "streaming", "with payment" ] }, { "id": "task_0075", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Enterprise registration for streaming platform", "description": "Complete enterprise registration form for a streaming service", "url_pattern": "https://example-streaming.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 25, "context": "Enterprise registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-streaming.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for streaming service", "Create account on streaming platform", "Register for streaming with enterprise info" ], "keywords": [ "registration", "signup", "create account", "streaming", "enterprise" ] }, { "id": "task_0076", "category": "form_filling", "subcategory": "registration", "difficulty": "simple", "title": "Basic registration for freelancing platform", "description": "Complete basic registration form for a freelancing service", "url_pattern": "https://example-freelancing.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 5, "context": "Basic registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-freelancing.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for freelancing service", "Create account on freelancing platform", "Register for freelancing with basic info" ], "keywords": [ "registration", "signup", "create account", "freelancing", "basic" ] }, { "id": "task_0077", "category": "form_filling", "subcategory": "registration", "difficulty": "medium", "title": "With profile registration for freelancing platform", "description": "Complete with profile registration form for a freelancing service", "url_pattern": "https://example-freelancing.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 10, "context": "With profile registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-freelancing.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for freelancing service", "Create account on freelancing platform", "Register for freelancing with with profile info" ], "keywords": [ "registration", "signup", "create account", "freelancing", "with profile" ] }, { "id": "task_0078", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Multi-step registration for freelancing platform", "description": "Complete multi-step registration form for a freelancing service", "url_pattern": "https://example-freelancing.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 15, "context": "Multi-step registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-freelancing.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for freelancing service", "Create account on freelancing platform", "Register for freelancing with multi-step info" ], "keywords": [ "registration", "signup", "create account", "freelancing", "multi-step" ] }, { "id": "task_0079", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "With payment registration for freelancing platform", "description": "Complete with payment registration form for a freelancing service", "url_pattern": "https://example-freelancing.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 20, "context": "With payment registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-freelancing.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for freelancing service", "Create account on freelancing platform", "Register for freelancing with with payment info" ], "keywords": [ "registration", "signup", "create account", "freelancing", "with payment" ] }, { "id": "task_0080", "category": "form_filling", "subcategory": "registration", "difficulty": "complex", "title": "Enterprise registration for freelancing platform", "description": "Complete enterprise registration form for a freelancing service", "url_pattern": "https://example-freelancing.com/signup", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "wait_for_load" ], "expected_operation_count": 25, "context": "Enterprise registration requiring user details", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example-freelancing.com/signup" }, { "action": "fill_form", "fields": { "#email": "user@example.com", "#password": "SecurePass123!", "#confirm-password": "SecurePass123!" } }, { "action": "click", "selector": "button[type='submit']" } ], "variations": [ "Sign up for freelancing service", "Create account on freelancing platform", "Register for freelancing with enterprise info" ], "keywords": [ "registration", "signup", "create account", "freelancing", "enterprise" ] }, { "id": "task_0081", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit media inquiry form", "description": "Fill out and submit a media inquiry form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for media inquiry", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'm a journalist requesting information" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out media inquiry form", "Submit contact form for media inquiry", "Send media inquiry message" ], "keywords": [ "contact", "form", "submit", "media inquiry" ] }, { "id": "task_0082", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit partnership inquiry form", "description": "Fill out and submit a partnership inquiry form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for partnership inquiry", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'm interested in partnering" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out partnership inquiry form", "Submit contact form for partnership inquiry", "Send partnership inquiry message" ], "keywords": [ "contact", "form", "submit", "partnership inquiry" ] }, { "id": "task_0083", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit feature request form", "description": "Fill out and submit a feature request form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for feature request", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'd like to suggest a new feature" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out feature request form", "Submit contact form for feature request", "Send feature request message" ], "keywords": [ "contact", "form", "submit", "feature request" ] }, { "id": "task_0084", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit bug report form", "description": "Fill out and submit a bug report form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for bug report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I found a bug in the application" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out bug report form", "Submit contact form for bug report", "Send bug report message" ], "keywords": [ "contact", "form", "submit", "bug report" ] }, { "id": "task_0085", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit contact sales form", "description": "Fill out and submit a contact sales form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for contact sales", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I want to learn more about your product" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out contact sales form", "Submit contact form for contact sales", "Send contact sales message" ], "keywords": [ "contact", "form", "submit", "contact sales" ] }, { "id": "task_0086", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit contact sales form", "description": "Fill out and submit a contact sales form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for contact sales", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I want to learn more about your product" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out contact sales form", "Submit contact form for contact sales", "Send contact sales message" ], "keywords": [ "contact", "form", "submit", "contact sales" ] }, { "id": "task_0087", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit contact sales form", "description": "Fill out and submit a contact sales form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for contact sales", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I want to learn more about your product" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out contact sales form", "Submit contact form for contact sales", "Send contact sales message" ], "keywords": [ "contact", "form", "submit", "contact sales" ] }, { "id": "task_0088", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit partnership inquiry form", "description": "Fill out and submit a partnership inquiry form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for partnership inquiry", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'm interested in partnering" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out partnership inquiry form", "Submit contact form for partnership inquiry", "Send partnership inquiry message" ], "keywords": [ "contact", "form", "submit", "partnership inquiry" ] }, { "id": "task_0089", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit partnership inquiry form", "description": "Fill out and submit a partnership inquiry form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for partnership inquiry", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'm interested in partnering" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out partnership inquiry form", "Submit contact form for partnership inquiry", "Send partnership inquiry message" ], "keywords": [ "contact", "form", "submit", "partnership inquiry" ] }, { "id": "task_0090", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit support request form", "description": "Fill out and submit a support request form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for support request", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I need help with my account" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out support request form", "Submit contact form for support request", "Send support request message" ], "keywords": [ "contact", "form", "submit", "support request" ] }, { "id": "task_0091", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit contact sales form", "description": "Fill out and submit a contact sales form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for contact sales", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I want to learn more about your product" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out contact sales form", "Submit contact form for contact sales", "Send contact sales message" ], "keywords": [ "contact", "form", "submit", "contact sales" ] }, { "id": "task_0092", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit bug report form", "description": "Fill out and submit a bug report form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for bug report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I found a bug in the application" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out bug report form", "Submit contact form for bug report", "Send bug report message" ], "keywords": [ "contact", "form", "submit", "bug report" ] }, { "id": "task_0093", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit contact sales form", "description": "Fill out and submit a contact sales form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for contact sales", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I want to learn more about your product" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out contact sales form", "Submit contact form for contact sales", "Send contact sales message" ], "keywords": [ "contact", "form", "submit", "contact sales" ] }, { "id": "task_0094", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit contact sales form", "description": "Fill out and submit a contact sales form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for contact sales", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I want to learn more about your product" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out contact sales form", "Submit contact form for contact sales", "Send contact sales message" ], "keywords": [ "contact", "form", "submit", "contact sales" ] }, { "id": "task_0095", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit support request form", "description": "Fill out and submit a support request form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for support request", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I need help with my account" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out support request form", "Submit contact form for support request", "Send support request message" ], "keywords": [ "contact", "form", "submit", "support request" ] }, { "id": "task_0096", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit feature request form", "description": "Fill out and submit a feature request form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for feature request", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'd like to suggest a new feature" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out feature request form", "Submit contact form for feature request", "Send feature request message" ], "keywords": [ "contact", "form", "submit", "feature request" ] }, { "id": "task_0097", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit support request form", "description": "Fill out and submit a support request form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for support request", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I need help with my account" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out support request form", "Submit contact form for support request", "Send support request message" ], "keywords": [ "contact", "form", "submit", "support request" ] }, { "id": "task_0098", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit partnership inquiry form", "description": "Fill out and submit a partnership inquiry form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for partnership inquiry", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'm interested in partnering" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out partnership inquiry form", "Submit contact form for partnership inquiry", "Send partnership inquiry message" ], "keywords": [ "contact", "form", "submit", "partnership inquiry" ] }, { "id": "task_0099", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit partnership inquiry form", "description": "Fill out and submit a partnership inquiry form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for partnership inquiry", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'm interested in partnering" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out partnership inquiry form", "Submit contact form for partnership inquiry", "Send partnership inquiry message" ], "keywords": [ "contact", "form", "submit", "partnership inquiry" ] }, { "id": "task_0100", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit bug report form", "description": "Fill out and submit a bug report form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for bug report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I found a bug in the application" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out bug report form", "Submit contact form for bug report", "Send bug report message" ], "keywords": [ "contact", "form", "submit", "bug report" ] }, { "id": "task_0101", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit partnership inquiry form", "description": "Fill out and submit a partnership inquiry form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for partnership inquiry", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'm interested in partnering" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out partnership inquiry form", "Submit contact form for partnership inquiry", "Send partnership inquiry message" ], "keywords": [ "contact", "form", "submit", "partnership inquiry" ] }, { "id": "task_0102", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit contact sales form", "description": "Fill out and submit a contact sales form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for contact sales", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I want to learn more about your product" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out contact sales form", "Submit contact form for contact sales", "Send contact sales message" ], "keywords": [ "contact", "form", "submit", "contact sales" ] }, { "id": "task_0103", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit bug report form", "description": "Fill out and submit a bug report form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for bug report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I found a bug in the application" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out bug report form", "Submit contact form for bug report", "Send bug report message" ], "keywords": [ "contact", "form", "submit", "bug report" ] }, { "id": "task_0104", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit support request form", "description": "Fill out and submit a support request form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for support request", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I need help with my account" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out support request form", "Submit contact form for support request", "Send support request message" ], "keywords": [ "contact", "form", "submit", "support request" ] }, { "id": "task_0105", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit support request form", "description": "Fill out and submit a support request form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for support request", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I need help with my account" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out support request form", "Submit contact form for support request", "Send support request message" ], "keywords": [ "contact", "form", "submit", "support request" ] }, { "id": "task_0106", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit support request form", "description": "Fill out and submit a support request form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for support request", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I need help with my account" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out support request form", "Submit contact form for support request", "Send support request message" ], "keywords": [ "contact", "form", "submit", "support request" ] }, { "id": "task_0107", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit partnership inquiry form", "description": "Fill out and submit a partnership inquiry form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for partnership inquiry", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'm interested in partnering" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out partnership inquiry form", "Submit contact form for partnership inquiry", "Send partnership inquiry message" ], "keywords": [ "contact", "form", "submit", "partnership inquiry" ] }, { "id": "task_0108", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit partnership inquiry form", "description": "Fill out and submit a partnership inquiry form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for partnership inquiry", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I'm interested in partnering" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out partnership inquiry form", "Submit contact form for partnership inquiry", "Send partnership inquiry message" ], "keywords": [ "contact", "form", "submit", "partnership inquiry" ] }, { "id": "task_0109", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit contact sales form", "description": "Fill out and submit a contact sales form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for contact sales", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I want to learn more about your product" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out contact sales form", "Submit contact form for contact sales", "Send contact sales message" ], "keywords": [ "contact", "form", "submit", "contact sales" ] }, { "id": "task_0110", "category": "form_filling", "subcategory": "contact_form", "difficulty": "simple", "title": "Submit support request form", "description": "Fill out and submit a support request form with name, email, and message", "url_pattern": "https://example.com/contact", "expected_actions": [ "navigate", "fill_form", "click" ], "expected_operation_count": 4, "context": "Standard contact form submission for support request", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/contact" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com", "#message": "I need help with my account" } }, { "action": "click", "selector": "#submit-button" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Fill out support request form", "Submit contact form for support request", "Send support request message" ], "keywords": [ "contact", "form", "submit", "support request" ] }, { "id": "task_0111", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete market research survey", "description": "Fill out a market research survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out market research survey", "Complete questionnaire for market research", "Respond to market research form" ], "keywords": [ "survey", "feedback", "questionnaire", "market research" ] }, { "id": "task_0112", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete product feedback survey", "description": "Fill out a product feedback survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out product feedback survey", "Complete questionnaire for product feedback", "Respond to product feedback form" ], "keywords": [ "survey", "feedback", "questionnaire", "product feedback" ] }, { "id": "task_0113", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete customer satisfaction survey", "description": "Fill out a customer satisfaction survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out customer satisfaction survey", "Complete questionnaire for customer satisfaction", "Respond to customer satisfaction form" ], "keywords": [ "survey", "feedback", "questionnaire", "customer satisfaction" ] }, { "id": "task_0114", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete product feedback survey", "description": "Fill out a product feedback survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out product feedback survey", "Complete questionnaire for product feedback", "Respond to product feedback form" ], "keywords": [ "survey", "feedback", "questionnaire", "product feedback" ] }, { "id": "task_0115", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete product feedback survey", "description": "Fill out a product feedback survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out product feedback survey", "Complete questionnaire for product feedback", "Respond to product feedback form" ], "keywords": [ "survey", "feedback", "questionnaire", "product feedback" ] }, { "id": "task_0116", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete product feedback survey", "description": "Fill out a product feedback survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out product feedback survey", "Complete questionnaire for product feedback", "Respond to product feedback form" ], "keywords": [ "survey", "feedback", "questionnaire", "product feedback" ] }, { "id": "task_0117", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete product feedback survey", "description": "Fill out a product feedback survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out product feedback survey", "Complete questionnaire for product feedback", "Respond to product feedback form" ], "keywords": [ "survey", "feedback", "questionnaire", "product feedback" ] }, { "id": "task_0118", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete employee engagement survey", "description": "Fill out a employee engagement survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out employee engagement survey", "Complete questionnaire for employee engagement", "Respond to employee engagement form" ], "keywords": [ "survey", "feedback", "questionnaire", "employee engagement" ] }, { "id": "task_0119", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete employee engagement survey", "description": "Fill out a employee engagement survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out employee engagement survey", "Complete questionnaire for employee engagement", "Respond to employee engagement form" ], "keywords": [ "survey", "feedback", "questionnaire", "employee engagement" ] }, { "id": "task_0120", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete customer satisfaction survey", "description": "Fill out a customer satisfaction survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out customer satisfaction survey", "Complete questionnaire for customer satisfaction", "Respond to customer satisfaction form" ], "keywords": [ "survey", "feedback", "questionnaire", "customer satisfaction" ] }, { "id": "task_0121", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete employee engagement survey", "description": "Fill out a employee engagement survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out employee engagement survey", "Complete questionnaire for employee engagement", "Respond to employee engagement form" ], "keywords": [ "survey", "feedback", "questionnaire", "employee engagement" ] }, { "id": "task_0122", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete customer satisfaction survey", "description": "Fill out a customer satisfaction survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out customer satisfaction survey", "Complete questionnaire for customer satisfaction", "Respond to customer satisfaction form" ], "keywords": [ "survey", "feedback", "questionnaire", "customer satisfaction" ] }, { "id": "task_0123", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete product feedback survey", "description": "Fill out a product feedback survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out product feedback survey", "Complete questionnaire for product feedback", "Respond to product feedback form" ], "keywords": [ "survey", "feedback", "questionnaire", "product feedback" ] }, { "id": "task_0124", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete employee engagement survey", "description": "Fill out a employee engagement survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out employee engagement survey", "Complete questionnaire for employee engagement", "Respond to employee engagement form" ], "keywords": [ "survey", "feedback", "questionnaire", "employee engagement" ] }, { "id": "task_0125", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete employee engagement survey", "description": "Fill out a employee engagement survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out employee engagement survey", "Complete questionnaire for employee engagement", "Respond to employee engagement form" ], "keywords": [ "survey", "feedback", "questionnaire", "employee engagement" ] }, { "id": "task_0126", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete market research survey", "description": "Fill out a market research survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out market research survey", "Complete questionnaire for market research", "Respond to market research form" ], "keywords": [ "survey", "feedback", "questionnaire", "market research" ] }, { "id": "task_0127", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete product feedback survey", "description": "Fill out a product feedback survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out product feedback survey", "Complete questionnaire for product feedback", "Respond to product feedback form" ], "keywords": [ "survey", "feedback", "questionnaire", "product feedback" ] }, { "id": "task_0128", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete product feedback survey", "description": "Fill out a product feedback survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out product feedback survey", "Complete questionnaire for product feedback", "Respond to product feedback form" ], "keywords": [ "survey", "feedback", "questionnaire", "product feedback" ] }, { "id": "task_0129", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete employee engagement survey", "description": "Fill out a employee engagement survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out employee engagement survey", "Complete questionnaire for employee engagement", "Respond to employee engagement form" ], "keywords": [ "survey", "feedback", "questionnaire", "employee engagement" ] }, { "id": "task_0130", "category": "form_filling", "subcategory": "survey", "difficulty": "medium", "title": "Complete employee engagement survey", "description": "Fill out a employee engagement survey with multiple choice and text responses", "url_pattern": "https://survey.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "Survey with 5-10 questions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://survey.example.com" }, { "action": "click", "selector": "input[value='5']" }, { "action": "select_option", "selector": "#question2", "value": "Satisfied" }, { "action": "fill_form", "fields": { "#comments": "Great product!" } }, { "action": "click", "selector": "#submit" } ], "variations": [ "Fill out employee engagement survey", "Complete questionnaire for employee engagement", "Respond to employee engagement form" ], "keywords": [ "survey", "feedback", "questionnaire", "employee engagement" ] }, { "id": "task_0131", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Data Scientist position", "description": "Complete job application for Data Scientist role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Data Scientist", "Apply to Data Scientist role", "Fill out job application for Data Scientist position" ], "keywords": [ "job", "application", "apply", "career", "data scientist" ] }, { "id": "task_0132", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Product Manager position", "description": "Complete job application for Product Manager role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Product Manager", "Apply to Product Manager role", "Fill out job application for Product Manager position" ], "keywords": [ "job", "application", "apply", "career", "product manager" ] }, { "id": "task_0133", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Software Engineer position", "description": "Complete job application for Software Engineer role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Software Engineer", "Apply to Software Engineer role", "Fill out job application for Software Engineer position" ], "keywords": [ "job", "application", "apply", "career", "software engineer" ] }, { "id": "task_0134", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Product Manager position", "description": "Complete job application for Product Manager role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Product Manager", "Apply to Product Manager role", "Fill out job application for Product Manager position" ], "keywords": [ "job", "application", "apply", "career", "product manager" ] }, { "id": "task_0135", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for DevOps Engineer position", "description": "Complete job application for DevOps Engineer role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for DevOps Engineer", "Apply to DevOps Engineer role", "Fill out job application for DevOps Engineer position" ], "keywords": [ "job", "application", "apply", "career", "devops engineer" ] }, { "id": "task_0136", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Customer Support position", "description": "Complete job application for Customer Support role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Customer Support", "Apply to Customer Support role", "Fill out job application for Customer Support position" ], "keywords": [ "job", "application", "apply", "career", "customer support" ] }, { "id": "task_0137", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Designer position", "description": "Complete job application for Designer role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Designer", "Apply to Designer role", "Fill out job application for Designer position" ], "keywords": [ "job", "application", "apply", "career", "designer" ] }, { "id": "task_0138", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Software Engineer position", "description": "Complete job application for Software Engineer role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Software Engineer", "Apply to Software Engineer role", "Fill out job application for Software Engineer position" ], "keywords": [ "job", "application", "apply", "career", "software engineer" ] }, { "id": "task_0139", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Product Manager position", "description": "Complete job application for Product Manager role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Product Manager", "Apply to Product Manager role", "Fill out job application for Product Manager position" ], "keywords": [ "job", "application", "apply", "career", "product manager" ] }, { "id": "task_0140", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Customer Support position", "description": "Complete job application for Customer Support role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Customer Support", "Apply to Customer Support role", "Fill out job application for Customer Support position" ], "keywords": [ "job", "application", "apply", "career", "customer support" ] }, { "id": "task_0141", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Software Engineer position", "description": "Complete job application for Software Engineer role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Software Engineer", "Apply to Software Engineer role", "Fill out job application for Software Engineer position" ], "keywords": [ "job", "application", "apply", "career", "software engineer" ] }, { "id": "task_0142", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Sales Representative position", "description": "Complete job application for Sales Representative role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Sales Representative", "Apply to Sales Representative role", "Fill out job application for Sales Representative position" ], "keywords": [ "job", "application", "apply", "career", "sales representative" ] }, { "id": "task_0143", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Designer position", "description": "Complete job application for Designer role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Designer", "Apply to Designer role", "Fill out job application for Designer position" ], "keywords": [ "job", "application", "apply", "career", "designer" ] }, { "id": "task_0144", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Customer Support position", "description": "Complete job application for Customer Support role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Customer Support", "Apply to Customer Support role", "Fill out job application for Customer Support position" ], "keywords": [ "job", "application", "apply", "career", "customer support" ] }, { "id": "task_0145", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Customer Support position", "description": "Complete job application for Customer Support role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Customer Support", "Apply to Customer Support role", "Fill out job application for Customer Support position" ], "keywords": [ "job", "application", "apply", "career", "customer support" ] }, { "id": "task_0146", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Customer Support position", "description": "Complete job application for Customer Support role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Customer Support", "Apply to Customer Support role", "Fill out job application for Customer Support position" ], "keywords": [ "job", "application", "apply", "career", "customer support" ] }, { "id": "task_0147", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Product Manager position", "description": "Complete job application for Product Manager role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Product Manager", "Apply to Product Manager role", "Fill out job application for Product Manager position" ], "keywords": [ "job", "application", "apply", "career", "product manager" ] }, { "id": "task_0148", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Customer Support position", "description": "Complete job application for Customer Support role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Customer Support", "Apply to Customer Support role", "Fill out job application for Customer Support position" ], "keywords": [ "job", "application", "apply", "career", "customer support" ] }, { "id": "task_0149", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Product Manager position", "description": "Complete job application for Product Manager role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Product Manager", "Apply to Product Manager role", "Fill out job application for Product Manager position" ], "keywords": [ "job", "application", "apply", "career", "product manager" ] }, { "id": "task_0150", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Designer position", "description": "Complete job application for Designer role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Designer", "Apply to Designer role", "Fill out job application for Designer position" ], "keywords": [ "job", "application", "apply", "career", "designer" ] }, { "id": "task_0151", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Marketing Manager position", "description": "Complete job application for Marketing Manager role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Marketing Manager", "Apply to Marketing Manager role", "Fill out job application for Marketing Manager position" ], "keywords": [ "job", "application", "apply", "career", "marketing manager" ] }, { "id": "task_0152", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Marketing Manager position", "description": "Complete job application for Marketing Manager role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Marketing Manager", "Apply to Marketing Manager role", "Fill out job application for Marketing Manager position" ], "keywords": [ "job", "application", "apply", "career", "marketing manager" ] }, { "id": "task_0153", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Customer Support position", "description": "Complete job application for Customer Support role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Customer Support", "Apply to Customer Support role", "Fill out job application for Customer Support position" ], "keywords": [ "job", "application", "apply", "career", "customer support" ] }, { "id": "task_0154", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Sales Representative position", "description": "Complete job application for Sales Representative role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Sales Representative", "Apply to Sales Representative role", "Fill out job application for Sales Representative position" ], "keywords": [ "job", "application", "apply", "career", "sales representative" ] }, { "id": "task_0155", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Data Scientist position", "description": "Complete job application for Data Scientist role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Data Scientist", "Apply to Data Scientist role", "Fill out job application for Data Scientist position" ], "keywords": [ "job", "application", "apply", "career", "data scientist" ] }, { "id": "task_0156", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Sales Representative position", "description": "Complete job application for Sales Representative role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Sales Representative", "Apply to Sales Representative role", "Fill out job application for Sales Representative position" ], "keywords": [ "job", "application", "apply", "career", "sales representative" ] }, { "id": "task_0157", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Marketing Manager position", "description": "Complete job application for Marketing Manager role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Marketing Manager", "Apply to Marketing Manager role", "Fill out job application for Marketing Manager position" ], "keywords": [ "job", "application", "apply", "career", "marketing manager" ] }, { "id": "task_0158", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Customer Support position", "description": "Complete job application for Customer Support role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Customer Support", "Apply to Customer Support role", "Fill out job application for Customer Support position" ], "keywords": [ "job", "application", "apply", "career", "customer support" ] }, { "id": "task_0159", "category": "form_filling", "subcategory": "job_application", "difficulty": "complex", "title": "Apply for Software Engineer position", "description": "Complete job application for Software Engineer role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 25, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Software Engineer", "Apply to Software Engineer role", "Fill out job application for Software Engineer position" ], "keywords": [ "job", "application", "apply", "career", "software engineer" ] }, { "id": "task_0160", "category": "form_filling", "subcategory": "job_application", "difficulty": "medium", "title": "Apply for Sales Representative position", "description": "Complete job application for Sales Representative role including resume upload and cover letter", "url_pattern": "https://careers.example.com/apply", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 15, "context": "Full job application with personal info, work history, and documents", "ground_truth_dsl": [ { "action": "navigate", "url": "https://careers.example.com/apply" }, { "action": "fill_form", "fields": { "#fullname": "Jane Smith", "#email": "jane@example.com", "#phone": "555-1234" } }, { "action": "click", "selector": "#upload-resume" }, { "action": "fill_form", "fields": { "#cover-letter": "I am passionate about..." } }, { "action": "click", "selector": "#submit-application" } ], "variations": [ "Submit application for Sales Representative", "Apply to Sales Representative role", "Fill out job application for Sales Representative position" ], "keywords": [ "job", "application", "apply", "career", "sales representative" ] }, { "id": "task_0161", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract laptops from Amazon", "description": "Scrape product names, prices, and ratings for laptops on Amazon", "url_pattern": "https://amazon.com/search?q=laptops", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/search?q=laptops" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape laptops data from Amazon", "Get laptops prices from Amazon", "Extract product info for laptops on Amazon" ], "keywords": [ "extract", "scrape", "data", "amazon", "laptops" ] }, { "id": "task_0162", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract smartphones from Amazon", "description": "Scrape product names, prices, and ratings for smartphones on Amazon", "url_pattern": "https://amazon.com/search?q=smartphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/search?q=smartphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape smartphones data from Amazon", "Get smartphones prices from Amazon", "Extract product info for smartphones on Amazon" ], "keywords": [ "extract", "scrape", "data", "amazon", "smartphones" ] }, { "id": "task_0163", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract headphones from Amazon", "description": "Scrape product names, prices, and ratings for headphones on Amazon", "url_pattern": "https://amazon.com/search?q=headphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/search?q=headphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape headphones data from Amazon", "Get headphones prices from Amazon", "Extract product info for headphones on Amazon" ], "keywords": [ "extract", "scrape", "data", "amazon", "headphones" ] }, { "id": "task_0164", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract cameras from Amazon", "description": "Scrape product names, prices, and ratings for cameras on Amazon", "url_pattern": "https://amazon.com/search?q=cameras", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/search?q=cameras" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape cameras data from Amazon", "Get cameras prices from Amazon", "Extract product info for cameras on Amazon" ], "keywords": [ "extract", "scrape", "data", "amazon", "cameras" ] }, { "id": "task_0165", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract books from Amazon", "description": "Scrape product names, prices, and ratings for books on Amazon", "url_pattern": "https://amazon.com/search?q=books", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/search?q=books" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape books data from Amazon", "Get books prices from Amazon", "Extract product info for books on Amazon" ], "keywords": [ "extract", "scrape", "data", "amazon", "books" ] }, { "id": "task_0166", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract clothing from Amazon", "description": "Scrape product names, prices, and ratings for clothing on Amazon", "url_pattern": "https://amazon.com/search?q=clothing", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/search?q=clothing" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape clothing data from Amazon", "Get clothing prices from Amazon", "Extract product info for clothing on Amazon" ], "keywords": [ "extract", "scrape", "data", "amazon", "clothing" ] }, { "id": "task_0167", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract furniture from Amazon", "description": "Scrape product names, prices, and ratings for furniture on Amazon", "url_pattern": "https://amazon.com/search?q=furniture", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/search?q=furniture" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape furniture data from Amazon", "Get furniture prices from Amazon", "Extract product info for furniture on Amazon" ], "keywords": [ "extract", "scrape", "data", "amazon", "furniture" ] }, { "id": "task_0168", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract appliances from Amazon", "description": "Scrape product names, prices, and ratings for appliances on Amazon", "url_pattern": "https://amazon.com/search?q=appliances", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/search?q=appliances" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape appliances data from Amazon", "Get appliances prices from Amazon", "Extract product info for appliances on Amazon" ], "keywords": [ "extract", "scrape", "data", "amazon", "appliances" ] }, { "id": "task_0169", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract toys from Amazon", "description": "Scrape product names, prices, and ratings for toys on Amazon", "url_pattern": "https://amazon.com/search?q=toys", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/search?q=toys" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape toys data from Amazon", "Get toys prices from Amazon", "Extract product info for toys on Amazon" ], "keywords": [ "extract", "scrape", "data", "amazon", "toys" ] }, { "id": "task_0170", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract beauty products from Amazon", "description": "Scrape product names, prices, and ratings for beauty products on Amazon", "url_pattern": "https://amazon.com/search?q=beauty products", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://amazon.com/search?q=beauty products" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape beauty products data from Amazon", "Get beauty products prices from Amazon", "Extract product info for beauty products on Amazon" ], "keywords": [ "extract", "scrape", "data", "amazon", "beauty products" ] }, { "id": "task_0171", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract laptops from eBay", "description": "Scrape product names, prices, and ratings for laptops on eBay", "url_pattern": "https://ebay.com/search?q=laptops", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://ebay.com/search?q=laptops" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape laptops data from eBay", "Get laptops prices from eBay", "Extract product info for laptops on eBay" ], "keywords": [ "extract", "scrape", "data", "ebay", "laptops" ] }, { "id": "task_0172", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract smartphones from eBay", "description": "Scrape product names, prices, and ratings for smartphones on eBay", "url_pattern": "https://ebay.com/search?q=smartphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://ebay.com/search?q=smartphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape smartphones data from eBay", "Get smartphones prices from eBay", "Extract product info for smartphones on eBay" ], "keywords": [ "extract", "scrape", "data", "ebay", "smartphones" ] }, { "id": "task_0173", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract headphones from eBay", "description": "Scrape product names, prices, and ratings for headphones on eBay", "url_pattern": "https://ebay.com/search?q=headphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://ebay.com/search?q=headphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape headphones data from eBay", "Get headphones prices from eBay", "Extract product info for headphones on eBay" ], "keywords": [ "extract", "scrape", "data", "ebay", "headphones" ] }, { "id": "task_0174", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract cameras from eBay", "description": "Scrape product names, prices, and ratings for cameras on eBay", "url_pattern": "https://ebay.com/search?q=cameras", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://ebay.com/search?q=cameras" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape cameras data from eBay", "Get cameras prices from eBay", "Extract product info for cameras on eBay" ], "keywords": [ "extract", "scrape", "data", "ebay", "cameras" ] }, { "id": "task_0175", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract books from eBay", "description": "Scrape product names, prices, and ratings for books on eBay", "url_pattern": "https://ebay.com/search?q=books", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://ebay.com/search?q=books" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape books data from eBay", "Get books prices from eBay", "Extract product info for books on eBay" ], "keywords": [ "extract", "scrape", "data", "ebay", "books" ] }, { "id": "task_0176", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract clothing from eBay", "description": "Scrape product names, prices, and ratings for clothing on eBay", "url_pattern": "https://ebay.com/search?q=clothing", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://ebay.com/search?q=clothing" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape clothing data from eBay", "Get clothing prices from eBay", "Extract product info for clothing on eBay" ], "keywords": [ "extract", "scrape", "data", "ebay", "clothing" ] }, { "id": "task_0177", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract furniture from eBay", "description": "Scrape product names, prices, and ratings for furniture on eBay", "url_pattern": "https://ebay.com/search?q=furniture", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://ebay.com/search?q=furniture" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape furniture data from eBay", "Get furniture prices from eBay", "Extract product info for furniture on eBay" ], "keywords": [ "extract", "scrape", "data", "ebay", "furniture" ] }, { "id": "task_0178", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract appliances from eBay", "description": "Scrape product names, prices, and ratings for appliances on eBay", "url_pattern": "https://ebay.com/search?q=appliances", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://ebay.com/search?q=appliances" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape appliances data from eBay", "Get appliances prices from eBay", "Extract product info for appliances on eBay" ], "keywords": [ "extract", "scrape", "data", "ebay", "appliances" ] }, { "id": "task_0179", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract toys from eBay", "description": "Scrape product names, prices, and ratings for toys on eBay", "url_pattern": "https://ebay.com/search?q=toys", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://ebay.com/search?q=toys" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape toys data from eBay", "Get toys prices from eBay", "Extract product info for toys on eBay" ], "keywords": [ "extract", "scrape", "data", "ebay", "toys" ] }, { "id": "task_0180", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract beauty products from eBay", "description": "Scrape product names, prices, and ratings for beauty products on eBay", "url_pattern": "https://ebay.com/search?q=beauty products", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://ebay.com/search?q=beauty products" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape beauty products data from eBay", "Get beauty products prices from eBay", "Extract product info for beauty products on eBay" ], "keywords": [ "extract", "scrape", "data", "ebay", "beauty products" ] }, { "id": "task_0181", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract laptops from Etsy", "description": "Scrape product names, prices, and ratings for laptops on Etsy", "url_pattern": "https://etsy.com/search?q=laptops", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://etsy.com/search?q=laptops" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape laptops data from Etsy", "Get laptops prices from Etsy", "Extract product info for laptops on Etsy" ], "keywords": [ "extract", "scrape", "data", "etsy", "laptops" ] }, { "id": "task_0182", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract smartphones from Etsy", "description": "Scrape product names, prices, and ratings for smartphones on Etsy", "url_pattern": "https://etsy.com/search?q=smartphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://etsy.com/search?q=smartphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape smartphones data from Etsy", "Get smartphones prices from Etsy", "Extract product info for smartphones on Etsy" ], "keywords": [ "extract", "scrape", "data", "etsy", "smartphones" ] }, { "id": "task_0183", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract headphones from Etsy", "description": "Scrape product names, prices, and ratings for headphones on Etsy", "url_pattern": "https://etsy.com/search?q=headphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://etsy.com/search?q=headphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape headphones data from Etsy", "Get headphones prices from Etsy", "Extract product info for headphones on Etsy" ], "keywords": [ "extract", "scrape", "data", "etsy", "headphones" ] }, { "id": "task_0184", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract cameras from Etsy", "description": "Scrape product names, prices, and ratings for cameras on Etsy", "url_pattern": "https://etsy.com/search?q=cameras", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://etsy.com/search?q=cameras" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape cameras data from Etsy", "Get cameras prices from Etsy", "Extract product info for cameras on Etsy" ], "keywords": [ "extract", "scrape", "data", "etsy", "cameras" ] }, { "id": "task_0185", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract books from Etsy", "description": "Scrape product names, prices, and ratings for books on Etsy", "url_pattern": "https://etsy.com/search?q=books", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://etsy.com/search?q=books" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape books data from Etsy", "Get books prices from Etsy", "Extract product info for books on Etsy" ], "keywords": [ "extract", "scrape", "data", "etsy", "books" ] }, { "id": "task_0186", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract clothing from Etsy", "description": "Scrape product names, prices, and ratings for clothing on Etsy", "url_pattern": "https://etsy.com/search?q=clothing", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://etsy.com/search?q=clothing" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape clothing data from Etsy", "Get clothing prices from Etsy", "Extract product info for clothing on Etsy" ], "keywords": [ "extract", "scrape", "data", "etsy", "clothing" ] }, { "id": "task_0187", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract furniture from Etsy", "description": "Scrape product names, prices, and ratings for furniture on Etsy", "url_pattern": "https://etsy.com/search?q=furniture", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://etsy.com/search?q=furniture" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape furniture data from Etsy", "Get furniture prices from Etsy", "Extract product info for furniture on Etsy" ], "keywords": [ "extract", "scrape", "data", "etsy", "furniture" ] }, { "id": "task_0188", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract appliances from Etsy", "description": "Scrape product names, prices, and ratings for appliances on Etsy", "url_pattern": "https://etsy.com/search?q=appliances", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://etsy.com/search?q=appliances" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape appliances data from Etsy", "Get appliances prices from Etsy", "Extract product info for appliances on Etsy" ], "keywords": [ "extract", "scrape", "data", "etsy", "appliances" ] }, { "id": "task_0189", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract toys from Etsy", "description": "Scrape product names, prices, and ratings for toys on Etsy", "url_pattern": "https://etsy.com/search?q=toys", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://etsy.com/search?q=toys" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape toys data from Etsy", "Get toys prices from Etsy", "Extract product info for toys on Etsy" ], "keywords": [ "extract", "scrape", "data", "etsy", "toys" ] }, { "id": "task_0190", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract beauty products from Etsy", "description": "Scrape product names, prices, and ratings for beauty products on Etsy", "url_pattern": "https://etsy.com/search?q=beauty products", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://etsy.com/search?q=beauty products" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape beauty products data from Etsy", "Get beauty products prices from Etsy", "Extract product info for beauty products on Etsy" ], "keywords": [ "extract", "scrape", "data", "etsy", "beauty products" ] }, { "id": "task_0191", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract laptops from Walmart", "description": "Scrape product names, prices, and ratings for laptops on Walmart", "url_pattern": "https://walmart.com/search?q=laptops", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://walmart.com/search?q=laptops" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape laptops data from Walmart", "Get laptops prices from Walmart", "Extract product info for laptops on Walmart" ], "keywords": [ "extract", "scrape", "data", "walmart", "laptops" ] }, { "id": "task_0192", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract smartphones from Walmart", "description": "Scrape product names, prices, and ratings for smartphones on Walmart", "url_pattern": "https://walmart.com/search?q=smartphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://walmart.com/search?q=smartphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape smartphones data from Walmart", "Get smartphones prices from Walmart", "Extract product info for smartphones on Walmart" ], "keywords": [ "extract", "scrape", "data", "walmart", "smartphones" ] }, { "id": "task_0193", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract headphones from Walmart", "description": "Scrape product names, prices, and ratings for headphones on Walmart", "url_pattern": "https://walmart.com/search?q=headphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://walmart.com/search?q=headphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape headphones data from Walmart", "Get headphones prices from Walmart", "Extract product info for headphones on Walmart" ], "keywords": [ "extract", "scrape", "data", "walmart", "headphones" ] }, { "id": "task_0194", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract cameras from Walmart", "description": "Scrape product names, prices, and ratings for cameras on Walmart", "url_pattern": "https://walmart.com/search?q=cameras", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://walmart.com/search?q=cameras" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape cameras data from Walmart", "Get cameras prices from Walmart", "Extract product info for cameras on Walmart" ], "keywords": [ "extract", "scrape", "data", "walmart", "cameras" ] }, { "id": "task_0195", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract books from Walmart", "description": "Scrape product names, prices, and ratings for books on Walmart", "url_pattern": "https://walmart.com/search?q=books", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://walmart.com/search?q=books" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape books data from Walmart", "Get books prices from Walmart", "Extract product info for books on Walmart" ], "keywords": [ "extract", "scrape", "data", "walmart", "books" ] }, { "id": "task_0196", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract clothing from Walmart", "description": "Scrape product names, prices, and ratings for clothing on Walmart", "url_pattern": "https://walmart.com/search?q=clothing", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://walmart.com/search?q=clothing" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape clothing data from Walmart", "Get clothing prices from Walmart", "Extract product info for clothing on Walmart" ], "keywords": [ "extract", "scrape", "data", "walmart", "clothing" ] }, { "id": "task_0197", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract furniture from Walmart", "description": "Scrape product names, prices, and ratings for furniture on Walmart", "url_pattern": "https://walmart.com/search?q=furniture", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://walmart.com/search?q=furniture" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape furniture data from Walmart", "Get furniture prices from Walmart", "Extract product info for furniture on Walmart" ], "keywords": [ "extract", "scrape", "data", "walmart", "furniture" ] }, { "id": "task_0198", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract appliances from Walmart", "description": "Scrape product names, prices, and ratings for appliances on Walmart", "url_pattern": "https://walmart.com/search?q=appliances", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://walmart.com/search?q=appliances" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape appliances data from Walmart", "Get appliances prices from Walmart", "Extract product info for appliances on Walmart" ], "keywords": [ "extract", "scrape", "data", "walmart", "appliances" ] }, { "id": "task_0199", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract toys from Walmart", "description": "Scrape product names, prices, and ratings for toys on Walmart", "url_pattern": "https://walmart.com/search?q=toys", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://walmart.com/search?q=toys" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape toys data from Walmart", "Get toys prices from Walmart", "Extract product info for toys on Walmart" ], "keywords": [ "extract", "scrape", "data", "walmart", "toys" ] }, { "id": "task_0200", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract beauty products from Walmart", "description": "Scrape product names, prices, and ratings for beauty products on Walmart", "url_pattern": "https://walmart.com/search?q=beauty products", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://walmart.com/search?q=beauty products" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape beauty products data from Walmart", "Get beauty products prices from Walmart", "Extract product info for beauty products on Walmart" ], "keywords": [ "extract", "scrape", "data", "walmart", "beauty products" ] }, { "id": "task_0201", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract laptops from Target", "description": "Scrape product names, prices, and ratings for laptops on Target", "url_pattern": "https://target.com/search?q=laptops", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://target.com/search?q=laptops" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape laptops data from Target", "Get laptops prices from Target", "Extract product info for laptops on Target" ], "keywords": [ "extract", "scrape", "data", "target", "laptops" ] }, { "id": "task_0202", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract smartphones from Target", "description": "Scrape product names, prices, and ratings for smartphones on Target", "url_pattern": "https://target.com/search?q=smartphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://target.com/search?q=smartphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape smartphones data from Target", "Get smartphones prices from Target", "Extract product info for smartphones on Target" ], "keywords": [ "extract", "scrape", "data", "target", "smartphones" ] }, { "id": "task_0203", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract headphones from Target", "description": "Scrape product names, prices, and ratings for headphones on Target", "url_pattern": "https://target.com/search?q=headphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://target.com/search?q=headphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape headphones data from Target", "Get headphones prices from Target", "Extract product info for headphones on Target" ], "keywords": [ "extract", "scrape", "data", "target", "headphones" ] }, { "id": "task_0204", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract cameras from Target", "description": "Scrape product names, prices, and ratings for cameras on Target", "url_pattern": "https://target.com/search?q=cameras", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://target.com/search?q=cameras" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape cameras data from Target", "Get cameras prices from Target", "Extract product info for cameras on Target" ], "keywords": [ "extract", "scrape", "data", "target", "cameras" ] }, { "id": "task_0205", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract books from Target", "description": "Scrape product names, prices, and ratings for books on Target", "url_pattern": "https://target.com/search?q=books", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://target.com/search?q=books" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape books data from Target", "Get books prices from Target", "Extract product info for books on Target" ], "keywords": [ "extract", "scrape", "data", "target", "books" ] }, { "id": "task_0206", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract clothing from Target", "description": "Scrape product names, prices, and ratings for clothing on Target", "url_pattern": "https://target.com/search?q=clothing", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://target.com/search?q=clothing" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape clothing data from Target", "Get clothing prices from Target", "Extract product info for clothing on Target" ], "keywords": [ "extract", "scrape", "data", "target", "clothing" ] }, { "id": "task_0207", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract furniture from Target", "description": "Scrape product names, prices, and ratings for furniture on Target", "url_pattern": "https://target.com/search?q=furniture", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://target.com/search?q=furniture" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape furniture data from Target", "Get furniture prices from Target", "Extract product info for furniture on Target" ], "keywords": [ "extract", "scrape", "data", "target", "furniture" ] }, { "id": "task_0208", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract appliances from Target", "description": "Scrape product names, prices, and ratings for appliances on Target", "url_pattern": "https://target.com/search?q=appliances", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://target.com/search?q=appliances" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape appliances data from Target", "Get appliances prices from Target", "Extract product info for appliances on Target" ], "keywords": [ "extract", "scrape", "data", "target", "appliances" ] }, { "id": "task_0209", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract toys from Target", "description": "Scrape product names, prices, and ratings for toys on Target", "url_pattern": "https://target.com/search?q=toys", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://target.com/search?q=toys" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape toys data from Target", "Get toys prices from Target", "Extract product info for toys on Target" ], "keywords": [ "extract", "scrape", "data", "target", "toys" ] }, { "id": "task_0210", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract beauty products from Target", "description": "Scrape product names, prices, and ratings for beauty products on Target", "url_pattern": "https://target.com/search?q=beauty products", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://target.com/search?q=beauty products" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape beauty products data from Target", "Get beauty products prices from Target", "Extract product info for beauty products on Target" ], "keywords": [ "extract", "scrape", "data", "target", "beauty products" ] }, { "id": "task_0211", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract laptops from Best Buy", "description": "Scrape product names, prices, and ratings for laptops on Best Buy", "url_pattern": "https://best buy.com/search?q=laptops", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://best buy.com/search?q=laptops" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape laptops data from Best Buy", "Get laptops prices from Best Buy", "Extract product info for laptops on Best Buy" ], "keywords": [ "extract", "scrape", "data", "best buy", "laptops" ] }, { "id": "task_0212", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract smartphones from Best Buy", "description": "Scrape product names, prices, and ratings for smartphones on Best Buy", "url_pattern": "https://best buy.com/search?q=smartphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://best buy.com/search?q=smartphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape smartphones data from Best Buy", "Get smartphones prices from Best Buy", "Extract product info for smartphones on Best Buy" ], "keywords": [ "extract", "scrape", "data", "best buy", "smartphones" ] }, { "id": "task_0213", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract headphones from Best Buy", "description": "Scrape product names, prices, and ratings for headphones on Best Buy", "url_pattern": "https://best buy.com/search?q=headphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://best buy.com/search?q=headphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape headphones data from Best Buy", "Get headphones prices from Best Buy", "Extract product info for headphones on Best Buy" ], "keywords": [ "extract", "scrape", "data", "best buy", "headphones" ] }, { "id": "task_0214", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract cameras from Best Buy", "description": "Scrape product names, prices, and ratings for cameras on Best Buy", "url_pattern": "https://best buy.com/search?q=cameras", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://best buy.com/search?q=cameras" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape cameras data from Best Buy", "Get cameras prices from Best Buy", "Extract product info for cameras on Best Buy" ], "keywords": [ "extract", "scrape", "data", "best buy", "cameras" ] }, { "id": "task_0215", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract books from Best Buy", "description": "Scrape product names, prices, and ratings for books on Best Buy", "url_pattern": "https://best buy.com/search?q=books", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://best buy.com/search?q=books" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape books data from Best Buy", "Get books prices from Best Buy", "Extract product info for books on Best Buy" ], "keywords": [ "extract", "scrape", "data", "best buy", "books" ] }, { "id": "task_0216", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract clothing from Best Buy", "description": "Scrape product names, prices, and ratings for clothing on Best Buy", "url_pattern": "https://best buy.com/search?q=clothing", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://best buy.com/search?q=clothing" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape clothing data from Best Buy", "Get clothing prices from Best Buy", "Extract product info for clothing on Best Buy" ], "keywords": [ "extract", "scrape", "data", "best buy", "clothing" ] }, { "id": "task_0217", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract furniture from Best Buy", "description": "Scrape product names, prices, and ratings for furniture on Best Buy", "url_pattern": "https://best buy.com/search?q=furniture", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://best buy.com/search?q=furniture" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape furniture data from Best Buy", "Get furniture prices from Best Buy", "Extract product info for furniture on Best Buy" ], "keywords": [ "extract", "scrape", "data", "best buy", "furniture" ] }, { "id": "task_0218", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract appliances from Best Buy", "description": "Scrape product names, prices, and ratings for appliances on Best Buy", "url_pattern": "https://best buy.com/search?q=appliances", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://best buy.com/search?q=appliances" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape appliances data from Best Buy", "Get appliances prices from Best Buy", "Extract product info for appliances on Best Buy" ], "keywords": [ "extract", "scrape", "data", "best buy", "appliances" ] }, { "id": "task_0219", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract toys from Best Buy", "description": "Scrape product names, prices, and ratings for toys on Best Buy", "url_pattern": "https://best buy.com/search?q=toys", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://best buy.com/search?q=toys" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape toys data from Best Buy", "Get toys prices from Best Buy", "Extract product info for toys on Best Buy" ], "keywords": [ "extract", "scrape", "data", "best buy", "toys" ] }, { "id": "task_0220", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract beauty products from Best Buy", "description": "Scrape product names, prices, and ratings for beauty products on Best Buy", "url_pattern": "https://best buy.com/search?q=beauty products", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://best buy.com/search?q=beauty products" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape beauty products data from Best Buy", "Get beauty products prices from Best Buy", "Extract product info for beauty products on Best Buy" ], "keywords": [ "extract", "scrape", "data", "best buy", "beauty products" ] }, { "id": "task_0221", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract laptops from Newegg", "description": "Scrape product names, prices, and ratings for laptops on Newegg", "url_pattern": "https://newegg.com/search?q=laptops", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://newegg.com/search?q=laptops" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape laptops data from Newegg", "Get laptops prices from Newegg", "Extract product info for laptops on Newegg" ], "keywords": [ "extract", "scrape", "data", "newegg", "laptops" ] }, { "id": "task_0222", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract smartphones from Newegg", "description": "Scrape product names, prices, and ratings for smartphones on Newegg", "url_pattern": "https://newegg.com/search?q=smartphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://newegg.com/search?q=smartphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape smartphones data from Newegg", "Get smartphones prices from Newegg", "Extract product info for smartphones on Newegg" ], "keywords": [ "extract", "scrape", "data", "newegg", "smartphones" ] }, { "id": "task_0223", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract headphones from Newegg", "description": "Scrape product names, prices, and ratings for headphones on Newegg", "url_pattern": "https://newegg.com/search?q=headphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://newegg.com/search?q=headphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape headphones data from Newegg", "Get headphones prices from Newegg", "Extract product info for headphones on Newegg" ], "keywords": [ "extract", "scrape", "data", "newegg", "headphones" ] }, { "id": "task_0224", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract cameras from Newegg", "description": "Scrape product names, prices, and ratings for cameras on Newegg", "url_pattern": "https://newegg.com/search?q=cameras", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://newegg.com/search?q=cameras" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape cameras data from Newegg", "Get cameras prices from Newegg", "Extract product info for cameras on Newegg" ], "keywords": [ "extract", "scrape", "data", "newegg", "cameras" ] }, { "id": "task_0225", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract books from Newegg", "description": "Scrape product names, prices, and ratings for books on Newegg", "url_pattern": "https://newegg.com/search?q=books", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://newegg.com/search?q=books" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape books data from Newegg", "Get books prices from Newegg", "Extract product info for books on Newegg" ], "keywords": [ "extract", "scrape", "data", "newegg", "books" ] }, { "id": "task_0226", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract clothing from Newegg", "description": "Scrape product names, prices, and ratings for clothing on Newegg", "url_pattern": "https://newegg.com/search?q=clothing", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://newegg.com/search?q=clothing" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape clothing data from Newegg", "Get clothing prices from Newegg", "Extract product info for clothing on Newegg" ], "keywords": [ "extract", "scrape", "data", "newegg", "clothing" ] }, { "id": "task_0227", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract furniture from Newegg", "description": "Scrape product names, prices, and ratings for furniture on Newegg", "url_pattern": "https://newegg.com/search?q=furniture", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://newegg.com/search?q=furniture" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape furniture data from Newegg", "Get furniture prices from Newegg", "Extract product info for furniture on Newegg" ], "keywords": [ "extract", "scrape", "data", "newegg", "furniture" ] }, { "id": "task_0228", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract appliances from Newegg", "description": "Scrape product names, prices, and ratings for appliances on Newegg", "url_pattern": "https://newegg.com/search?q=appliances", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://newegg.com/search?q=appliances" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape appliances data from Newegg", "Get appliances prices from Newegg", "Extract product info for appliances on Newegg" ], "keywords": [ "extract", "scrape", "data", "newegg", "appliances" ] }, { "id": "task_0229", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract toys from Newegg", "description": "Scrape product names, prices, and ratings for toys on Newegg", "url_pattern": "https://newegg.com/search?q=toys", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://newegg.com/search?q=toys" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape toys data from Newegg", "Get toys prices from Newegg", "Extract product info for toys on Newegg" ], "keywords": [ "extract", "scrape", "data", "newegg", "toys" ] }, { "id": "task_0230", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract beauty products from Newegg", "description": "Scrape product names, prices, and ratings for beauty products on Newegg", "url_pattern": "https://newegg.com/search?q=beauty products", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://newegg.com/search?q=beauty products" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape beauty products data from Newegg", "Get beauty products prices from Newegg", "Extract product info for beauty products on Newegg" ], "keywords": [ "extract", "scrape", "data", "newegg", "beauty products" ] }, { "id": "task_0231", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract laptops from AliExpress", "description": "Scrape product names, prices, and ratings for laptops on AliExpress", "url_pattern": "https://aliexpress.com/search?q=laptops", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://aliexpress.com/search?q=laptops" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape laptops data from AliExpress", "Get laptops prices from AliExpress", "Extract product info for laptops on AliExpress" ], "keywords": [ "extract", "scrape", "data", "aliexpress", "laptops" ] }, { "id": "task_0232", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract smartphones from AliExpress", "description": "Scrape product names, prices, and ratings for smartphones on AliExpress", "url_pattern": "https://aliexpress.com/search?q=smartphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://aliexpress.com/search?q=smartphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape smartphones data from AliExpress", "Get smartphones prices from AliExpress", "Extract product info for smartphones on AliExpress" ], "keywords": [ "extract", "scrape", "data", "aliexpress", "smartphones" ] }, { "id": "task_0233", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract headphones from AliExpress", "description": "Scrape product names, prices, and ratings for headphones on AliExpress", "url_pattern": "https://aliexpress.com/search?q=headphones", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://aliexpress.com/search?q=headphones" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape headphones data from AliExpress", "Get headphones prices from AliExpress", "Extract product info for headphones on AliExpress" ], "keywords": [ "extract", "scrape", "data", "aliexpress", "headphones" ] }, { "id": "task_0234", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract cameras from AliExpress", "description": "Scrape product names, prices, and ratings for cameras on AliExpress", "url_pattern": "https://aliexpress.com/search?q=cameras", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://aliexpress.com/search?q=cameras" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape cameras data from AliExpress", "Get cameras prices from AliExpress", "Extract product info for cameras on AliExpress" ], "keywords": [ "extract", "scrape", "data", "aliexpress", "cameras" ] }, { "id": "task_0235", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract books from AliExpress", "description": "Scrape product names, prices, and ratings for books on AliExpress", "url_pattern": "https://aliexpress.com/search?q=books", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://aliexpress.com/search?q=books" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape books data from AliExpress", "Get books prices from AliExpress", "Extract product info for books on AliExpress" ], "keywords": [ "extract", "scrape", "data", "aliexpress", "books" ] }, { "id": "task_0236", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract clothing from AliExpress", "description": "Scrape product names, prices, and ratings for clothing on AliExpress", "url_pattern": "https://aliexpress.com/search?q=clothing", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://aliexpress.com/search?q=clothing" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape clothing data from AliExpress", "Get clothing prices from AliExpress", "Extract product info for clothing on AliExpress" ], "keywords": [ "extract", "scrape", "data", "aliexpress", "clothing" ] }, { "id": "task_0237", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract furniture from AliExpress", "description": "Scrape product names, prices, and ratings for furniture on AliExpress", "url_pattern": "https://aliexpress.com/search?q=furniture", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://aliexpress.com/search?q=furniture" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape furniture data from AliExpress", "Get furniture prices from AliExpress", "Extract product info for furniture on AliExpress" ], "keywords": [ "extract", "scrape", "data", "aliexpress", "furniture" ] }, { "id": "task_0238", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract appliances from AliExpress", "description": "Scrape product names, prices, and ratings for appliances on AliExpress", "url_pattern": "https://aliexpress.com/search?q=appliances", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://aliexpress.com/search?q=appliances" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape appliances data from AliExpress", "Get appliances prices from AliExpress", "Extract product info for appliances on AliExpress" ], "keywords": [ "extract", "scrape", "data", "aliexpress", "appliances" ] }, { "id": "task_0239", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract toys from AliExpress", "description": "Scrape product names, prices, and ratings for toys on AliExpress", "url_pattern": "https://aliexpress.com/search?q=toys", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://aliexpress.com/search?q=toys" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape toys data from AliExpress", "Get toys prices from AliExpress", "Extract product info for toys on AliExpress" ], "keywords": [ "extract", "scrape", "data", "aliexpress", "toys" ] }, { "id": "task_0240", "category": "data_extraction", "subcategory": "e-commerce", "difficulty": "simple", "title": "Extract beauty products from AliExpress", "description": "Scrape product names, prices, and ratings for beauty products on AliExpress", "url_pattern": "https://aliexpress.com/search?q=beauty products", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 3, "context": "Single page product extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://aliexpress.com/search?q=beauty products" }, { "action": "wait_for_load", "selector": ".product-item" }, { "action": "extract_data", "selectors": { "name": ".product-name", "price": ".product-price", "rating": ".product-rating" } } ], "variations": [ "Scrape beauty products data from AliExpress", "Get beauty products prices from AliExpress", "Extract product info for beauty products on AliExpress" ], "keywords": [ "extract", "scrape", "data", "aliexpress", "beauty products" ] }, { "id": "task_0241", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract posts from Twitter", "description": "Scrape posts data from Twitter including text, engagement metrics, and timestamps", "url_pattern": "https://twitter.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://twitter.com" }, { "action": "wait_for_load", "selector": ".posts-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".posts-text", "author": ".posts-author", "timestamp": ".posts-time" } } ], "variations": [ "Scrape posts from Twitter", "Get posts data from Twitter", "Extract Twitter posts" ], "keywords": [ "extract", "social media", "twitter", "posts" ] }, { "id": "task_0242", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract profiles from Twitter", "description": "Scrape profiles data from Twitter including text, engagement metrics, and timestamps", "url_pattern": "https://twitter.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://twitter.com" }, { "action": "wait_for_load", "selector": ".profiles-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".profiles-text", "author": ".profiles-author", "timestamp": ".profiles-time" } } ], "variations": [ "Scrape profiles from Twitter", "Get profiles data from Twitter", "Extract Twitter profiles" ], "keywords": [ "extract", "social media", "twitter", "profiles" ] }, { "id": "task_0243", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract comments from Twitter", "description": "Scrape comments data from Twitter including text, engagement metrics, and timestamps", "url_pattern": "https://twitter.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://twitter.com" }, { "action": "wait_for_load", "selector": ".comments-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".comments-text", "author": ".comments-author", "timestamp": ".comments-time" } } ], "variations": [ "Scrape comments from Twitter", "Get comments data from Twitter", "Extract Twitter comments" ], "keywords": [ "extract", "social media", "twitter", "comments" ] }, { "id": "task_0244", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract hashtags from Twitter", "description": "Scrape hashtags data from Twitter including text, engagement metrics, and timestamps", "url_pattern": "https://twitter.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://twitter.com" }, { "action": "wait_for_load", "selector": ".hashtags-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".hashtags-text", "author": ".hashtags-author", "timestamp": ".hashtags-time" } } ], "variations": [ "Scrape hashtags from Twitter", "Get hashtags data from Twitter", "Extract Twitter hashtags" ], "keywords": [ "extract", "social media", "twitter", "hashtags" ] }, { "id": "task_0245", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract followers from Twitter", "description": "Scrape followers data from Twitter including text, engagement metrics, and timestamps", "url_pattern": "https://twitter.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://twitter.com" }, { "action": "wait_for_load", "selector": ".followers-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".followers-text", "author": ".followers-author", "timestamp": ".followers-time" } } ], "variations": [ "Scrape followers from Twitter", "Get followers data from Twitter", "Extract Twitter followers" ], "keywords": [ "extract", "social media", "twitter", "followers" ] }, { "id": "task_0246", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract connections from Twitter", "description": "Scrape connections data from Twitter including text, engagement metrics, and timestamps", "url_pattern": "https://twitter.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://twitter.com" }, { "action": "wait_for_load", "selector": ".connections-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".connections-text", "author": ".connections-author", "timestamp": ".connections-time" } } ], "variations": [ "Scrape connections from Twitter", "Get connections data from Twitter", "Extract Twitter connections" ], "keywords": [ "extract", "social media", "twitter", "connections" ] }, { "id": "task_0247", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract posts from LinkedIn", "description": "Scrape posts data from LinkedIn including text, engagement metrics, and timestamps", "url_pattern": "https://linkedin.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://linkedin.com" }, { "action": "wait_for_load", "selector": ".posts-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".posts-text", "author": ".posts-author", "timestamp": ".posts-time" } } ], "variations": [ "Scrape posts from LinkedIn", "Get posts data from LinkedIn", "Extract LinkedIn posts" ], "keywords": [ "extract", "social media", "linkedin", "posts" ] }, { "id": "task_0248", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract profiles from LinkedIn", "description": "Scrape profiles data from LinkedIn including text, engagement metrics, and timestamps", "url_pattern": "https://linkedin.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://linkedin.com" }, { "action": "wait_for_load", "selector": ".profiles-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".profiles-text", "author": ".profiles-author", "timestamp": ".profiles-time" } } ], "variations": [ "Scrape profiles from LinkedIn", "Get profiles data from LinkedIn", "Extract LinkedIn profiles" ], "keywords": [ "extract", "social media", "linkedin", "profiles" ] }, { "id": "task_0249", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract comments from LinkedIn", "description": "Scrape comments data from LinkedIn including text, engagement metrics, and timestamps", "url_pattern": "https://linkedin.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://linkedin.com" }, { "action": "wait_for_load", "selector": ".comments-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".comments-text", "author": ".comments-author", "timestamp": ".comments-time" } } ], "variations": [ "Scrape comments from LinkedIn", "Get comments data from LinkedIn", "Extract LinkedIn comments" ], "keywords": [ "extract", "social media", "linkedin", "comments" ] }, { "id": "task_0250", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract hashtags from LinkedIn", "description": "Scrape hashtags data from LinkedIn including text, engagement metrics, and timestamps", "url_pattern": "https://linkedin.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://linkedin.com" }, { "action": "wait_for_load", "selector": ".hashtags-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".hashtags-text", "author": ".hashtags-author", "timestamp": ".hashtags-time" } } ], "variations": [ "Scrape hashtags from LinkedIn", "Get hashtags data from LinkedIn", "Extract LinkedIn hashtags" ], "keywords": [ "extract", "social media", "linkedin", "hashtags" ] }, { "id": "task_0251", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract followers from LinkedIn", "description": "Scrape followers data from LinkedIn including text, engagement metrics, and timestamps", "url_pattern": "https://linkedin.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://linkedin.com" }, { "action": "wait_for_load", "selector": ".followers-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".followers-text", "author": ".followers-author", "timestamp": ".followers-time" } } ], "variations": [ "Scrape followers from LinkedIn", "Get followers data from LinkedIn", "Extract LinkedIn followers" ], "keywords": [ "extract", "social media", "linkedin", "followers" ] }, { "id": "task_0252", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract connections from LinkedIn", "description": "Scrape connections data from LinkedIn including text, engagement metrics, and timestamps", "url_pattern": "https://linkedin.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://linkedin.com" }, { "action": "wait_for_load", "selector": ".connections-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".connections-text", "author": ".connections-author", "timestamp": ".connections-time" } } ], "variations": [ "Scrape connections from LinkedIn", "Get connections data from LinkedIn", "Extract LinkedIn connections" ], "keywords": [ "extract", "social media", "linkedin", "connections" ] }, { "id": "task_0253", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract posts from Instagram", "description": "Scrape posts data from Instagram including text, engagement metrics, and timestamps", "url_pattern": "https://instagram.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://instagram.com" }, { "action": "wait_for_load", "selector": ".posts-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".posts-text", "author": ".posts-author", "timestamp": ".posts-time" } } ], "variations": [ "Scrape posts from Instagram", "Get posts data from Instagram", "Extract Instagram posts" ], "keywords": [ "extract", "social media", "instagram", "posts" ] }, { "id": "task_0254", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract profiles from Instagram", "description": "Scrape profiles data from Instagram including text, engagement metrics, and timestamps", "url_pattern": "https://instagram.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://instagram.com" }, { "action": "wait_for_load", "selector": ".profiles-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".profiles-text", "author": ".profiles-author", "timestamp": ".profiles-time" } } ], "variations": [ "Scrape profiles from Instagram", "Get profiles data from Instagram", "Extract Instagram profiles" ], "keywords": [ "extract", "social media", "instagram", "profiles" ] }, { "id": "task_0255", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract comments from Instagram", "description": "Scrape comments data from Instagram including text, engagement metrics, and timestamps", "url_pattern": "https://instagram.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://instagram.com" }, { "action": "wait_for_load", "selector": ".comments-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".comments-text", "author": ".comments-author", "timestamp": ".comments-time" } } ], "variations": [ "Scrape comments from Instagram", "Get comments data from Instagram", "Extract Instagram comments" ], "keywords": [ "extract", "social media", "instagram", "comments" ] }, { "id": "task_0256", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract hashtags from Instagram", "description": "Scrape hashtags data from Instagram including text, engagement metrics, and timestamps", "url_pattern": "https://instagram.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://instagram.com" }, { "action": "wait_for_load", "selector": ".hashtags-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".hashtags-text", "author": ".hashtags-author", "timestamp": ".hashtags-time" } } ], "variations": [ "Scrape hashtags from Instagram", "Get hashtags data from Instagram", "Extract Instagram hashtags" ], "keywords": [ "extract", "social media", "instagram", "hashtags" ] }, { "id": "task_0257", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract followers from Instagram", "description": "Scrape followers data from Instagram including text, engagement metrics, and timestamps", "url_pattern": "https://instagram.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://instagram.com" }, { "action": "wait_for_load", "selector": ".followers-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".followers-text", "author": ".followers-author", "timestamp": ".followers-time" } } ], "variations": [ "Scrape followers from Instagram", "Get followers data from Instagram", "Extract Instagram followers" ], "keywords": [ "extract", "social media", "instagram", "followers" ] }, { "id": "task_0258", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract connections from Instagram", "description": "Scrape connections data from Instagram including text, engagement metrics, and timestamps", "url_pattern": "https://instagram.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://instagram.com" }, { "action": "wait_for_load", "selector": ".connections-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".connections-text", "author": ".connections-author", "timestamp": ".connections-time" } } ], "variations": [ "Scrape connections from Instagram", "Get connections data from Instagram", "Extract Instagram connections" ], "keywords": [ "extract", "social media", "instagram", "connections" ] }, { "id": "task_0259", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract posts from Facebook", "description": "Scrape posts data from Facebook including text, engagement metrics, and timestamps", "url_pattern": "https://facebook.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://facebook.com" }, { "action": "wait_for_load", "selector": ".posts-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".posts-text", "author": ".posts-author", "timestamp": ".posts-time" } } ], "variations": [ "Scrape posts from Facebook", "Get posts data from Facebook", "Extract Facebook posts" ], "keywords": [ "extract", "social media", "facebook", "posts" ] }, { "id": "task_0260", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract profiles from Facebook", "description": "Scrape profiles data from Facebook including text, engagement metrics, and timestamps", "url_pattern": "https://facebook.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://facebook.com" }, { "action": "wait_for_load", "selector": ".profiles-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".profiles-text", "author": ".profiles-author", "timestamp": ".profiles-time" } } ], "variations": [ "Scrape profiles from Facebook", "Get profiles data from Facebook", "Extract Facebook profiles" ], "keywords": [ "extract", "social media", "facebook", "profiles" ] }, { "id": "task_0261", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract comments from Facebook", "description": "Scrape comments data from Facebook including text, engagement metrics, and timestamps", "url_pattern": "https://facebook.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://facebook.com" }, { "action": "wait_for_load", "selector": ".comments-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".comments-text", "author": ".comments-author", "timestamp": ".comments-time" } } ], "variations": [ "Scrape comments from Facebook", "Get comments data from Facebook", "Extract Facebook comments" ], "keywords": [ "extract", "social media", "facebook", "comments" ] }, { "id": "task_0262", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract hashtags from Facebook", "description": "Scrape hashtags data from Facebook including text, engagement metrics, and timestamps", "url_pattern": "https://facebook.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://facebook.com" }, { "action": "wait_for_load", "selector": ".hashtags-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".hashtags-text", "author": ".hashtags-author", "timestamp": ".hashtags-time" } } ], "variations": [ "Scrape hashtags from Facebook", "Get hashtags data from Facebook", "Extract Facebook hashtags" ], "keywords": [ "extract", "social media", "facebook", "hashtags" ] }, { "id": "task_0263", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract followers from Facebook", "description": "Scrape followers data from Facebook including text, engagement metrics, and timestamps", "url_pattern": "https://facebook.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://facebook.com" }, { "action": "wait_for_load", "selector": ".followers-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".followers-text", "author": ".followers-author", "timestamp": ".followers-time" } } ], "variations": [ "Scrape followers from Facebook", "Get followers data from Facebook", "Extract Facebook followers" ], "keywords": [ "extract", "social media", "facebook", "followers" ] }, { "id": "task_0264", "category": "data_extraction", "subcategory": "social_media", "difficulty": "medium", "title": "Extract connections from Facebook", "description": "Scrape connections data from Facebook including text, engagement metrics, and timestamps", "url_pattern": "https://facebook.com", "expected_actions": [ "navigate", "wait_for_load", "extract_data", "scroll" ], "expected_operation_count": 8, "context": "Social media data extraction with dynamic loading", "ground_truth_dsl": [ { "action": "navigate", "url": "https://facebook.com" }, { "action": "wait_for_load", "selector": ".connections-container" }, { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "extract_data", "selectors": { "content": ".connections-text", "author": ".connections-author", "timestamp": ".connections-time" } } ], "variations": [ "Scrape connections from Facebook", "Get connections data from Facebook", "Extract Facebook connections" ], "keywords": [ "extract", "social media", "facebook", "connections" ] }, { "id": "task_0265", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from CNN", "description": "Scrape article titles, authors, dates, and content from CNN", "url_pattern": "https://cnn.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cnn.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from CNN", "Extract news from CNN", "Get article data from CNN" ], "keywords": [ "extract", "news", "articles", "cnn" ] }, { "id": "task_0266", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from CNN", "description": "Scrape article titles, authors, dates, and content from CNN", "url_pattern": "https://cnn.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cnn.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from CNN", "Extract news from CNN", "Get article data from CNN" ], "keywords": [ "extract", "news", "articles", "cnn" ] }, { "id": "task_0267", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from CNN", "description": "Scrape article titles, authors, dates, and content from CNN", "url_pattern": "https://cnn.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cnn.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from CNN", "Extract news from CNN", "Get article data from CNN" ], "keywords": [ "extract", "news", "articles", "cnn" ] }, { "id": "task_0268", "category": "data_extraction", "subcategory": "news", "difficulty": "simple", "title": "Extract articles from CNN", "description": "Scrape article titles, authors, dates, and content from CNN", "url_pattern": "https://cnn.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cnn.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from CNN", "Extract news from CNN", "Get article data from CNN" ], "keywords": [ "extract", "news", "articles", "cnn" ] }, { "id": "task_0269", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from CNN", "description": "Scrape article titles, authors, dates, and content from CNN", "url_pattern": "https://cnn.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cnn.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from CNN", "Extract news from CNN", "Get article data from CNN" ], "keywords": [ "extract", "news", "articles", "cnn" ] }, { "id": "task_0270", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from CNN", "description": "Scrape article titles, authors, dates, and content from CNN", "url_pattern": "https://cnn.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cnn.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from CNN", "Extract news from CNN", "Get article data from CNN" ], "keywords": [ "extract", "news", "articles", "cnn" ] }, { "id": "task_0271", "category": "data_extraction", "subcategory": "news", "difficulty": "simple", "title": "Extract articles from BBC", "description": "Scrape article titles, authors, dates, and content from BBC", "url_pattern": "https://bbc.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://bbc.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from BBC", "Extract news from BBC", "Get article data from BBC" ], "keywords": [ "extract", "news", "articles", "bbc" ] }, { "id": "task_0272", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from BBC", "description": "Scrape article titles, authors, dates, and content from BBC", "url_pattern": "https://bbc.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://bbc.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from BBC", "Extract news from BBC", "Get article data from BBC" ], "keywords": [ "extract", "news", "articles", "bbc" ] }, { "id": "task_0273", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from BBC", "description": "Scrape article titles, authors, dates, and content from BBC", "url_pattern": "https://bbc.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://bbc.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from BBC", "Extract news from BBC", "Get article data from BBC" ], "keywords": [ "extract", "news", "articles", "bbc" ] }, { "id": "task_0274", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from BBC", "description": "Scrape article titles, authors, dates, and content from BBC", "url_pattern": "https://bbc.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://bbc.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from BBC", "Extract news from BBC", "Get article data from BBC" ], "keywords": [ "extract", "news", "articles", "bbc" ] }, { "id": "task_0275", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from BBC", "description": "Scrape article titles, authors, dates, and content from BBC", "url_pattern": "https://bbc.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://bbc.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from BBC", "Extract news from BBC", "Get article data from BBC" ], "keywords": [ "extract", "news", "articles", "bbc" ] }, { "id": "task_0276", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from BBC", "description": "Scrape article titles, authors, dates, and content from BBC", "url_pattern": "https://bbc.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://bbc.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from BBC", "Extract news from BBC", "Get article data from BBC" ], "keywords": [ "extract", "news", "articles", "bbc" ] }, { "id": "task_0277", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from TechCrunch", "description": "Scrape article titles, authors, dates, and content from TechCrunch", "url_pattern": "https://techcrunch.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://techcrunch.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from TechCrunch", "Extract news from TechCrunch", "Get article data from TechCrunch" ], "keywords": [ "extract", "news", "articles", "techcrunch" ] }, { "id": "task_0278", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from TechCrunch", "description": "Scrape article titles, authors, dates, and content from TechCrunch", "url_pattern": "https://techcrunch.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://techcrunch.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from TechCrunch", "Extract news from TechCrunch", "Get article data from TechCrunch" ], "keywords": [ "extract", "news", "articles", "techcrunch" ] }, { "id": "task_0279", "category": "data_extraction", "subcategory": "news", "difficulty": "simple", "title": "Extract articles from TechCrunch", "description": "Scrape article titles, authors, dates, and content from TechCrunch", "url_pattern": "https://techcrunch.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://techcrunch.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from TechCrunch", "Extract news from TechCrunch", "Get article data from TechCrunch" ], "keywords": [ "extract", "news", "articles", "techcrunch" ] }, { "id": "task_0280", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from TechCrunch", "description": "Scrape article titles, authors, dates, and content from TechCrunch", "url_pattern": "https://techcrunch.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://techcrunch.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from TechCrunch", "Extract news from TechCrunch", "Get article data from TechCrunch" ], "keywords": [ "extract", "news", "articles", "techcrunch" ] }, { "id": "task_0281", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from TechCrunch", "description": "Scrape article titles, authors, dates, and content from TechCrunch", "url_pattern": "https://techcrunch.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://techcrunch.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from TechCrunch", "Extract news from TechCrunch", "Get article data from TechCrunch" ], "keywords": [ "extract", "news", "articles", "techcrunch" ] }, { "id": "task_0282", "category": "data_extraction", "subcategory": "news", "difficulty": "simple", "title": "Extract articles from TechCrunch", "description": "Scrape article titles, authors, dates, and content from TechCrunch", "url_pattern": "https://techcrunch.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://techcrunch.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from TechCrunch", "Extract news from TechCrunch", "Get article data from TechCrunch" ], "keywords": [ "extract", "news", "articles", "techcrunch" ] }, { "id": "task_0283", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from Medium", "description": "Scrape article titles, authors, dates, and content from Medium", "url_pattern": "https://medium.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://medium.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from Medium", "Extract news from Medium", "Get article data from Medium" ], "keywords": [ "extract", "news", "articles", "medium" ] }, { "id": "task_0284", "category": "data_extraction", "subcategory": "news", "difficulty": "simple", "title": "Extract articles from Medium", "description": "Scrape article titles, authors, dates, and content from Medium", "url_pattern": "https://medium.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://medium.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from Medium", "Extract news from Medium", "Get article data from Medium" ], "keywords": [ "extract", "news", "articles", "medium" ] }, { "id": "task_0285", "category": "data_extraction", "subcategory": "news", "difficulty": "simple", "title": "Extract articles from Medium", "description": "Scrape article titles, authors, dates, and content from Medium", "url_pattern": "https://medium.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://medium.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from Medium", "Extract news from Medium", "Get article data from Medium" ], "keywords": [ "extract", "news", "articles", "medium" ] }, { "id": "task_0286", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from Medium", "description": "Scrape article titles, authors, dates, and content from Medium", "url_pattern": "https://medium.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://medium.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from Medium", "Extract news from Medium", "Get article data from Medium" ], "keywords": [ "extract", "news", "articles", "medium" ] }, { "id": "task_0287", "category": "data_extraction", "subcategory": "news", "difficulty": "simple", "title": "Extract articles from Medium", "description": "Scrape article titles, authors, dates, and content from Medium", "url_pattern": "https://medium.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://medium.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from Medium", "Extract news from Medium", "Get article data from Medium" ], "keywords": [ "extract", "news", "articles", "medium" ] }, { "id": "task_0288", "category": "data_extraction", "subcategory": "news", "difficulty": "simple", "title": "Extract articles from Medium", "description": "Scrape article titles, authors, dates, and content from Medium", "url_pattern": "https://medium.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://medium.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from Medium", "Extract news from Medium", "Get article data from Medium" ], "keywords": [ "extract", "news", "articles", "medium" ] }, { "id": "task_0289", "category": "data_extraction", "subcategory": "news", "difficulty": "simple", "title": "Extract articles from The Verge", "description": "Scrape article titles, authors, dates, and content from The Verge", "url_pattern": "https://theverge.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://theverge.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from The Verge", "Extract news from The Verge", "Get article data from The Verge" ], "keywords": [ "extract", "news", "articles", "the verge" ] }, { "id": "task_0290", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from The Verge", "description": "Scrape article titles, authors, dates, and content from The Verge", "url_pattern": "https://theverge.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://theverge.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from The Verge", "Extract news from The Verge", "Get article data from The Verge" ], "keywords": [ "extract", "news", "articles", "the verge" ] }, { "id": "task_0291", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from The Verge", "description": "Scrape article titles, authors, dates, and content from The Verge", "url_pattern": "https://theverge.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://theverge.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from The Verge", "Extract news from The Verge", "Get article data from The Verge" ], "keywords": [ "extract", "news", "articles", "the verge" ] }, { "id": "task_0292", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from The Verge", "description": "Scrape article titles, authors, dates, and content from The Verge", "url_pattern": "https://theverge.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://theverge.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from The Verge", "Extract news from The Verge", "Get article data from The Verge" ], "keywords": [ "extract", "news", "articles", "the verge" ] }, { "id": "task_0293", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from The Verge", "description": "Scrape article titles, authors, dates, and content from The Verge", "url_pattern": "https://theverge.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://theverge.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from The Verge", "Extract news from The Verge", "Get article data from The Verge" ], "keywords": [ "extract", "news", "articles", "the verge" ] }, { "id": "task_0294", "category": "data_extraction", "subcategory": "news", "difficulty": "medium", "title": "Extract articles from The Verge", "description": "Scrape article titles, authors, dates, and content from The Verge", "url_pattern": "https://theverge.com", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "News article extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://theverge.com" }, { "action": "wait_for_load", "selector": ".article" }, { "action": "extract_data", "selectors": { "title": "h1.article-title", "author": ".article-author", "date": ".article-date", "content": ".article-body" } } ], "variations": [ "Scrape articles from The Verge", "Extract news from The Verge", "Get article data from The Verge" ], "keywords": [ "extract", "news", "articles", "the verge" ] }, { "id": "task_0295", "category": "data_extraction", "subcategory": "tables", "difficulty": "simple", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0296", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0297", "category": "data_extraction", "subcategory": "tables", "difficulty": "complex", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 20, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0298", "category": "data_extraction", "subcategory": "tables", "difficulty": "complex", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 20, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0299", "category": "data_extraction", "subcategory": "tables", "difficulty": "simple", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0300", "category": "data_extraction", "subcategory": "tables", "difficulty": "simple", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0301", "category": "data_extraction", "subcategory": "tables", "difficulty": "complex", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 20, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0302", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0303", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0304", "category": "data_extraction", "subcategory": "tables", "difficulty": "simple", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0305", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0306", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0307", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0308", "category": "data_extraction", "subcategory": "tables", "difficulty": "simple", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0309", "category": "data_extraction", "subcategory": "tables", "difficulty": "simple", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0310", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0311", "category": "data_extraction", "subcategory": "tables", "difficulty": "simple", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0312", "category": "data_extraction", "subcategory": "tables", "difficulty": "complex", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 20, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0313", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0314", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0315", "category": "data_extraction", "subcategory": "tables", "difficulty": "simple", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0316", "category": "data_extraction", "subcategory": "tables", "difficulty": "complex", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 20, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0317", "category": "data_extraction", "subcategory": "tables", "difficulty": "simple", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 5, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0318", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0319", "category": "data_extraction", "subcategory": "tables", "difficulty": "complex", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 20, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0320", "category": "data_extraction", "subcategory": "tables", "difficulty": "complex", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 20, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0321", "category": "data_extraction", "subcategory": "tables", "difficulty": "complex", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 20, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0322", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0323", "category": "data_extraction", "subcategory": "tables", "difficulty": "complex", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 20, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0324", "category": "data_extraction", "subcategory": "tables", "difficulty": "medium", "title": "Extract data from HTML table", "description": "Scrape all rows and columns from an HTML table", "url_pattern": "https://example.com/data-table", "expected_actions": [ "navigate", "extract_data" ], "expected_operation_count": 10, "context": "Structured table data extraction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/data-table" }, { "action": "wait_for_load", "selector": "table" }, { "action": "extract_data", "selectors": { "headers": "table thead th", "rows": "table tbody tr" } } ], "variations": [ "Scrape HTML table data", "Extract table information", "Get data from table" ], "keywords": [ "extract", "table", "data", "scrape" ] }, { "id": "task_0325", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0326", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0327", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0328", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0329", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0330", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0331", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0332", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0333", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0334", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0335", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0336", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0337", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0338", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0339", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0340", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0341", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0342", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0343", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0344", "category": "data_extraction", "subcategory": "real_estate", "difficulty": "medium", "title": "Extract real estate listings", "description": "Scrape property listings including price, bedrooms, location, and photos", "url_pattern": "https://realtor.example.com/search", "expected_actions": [ "navigate", "extract_data", "click" ], "expected_operation_count": 8, "context": "Real estate data extraction with pagination", "ground_truth_dsl": [ { "action": "navigate", "url": "https://realtor.example.com/search" }, { "action": "wait_for_load", "selector": ".property-card" }, { "action": "extract_data", "selectors": { "price": ".property-price", "beds": ".property-beds", "baths": ".property-baths", "address": ".property-address" } } ], "variations": [ "Scrape real estate listings", "Extract property data", "Get housing listings" ], "keywords": [ "extract", "real estate", "property", "listings" ] }, { "id": "task_0345", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Electronics > Computers", "description": "Navigate through menu hierarchy to reach Computers in Electronics", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Electronics']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Computers']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Electronics then Computers", "Navigate to Computers section in Electronics", "Browse Electronics > Computers" ], "keywords": [ "navigate", "menu", "electronics", "computers" ] }, { "id": "task_0346", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Electronics > Computers", "description": "Navigate through menu hierarchy to reach Computers in Electronics", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Electronics']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Computers']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Electronics then Computers", "Navigate to Computers section in Electronics", "Browse Electronics > Computers" ], "keywords": [ "navigate", "menu", "electronics", "computers" ] }, { "id": "task_0347", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Electronics > Computers", "description": "Navigate through menu hierarchy to reach Computers in Electronics", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Electronics']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Computers']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Electronics then Computers", "Navigate to Computers section in Electronics", "Browse Electronics > Computers" ], "keywords": [ "navigate", "menu", "electronics", "computers" ] }, { "id": "task_0348", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Electronics > Phones", "description": "Navigate through menu hierarchy to reach Phones in Electronics", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Electronics']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Phones']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Electronics then Phones", "Navigate to Phones section in Electronics", "Browse Electronics > Phones" ], "keywords": [ "navigate", "menu", "electronics", "phones" ] }, { "id": "task_0349", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Electronics > Phones", "description": "Navigate through menu hierarchy to reach Phones in Electronics", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Electronics']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Phones']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Electronics then Phones", "Navigate to Phones section in Electronics", "Browse Electronics > Phones" ], "keywords": [ "navigate", "menu", "electronics", "phones" ] }, { "id": "task_0350", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Electronics > Phones", "description": "Navigate through menu hierarchy to reach Phones in Electronics", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Electronics']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Phones']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Electronics then Phones", "Navigate to Phones section in Electronics", "Browse Electronics > Phones" ], "keywords": [ "navigate", "menu", "electronics", "phones" ] }, { "id": "task_0351", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Electronics > Cameras", "description": "Navigate through menu hierarchy to reach Cameras in Electronics", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Electronics']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Cameras']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Electronics then Cameras", "Navigate to Cameras section in Electronics", "Browse Electronics > Cameras" ], "keywords": [ "navigate", "menu", "electronics", "cameras" ] }, { "id": "task_0352", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Electronics > Cameras", "description": "Navigate through menu hierarchy to reach Cameras in Electronics", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Electronics']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Cameras']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Electronics then Cameras", "Navigate to Cameras section in Electronics", "Browse Electronics > Cameras" ], "keywords": [ "navigate", "menu", "electronics", "cameras" ] }, { "id": "task_0353", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Electronics > Cameras", "description": "Navigate through menu hierarchy to reach Cameras in Electronics", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Electronics']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Cameras']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Electronics then Cameras", "Navigate to Cameras section in Electronics", "Browse Electronics > Cameras" ], "keywords": [ "navigate", "menu", "electronics", "cameras" ] }, { "id": "task_0354", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Clothing > Men", "description": "Navigate through menu hierarchy to reach Men in Clothing", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Clothing']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Men']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Clothing then Men", "Navigate to Men section in Clothing", "Browse Clothing > Men" ], "keywords": [ "navigate", "menu", "clothing", "men" ] }, { "id": "task_0355", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Clothing > Men", "description": "Navigate through menu hierarchy to reach Men in Clothing", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Clothing']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Men']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Clothing then Men", "Navigate to Men section in Clothing", "Browse Clothing > Men" ], "keywords": [ "navigate", "menu", "clothing", "men" ] }, { "id": "task_0356", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Clothing > Men", "description": "Navigate through menu hierarchy to reach Men in Clothing", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Clothing']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Men']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Clothing then Men", "Navigate to Men section in Clothing", "Browse Clothing > Men" ], "keywords": [ "navigate", "menu", "clothing", "men" ] }, { "id": "task_0357", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Clothing > Women", "description": "Navigate through menu hierarchy to reach Women in Clothing", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Clothing']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Women']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Clothing then Women", "Navigate to Women section in Clothing", "Browse Clothing > Women" ], "keywords": [ "navigate", "menu", "clothing", "women" ] }, { "id": "task_0358", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Clothing > Women", "description": "Navigate through menu hierarchy to reach Women in Clothing", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Clothing']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Women']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Clothing then Women", "Navigate to Women section in Clothing", "Browse Clothing > Women" ], "keywords": [ "navigate", "menu", "clothing", "women" ] }, { "id": "task_0359", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Clothing > Women", "description": "Navigate through menu hierarchy to reach Women in Clothing", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Clothing']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Women']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Clothing then Women", "Navigate to Women section in Clothing", "Browse Clothing > Women" ], "keywords": [ "navigate", "menu", "clothing", "women" ] }, { "id": "task_0360", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Clothing > Kids", "description": "Navigate through menu hierarchy to reach Kids in Clothing", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Clothing']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Kids']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Clothing then Kids", "Navigate to Kids section in Clothing", "Browse Clothing > Kids" ], "keywords": [ "navigate", "menu", "clothing", "kids" ] }, { "id": "task_0361", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Clothing > Kids", "description": "Navigate through menu hierarchy to reach Kids in Clothing", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Clothing']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Kids']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Clothing then Kids", "Navigate to Kids section in Clothing", "Browse Clothing > Kids" ], "keywords": [ "navigate", "menu", "clothing", "kids" ] }, { "id": "task_0362", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Clothing > Kids", "description": "Navigate through menu hierarchy to reach Kids in Clothing", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Clothing']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Kids']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Clothing then Kids", "Navigate to Kids section in Clothing", "Browse Clothing > Kids" ], "keywords": [ "navigate", "menu", "clothing", "kids" ] }, { "id": "task_0363", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Home > Furniture", "description": "Navigate through menu hierarchy to reach Furniture in Home", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Home']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Furniture']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Home then Furniture", "Navigate to Furniture section in Home", "Browse Home > Furniture" ], "keywords": [ "navigate", "menu", "home", "furniture" ] }, { "id": "task_0364", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Home > Furniture", "description": "Navigate through menu hierarchy to reach Furniture in Home", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Home']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Furniture']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Home then Furniture", "Navigate to Furniture section in Home", "Browse Home > Furniture" ], "keywords": [ "navigate", "menu", "home", "furniture" ] }, { "id": "task_0365", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Home > Furniture", "description": "Navigate through menu hierarchy to reach Furniture in Home", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Home']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Furniture']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Home then Furniture", "Navigate to Furniture section in Home", "Browse Home > Furniture" ], "keywords": [ "navigate", "menu", "home", "furniture" ] }, { "id": "task_0366", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Home > Decor", "description": "Navigate through menu hierarchy to reach Decor in Home", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Home']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Decor']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Home then Decor", "Navigate to Decor section in Home", "Browse Home > Decor" ], "keywords": [ "navigate", "menu", "home", "decor" ] }, { "id": "task_0367", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Home > Decor", "description": "Navigate through menu hierarchy to reach Decor in Home", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Home']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Decor']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Home then Decor", "Navigate to Decor section in Home", "Browse Home > Decor" ], "keywords": [ "navigate", "menu", "home", "decor" ] }, { "id": "task_0368", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Home > Decor", "description": "Navigate through menu hierarchy to reach Decor in Home", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Home']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Decor']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Home then Decor", "Navigate to Decor section in Home", "Browse Home > Decor" ], "keywords": [ "navigate", "menu", "home", "decor" ] }, { "id": "task_0369", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Home > Kitchen", "description": "Navigate through menu hierarchy to reach Kitchen in Home", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Home']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Kitchen']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Home then Kitchen", "Navigate to Kitchen section in Home", "Browse Home > Kitchen" ], "keywords": [ "navigate", "menu", "home", "kitchen" ] }, { "id": "task_0370", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Home > Kitchen", "description": "Navigate through menu hierarchy to reach Kitchen in Home", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Home']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Kitchen']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Home then Kitchen", "Navigate to Kitchen section in Home", "Browse Home > Kitchen" ], "keywords": [ "navigate", "menu", "home", "kitchen" ] }, { "id": "task_0371", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Home > Kitchen", "description": "Navigate through menu hierarchy to reach Kitchen in Home", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Home']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Kitchen']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Home then Kitchen", "Navigate to Kitchen section in Home", "Browse Home > Kitchen" ], "keywords": [ "navigate", "menu", "home", "kitchen" ] }, { "id": "task_0372", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Sports > Equipment", "description": "Navigate through menu hierarchy to reach Equipment in Sports", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Sports']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Equipment']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Sports then Equipment", "Navigate to Equipment section in Sports", "Browse Sports > Equipment" ], "keywords": [ "navigate", "menu", "sports", "equipment" ] }, { "id": "task_0373", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Sports > Equipment", "description": "Navigate through menu hierarchy to reach Equipment in Sports", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Sports']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Equipment']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Sports then Equipment", "Navigate to Equipment section in Sports", "Browse Sports > Equipment" ], "keywords": [ "navigate", "menu", "sports", "equipment" ] }, { "id": "task_0374", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Sports > Equipment", "description": "Navigate through menu hierarchy to reach Equipment in Sports", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Sports']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Equipment']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Sports then Equipment", "Navigate to Equipment section in Sports", "Browse Sports > Equipment" ], "keywords": [ "navigate", "menu", "sports", "equipment" ] }, { "id": "task_0375", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Sports > Apparel", "description": "Navigate through menu hierarchy to reach Apparel in Sports", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Sports']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Apparel']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Sports then Apparel", "Navigate to Apparel section in Sports", "Browse Sports > Apparel" ], "keywords": [ "navigate", "menu", "sports", "apparel" ] }, { "id": "task_0376", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Sports > Apparel", "description": "Navigate through menu hierarchy to reach Apparel in Sports", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Sports']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Apparel']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Sports then Apparel", "Navigate to Apparel section in Sports", "Browse Sports > Apparel" ], "keywords": [ "navigate", "menu", "sports", "apparel" ] }, { "id": "task_0377", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Sports > Apparel", "description": "Navigate through menu hierarchy to reach Apparel in Sports", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Sports']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Apparel']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Sports then Apparel", "Navigate to Apparel section in Sports", "Browse Sports > Apparel" ], "keywords": [ "navigate", "menu", "sports", "apparel" ] }, { "id": "task_0378", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Sports > Outdoors", "description": "Navigate through menu hierarchy to reach Outdoors in Sports", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Sports']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Outdoors']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Sports then Outdoors", "Navigate to Outdoors section in Sports", "Browse Sports > Outdoors" ], "keywords": [ "navigate", "menu", "sports", "outdoors" ] }, { "id": "task_0379", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Sports > Outdoors", "description": "Navigate through menu hierarchy to reach Outdoors in Sports", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Sports']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Outdoors']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Sports then Outdoors", "Navigate to Outdoors section in Sports", "Browse Sports > Outdoors" ], "keywords": [ "navigate", "menu", "sports", "outdoors" ] }, { "id": "task_0380", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Sports > Outdoors", "description": "Navigate through menu hierarchy to reach Outdoors in Sports", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Sports']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Outdoors']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Sports then Outdoors", "Navigate to Outdoors section in Sports", "Browse Sports > Outdoors" ], "keywords": [ "navigate", "menu", "sports", "outdoors" ] }, { "id": "task_0381", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Books > Fiction", "description": "Navigate through menu hierarchy to reach Fiction in Books", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Books']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Fiction']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Books then Fiction", "Navigate to Fiction section in Books", "Browse Books > Fiction" ], "keywords": [ "navigate", "menu", "books", "fiction" ] }, { "id": "task_0382", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Books > Fiction", "description": "Navigate through menu hierarchy to reach Fiction in Books", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Books']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Fiction']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Books then Fiction", "Navigate to Fiction section in Books", "Browse Books > Fiction" ], "keywords": [ "navigate", "menu", "books", "fiction" ] }, { "id": "task_0383", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Books > Fiction", "description": "Navigate through menu hierarchy to reach Fiction in Books", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Books']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Fiction']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Books then Fiction", "Navigate to Fiction section in Books", "Browse Books > Fiction" ], "keywords": [ "navigate", "menu", "books", "fiction" ] }, { "id": "task_0384", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Books > Non-fiction", "description": "Navigate through menu hierarchy to reach Non-fiction in Books", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Books']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Non-fiction']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Books then Non-fiction", "Navigate to Non-fiction section in Books", "Browse Books > Non-fiction" ], "keywords": [ "navigate", "menu", "books", "non-fiction" ] }, { "id": "task_0385", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Books > Non-fiction", "description": "Navigate through menu hierarchy to reach Non-fiction in Books", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Books']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Non-fiction']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Books then Non-fiction", "Navigate to Non-fiction section in Books", "Browse Books > Non-fiction" ], "keywords": [ "navigate", "menu", "books", "non-fiction" ] }, { "id": "task_0386", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Books > Non-fiction", "description": "Navigate through menu hierarchy to reach Non-fiction in Books", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Books']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Non-fiction']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Books then Non-fiction", "Navigate to Non-fiction section in Books", "Browse Books > Non-fiction" ], "keywords": [ "navigate", "menu", "books", "non-fiction" ] }, { "id": "task_0387", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Books > Textbooks", "description": "Navigate through menu hierarchy to reach Textbooks in Books", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Books']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Textbooks']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Books then Textbooks", "Navigate to Textbooks section in Books", "Browse Books > Textbooks" ], "keywords": [ "navigate", "menu", "books", "textbooks" ] }, { "id": "task_0388", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Books > Textbooks", "description": "Navigate through menu hierarchy to reach Textbooks in Books", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Books']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Textbooks']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Books then Textbooks", "Navigate to Textbooks section in Books", "Browse Books > Textbooks" ], "keywords": [ "navigate", "menu", "books", "textbooks" ] }, { "id": "task_0389", "category": "navigation", "subcategory": "menu_navigation", "difficulty": "medium", "title": "Navigate to Books > Textbooks", "description": "Navigate through menu hierarchy to reach Textbooks in Books", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "hover", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-level menu navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "hover", "selector": "[data-category='Books']" }, { "action": "wait_for_load", "selector": ".submenu" }, { "action": "click", "selector": "[data-subcategory='Textbooks']" }, { "action": "wait_for_load", "selector": ".category-page" } ], "variations": [ "Go to Books then Textbooks", "Navigate to Textbooks section in Books", "Browse Books > Textbooks" ], "keywords": [ "navigate", "menu", "books", "textbooks" ] }, { "id": "task_0390", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter jobs", "description": "Search for Software Engineer and apply filters: San Francisco, Full-time", "url_pattern": "https://jobs.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for jobs", "ground_truth_dsl": [ { "action": "navigate", "url": "https://jobs.example.com" }, { "action": "fill_form", "fields": { "#search": "Software Engineer" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "San Francisco" }, { "action": "select_option", "selector": "#filter2", "value": "Full-time" } ], "variations": [ "Search jobs for Software Engineer with filters", "Find Software Engineer in jobs filtered by San Francisco and Full-time", "Look up Software Engineer in jobs and filter" ], "keywords": [ "search", "filter", "jobs", "software engineer" ] }, { "id": "task_0391", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter jobs", "description": "Search for Software Engineer and apply filters: San Francisco, Full-time", "url_pattern": "https://jobs.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for jobs", "ground_truth_dsl": [ { "action": "navigate", "url": "https://jobs.example.com" }, { "action": "fill_form", "fields": { "#search": "Software Engineer" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "San Francisco" }, { "action": "select_option", "selector": "#filter2", "value": "Full-time" } ], "variations": [ "Search jobs for Software Engineer with filters", "Find Software Engineer in jobs filtered by San Francisco and Full-time", "Look up Software Engineer in jobs and filter" ], "keywords": [ "search", "filter", "jobs", "software engineer" ] }, { "id": "task_0392", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter jobs", "description": "Search for Software Engineer and apply filters: San Francisco, Full-time", "url_pattern": "https://jobs.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for jobs", "ground_truth_dsl": [ { "action": "navigate", "url": "https://jobs.example.com" }, { "action": "fill_form", "fields": { "#search": "Software Engineer" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "San Francisco" }, { "action": "select_option", "selector": "#filter2", "value": "Full-time" } ], "variations": [ "Search jobs for Software Engineer with filters", "Find Software Engineer in jobs filtered by San Francisco and Full-time", "Look up Software Engineer in jobs and filter" ], "keywords": [ "search", "filter", "jobs", "software engineer" ] }, { "id": "task_0393", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter jobs", "description": "Search for Software Engineer and apply filters: San Francisco, Full-time", "url_pattern": "https://jobs.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for jobs", "ground_truth_dsl": [ { "action": "navigate", "url": "https://jobs.example.com" }, { "action": "fill_form", "fields": { "#search": "Software Engineer" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "San Francisco" }, { "action": "select_option", "selector": "#filter2", "value": "Full-time" } ], "variations": [ "Search jobs for Software Engineer with filters", "Find Software Engineer in jobs filtered by San Francisco and Full-time", "Look up Software Engineer in jobs and filter" ], "keywords": [ "search", "filter", "jobs", "software engineer" ] }, { "id": "task_0394", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter jobs", "description": "Search for Software Engineer and apply filters: San Francisco, Full-time", "url_pattern": "https://jobs.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for jobs", "ground_truth_dsl": [ { "action": "navigate", "url": "https://jobs.example.com" }, { "action": "fill_form", "fields": { "#search": "Software Engineer" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "San Francisco" }, { "action": "select_option", "selector": "#filter2", "value": "Full-time" } ], "variations": [ "Search jobs for Software Engineer with filters", "Find Software Engineer in jobs filtered by San Francisco and Full-time", "Look up Software Engineer in jobs and filter" ], "keywords": [ "search", "filter", "jobs", "software engineer" ] }, { "id": "task_0395", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter jobs", "description": "Search for Software Engineer and apply filters: San Francisco, Full-time", "url_pattern": "https://jobs.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for jobs", "ground_truth_dsl": [ { "action": "navigate", "url": "https://jobs.example.com" }, { "action": "fill_form", "fields": { "#search": "Software Engineer" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "San Francisco" }, { "action": "select_option", "selector": "#filter2", "value": "Full-time" } ], "variations": [ "Search jobs for Software Engineer with filters", "Find Software Engineer in jobs filtered by San Francisco and Full-time", "Look up Software Engineer in jobs and filter" ], "keywords": [ "search", "filter", "jobs", "software engineer" ] }, { "id": "task_0396", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter jobs", "description": "Search for Software Engineer and apply filters: San Francisco, Full-time", "url_pattern": "https://jobs.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for jobs", "ground_truth_dsl": [ { "action": "navigate", "url": "https://jobs.example.com" }, { "action": "fill_form", "fields": { "#search": "Software Engineer" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "San Francisco" }, { "action": "select_option", "selector": "#filter2", "value": "Full-time" } ], "variations": [ "Search jobs for Software Engineer with filters", "Find Software Engineer in jobs filtered by San Francisco and Full-time", "Look up Software Engineer in jobs and filter" ], "keywords": [ "search", "filter", "jobs", "software engineer" ] }, { "id": "task_0397", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter jobs", "description": "Search for Software Engineer and apply filters: San Francisco, Full-time", "url_pattern": "https://jobs.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for jobs", "ground_truth_dsl": [ { "action": "navigate", "url": "https://jobs.example.com" }, { "action": "fill_form", "fields": { "#search": "Software Engineer" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "San Francisco" }, { "action": "select_option", "selector": "#filter2", "value": "Full-time" } ], "variations": [ "Search jobs for Software Engineer with filters", "Find Software Engineer in jobs filtered by San Francisco and Full-time", "Look up Software Engineer in jobs and filter" ], "keywords": [ "search", "filter", "jobs", "software engineer" ] }, { "id": "task_0398", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter jobs", "description": "Search for Software Engineer and apply filters: San Francisco, Full-time", "url_pattern": "https://jobs.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for jobs", "ground_truth_dsl": [ { "action": "navigate", "url": "https://jobs.example.com" }, { "action": "fill_form", "fields": { "#search": "Software Engineer" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "San Francisco" }, { "action": "select_option", "selector": "#filter2", "value": "Full-time" } ], "variations": [ "Search jobs for Software Engineer with filters", "Find Software Engineer in jobs filtered by San Francisco and Full-time", "Look up Software Engineer in jobs and filter" ], "keywords": [ "search", "filter", "jobs", "software engineer" ] }, { "id": "task_0399", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter jobs", "description": "Search for Software Engineer and apply filters: San Francisco, Full-time", "url_pattern": "https://jobs.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for jobs", "ground_truth_dsl": [ { "action": "navigate", "url": "https://jobs.example.com" }, { "action": "fill_form", "fields": { "#search": "Software Engineer" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "San Francisco" }, { "action": "select_option", "selector": "#filter2", "value": "Full-time" } ], "variations": [ "Search jobs for Software Engineer with filters", "Find Software Engineer in jobs filtered by San Francisco and Full-time", "Look up Software Engineer in jobs and filter" ], "keywords": [ "search", "filter", "jobs", "software engineer" ] }, { "id": "task_0400", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter products", "description": "Search for laptop and apply filters: $500-1000, 4+ stars", "url_pattern": "https://products.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for products", "ground_truth_dsl": [ { "action": "navigate", "url": "https://products.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "$500-1000" }, { "action": "select_option", "selector": "#filter2", "value": "4+ stars" } ], "variations": [ "Search products for laptop with filters", "Find laptop in products filtered by $500-1000 and 4+ stars", "Look up laptop in products and filter" ], "keywords": [ "search", "filter", "products", "laptop" ] }, { "id": "task_0401", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter products", "description": "Search for laptop and apply filters: $500-1000, 4+ stars", "url_pattern": "https://products.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for products", "ground_truth_dsl": [ { "action": "navigate", "url": "https://products.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "$500-1000" }, { "action": "select_option", "selector": "#filter2", "value": "4+ stars" } ], "variations": [ "Search products for laptop with filters", "Find laptop in products filtered by $500-1000 and 4+ stars", "Look up laptop in products and filter" ], "keywords": [ "search", "filter", "products", "laptop" ] }, { "id": "task_0402", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter products", "description": "Search for laptop and apply filters: $500-1000, 4+ stars", "url_pattern": "https://products.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for products", "ground_truth_dsl": [ { "action": "navigate", "url": "https://products.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "$500-1000" }, { "action": "select_option", "selector": "#filter2", "value": "4+ stars" } ], "variations": [ "Search products for laptop with filters", "Find laptop in products filtered by $500-1000 and 4+ stars", "Look up laptop in products and filter" ], "keywords": [ "search", "filter", "products", "laptop" ] }, { "id": "task_0403", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter products", "description": "Search for laptop and apply filters: $500-1000, 4+ stars", "url_pattern": "https://products.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for products", "ground_truth_dsl": [ { "action": "navigate", "url": "https://products.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "$500-1000" }, { "action": "select_option", "selector": "#filter2", "value": "4+ stars" } ], "variations": [ "Search products for laptop with filters", "Find laptop in products filtered by $500-1000 and 4+ stars", "Look up laptop in products and filter" ], "keywords": [ "search", "filter", "products", "laptop" ] }, { "id": "task_0404", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter products", "description": "Search for laptop and apply filters: $500-1000, 4+ stars", "url_pattern": "https://products.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for products", "ground_truth_dsl": [ { "action": "navigate", "url": "https://products.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "$500-1000" }, { "action": "select_option", "selector": "#filter2", "value": "4+ stars" } ], "variations": [ "Search products for laptop with filters", "Find laptop in products filtered by $500-1000 and 4+ stars", "Look up laptop in products and filter" ], "keywords": [ "search", "filter", "products", "laptop" ] }, { "id": "task_0405", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter products", "description": "Search for laptop and apply filters: $500-1000, 4+ stars", "url_pattern": "https://products.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for products", "ground_truth_dsl": [ { "action": "navigate", "url": "https://products.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "$500-1000" }, { "action": "select_option", "selector": "#filter2", "value": "4+ stars" } ], "variations": [ "Search products for laptop with filters", "Find laptop in products filtered by $500-1000 and 4+ stars", "Look up laptop in products and filter" ], "keywords": [ "search", "filter", "products", "laptop" ] }, { "id": "task_0406", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter products", "description": "Search for laptop and apply filters: $500-1000, 4+ stars", "url_pattern": "https://products.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for products", "ground_truth_dsl": [ { "action": "navigate", "url": "https://products.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "$500-1000" }, { "action": "select_option", "selector": "#filter2", "value": "4+ stars" } ], "variations": [ "Search products for laptop with filters", "Find laptop in products filtered by $500-1000 and 4+ stars", "Look up laptop in products and filter" ], "keywords": [ "search", "filter", "products", "laptop" ] }, { "id": "task_0407", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter products", "description": "Search for laptop and apply filters: $500-1000, 4+ stars", "url_pattern": "https://products.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for products", "ground_truth_dsl": [ { "action": "navigate", "url": "https://products.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "$500-1000" }, { "action": "select_option", "selector": "#filter2", "value": "4+ stars" } ], "variations": [ "Search products for laptop with filters", "Find laptop in products filtered by $500-1000 and 4+ stars", "Look up laptop in products and filter" ], "keywords": [ "search", "filter", "products", "laptop" ] }, { "id": "task_0408", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter products", "description": "Search for laptop and apply filters: $500-1000, 4+ stars", "url_pattern": "https://products.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for products", "ground_truth_dsl": [ { "action": "navigate", "url": "https://products.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "$500-1000" }, { "action": "select_option", "selector": "#filter2", "value": "4+ stars" } ], "variations": [ "Search products for laptop with filters", "Find laptop in products filtered by $500-1000 and 4+ stars", "Look up laptop in products and filter" ], "keywords": [ "search", "filter", "products", "laptop" ] }, { "id": "task_0409", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter products", "description": "Search for laptop and apply filters: $500-1000, 4+ stars", "url_pattern": "https://products.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for products", "ground_truth_dsl": [ { "action": "navigate", "url": "https://products.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "$500-1000" }, { "action": "select_option", "selector": "#filter2", "value": "4+ stars" } ], "variations": [ "Search products for laptop with filters", "Find laptop in products filtered by $500-1000 and 4+ stars", "Look up laptop in products and filter" ], "keywords": [ "search", "filter", "products", "laptop" ] }, { "id": "task_0410", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter hotels", "description": "Search for Paris and apply filters: Oct 15-20, 4 star", "url_pattern": "https://hotels.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for hotels", "ground_truth_dsl": [ { "action": "navigate", "url": "https://hotels.example.com" }, { "action": "fill_form", "fields": { "#search": "Paris" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Oct 15-20" }, { "action": "select_option", "selector": "#filter2", "value": "4 star" } ], "variations": [ "Search hotels for Paris with filters", "Find Paris in hotels filtered by Oct 15-20 and 4 star", "Look up Paris in hotels and filter" ], "keywords": [ "search", "filter", "hotels", "paris" ] }, { "id": "task_0411", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter hotels", "description": "Search for Paris and apply filters: Oct 15-20, 4 star", "url_pattern": "https://hotels.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for hotels", "ground_truth_dsl": [ { "action": "navigate", "url": "https://hotels.example.com" }, { "action": "fill_form", "fields": { "#search": "Paris" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Oct 15-20" }, { "action": "select_option", "selector": "#filter2", "value": "4 star" } ], "variations": [ "Search hotels for Paris with filters", "Find Paris in hotels filtered by Oct 15-20 and 4 star", "Look up Paris in hotels and filter" ], "keywords": [ "search", "filter", "hotels", "paris" ] }, { "id": "task_0412", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter hotels", "description": "Search for Paris and apply filters: Oct 15-20, 4 star", "url_pattern": "https://hotels.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for hotels", "ground_truth_dsl": [ { "action": "navigate", "url": "https://hotels.example.com" }, { "action": "fill_form", "fields": { "#search": "Paris" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Oct 15-20" }, { "action": "select_option", "selector": "#filter2", "value": "4 star" } ], "variations": [ "Search hotels for Paris with filters", "Find Paris in hotels filtered by Oct 15-20 and 4 star", "Look up Paris in hotels and filter" ], "keywords": [ "search", "filter", "hotels", "paris" ] }, { "id": "task_0413", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter hotels", "description": "Search for Paris and apply filters: Oct 15-20, 4 star", "url_pattern": "https://hotels.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for hotels", "ground_truth_dsl": [ { "action": "navigate", "url": "https://hotels.example.com" }, { "action": "fill_form", "fields": { "#search": "Paris" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Oct 15-20" }, { "action": "select_option", "selector": "#filter2", "value": "4 star" } ], "variations": [ "Search hotels for Paris with filters", "Find Paris in hotels filtered by Oct 15-20 and 4 star", "Look up Paris in hotels and filter" ], "keywords": [ "search", "filter", "hotels", "paris" ] }, { "id": "task_0414", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter hotels", "description": "Search for Paris and apply filters: Oct 15-20, 4 star", "url_pattern": "https://hotels.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for hotels", "ground_truth_dsl": [ { "action": "navigate", "url": "https://hotels.example.com" }, { "action": "fill_form", "fields": { "#search": "Paris" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Oct 15-20" }, { "action": "select_option", "selector": "#filter2", "value": "4 star" } ], "variations": [ "Search hotels for Paris with filters", "Find Paris in hotels filtered by Oct 15-20 and 4 star", "Look up Paris in hotels and filter" ], "keywords": [ "search", "filter", "hotels", "paris" ] }, { "id": "task_0415", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter hotels", "description": "Search for Paris and apply filters: Oct 15-20, 4 star", "url_pattern": "https://hotels.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for hotels", "ground_truth_dsl": [ { "action": "navigate", "url": "https://hotels.example.com" }, { "action": "fill_form", "fields": { "#search": "Paris" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Oct 15-20" }, { "action": "select_option", "selector": "#filter2", "value": "4 star" } ], "variations": [ "Search hotels for Paris with filters", "Find Paris in hotels filtered by Oct 15-20 and 4 star", "Look up Paris in hotels and filter" ], "keywords": [ "search", "filter", "hotels", "paris" ] }, { "id": "task_0416", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter hotels", "description": "Search for Paris and apply filters: Oct 15-20, 4 star", "url_pattern": "https://hotels.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for hotels", "ground_truth_dsl": [ { "action": "navigate", "url": "https://hotels.example.com" }, { "action": "fill_form", "fields": { "#search": "Paris" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Oct 15-20" }, { "action": "select_option", "selector": "#filter2", "value": "4 star" } ], "variations": [ "Search hotels for Paris with filters", "Find Paris in hotels filtered by Oct 15-20 and 4 star", "Look up Paris in hotels and filter" ], "keywords": [ "search", "filter", "hotels", "paris" ] }, { "id": "task_0417", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter hotels", "description": "Search for Paris and apply filters: Oct 15-20, 4 star", "url_pattern": "https://hotels.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for hotels", "ground_truth_dsl": [ { "action": "navigate", "url": "https://hotels.example.com" }, { "action": "fill_form", "fields": { "#search": "Paris" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Oct 15-20" }, { "action": "select_option", "selector": "#filter2", "value": "4 star" } ], "variations": [ "Search hotels for Paris with filters", "Find Paris in hotels filtered by Oct 15-20 and 4 star", "Look up Paris in hotels and filter" ], "keywords": [ "search", "filter", "hotels", "paris" ] }, { "id": "task_0418", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter hotels", "description": "Search for Paris and apply filters: Oct 15-20, 4 star", "url_pattern": "https://hotels.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for hotels", "ground_truth_dsl": [ { "action": "navigate", "url": "https://hotels.example.com" }, { "action": "fill_form", "fields": { "#search": "Paris" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Oct 15-20" }, { "action": "select_option", "selector": "#filter2", "value": "4 star" } ], "variations": [ "Search hotels for Paris with filters", "Find Paris in hotels filtered by Oct 15-20 and 4 star", "Look up Paris in hotels and filter" ], "keywords": [ "search", "filter", "hotels", "paris" ] }, { "id": "task_0419", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter hotels", "description": "Search for Paris and apply filters: Oct 15-20, 4 star", "url_pattern": "https://hotels.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for hotels", "ground_truth_dsl": [ { "action": "navigate", "url": "https://hotels.example.com" }, { "action": "fill_form", "fields": { "#search": "Paris" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Oct 15-20" }, { "action": "select_option", "selector": "#filter2", "value": "4 star" } ], "variations": [ "Search hotels for Paris with filters", "Find Paris in hotels filtered by Oct 15-20 and 4 star", "Look up Paris in hotels and filter" ], "keywords": [ "search", "filter", "hotels", "paris" ] }, { "id": "task_0420", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter flights", "description": "Search for NYC to LA and apply filters: Nov 1, Economy", "url_pattern": "https://flights.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for flights", "ground_truth_dsl": [ { "action": "navigate", "url": "https://flights.example.com" }, { "action": "fill_form", "fields": { "#search": "NYC to LA" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Nov 1" }, { "action": "select_option", "selector": "#filter2", "value": "Economy" } ], "variations": [ "Search flights for NYC to LA with filters", "Find NYC to LA in flights filtered by Nov 1 and Economy", "Look up NYC to LA in flights and filter" ], "keywords": [ "search", "filter", "flights", "nyc to la" ] }, { "id": "task_0421", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter flights", "description": "Search for NYC to LA and apply filters: Nov 1, Economy", "url_pattern": "https://flights.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for flights", "ground_truth_dsl": [ { "action": "navigate", "url": "https://flights.example.com" }, { "action": "fill_form", "fields": { "#search": "NYC to LA" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Nov 1" }, { "action": "select_option", "selector": "#filter2", "value": "Economy" } ], "variations": [ "Search flights for NYC to LA with filters", "Find NYC to LA in flights filtered by Nov 1 and Economy", "Look up NYC to LA in flights and filter" ], "keywords": [ "search", "filter", "flights", "nyc to la" ] }, { "id": "task_0422", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter flights", "description": "Search for NYC to LA and apply filters: Nov 1, Economy", "url_pattern": "https://flights.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for flights", "ground_truth_dsl": [ { "action": "navigate", "url": "https://flights.example.com" }, { "action": "fill_form", "fields": { "#search": "NYC to LA" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Nov 1" }, { "action": "select_option", "selector": "#filter2", "value": "Economy" } ], "variations": [ "Search flights for NYC to LA with filters", "Find NYC to LA in flights filtered by Nov 1 and Economy", "Look up NYC to LA in flights and filter" ], "keywords": [ "search", "filter", "flights", "nyc to la" ] }, { "id": "task_0423", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter flights", "description": "Search for NYC to LA and apply filters: Nov 1, Economy", "url_pattern": "https://flights.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for flights", "ground_truth_dsl": [ { "action": "navigate", "url": "https://flights.example.com" }, { "action": "fill_form", "fields": { "#search": "NYC to LA" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Nov 1" }, { "action": "select_option", "selector": "#filter2", "value": "Economy" } ], "variations": [ "Search flights for NYC to LA with filters", "Find NYC to LA in flights filtered by Nov 1 and Economy", "Look up NYC to LA in flights and filter" ], "keywords": [ "search", "filter", "flights", "nyc to la" ] }, { "id": "task_0424", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter flights", "description": "Search for NYC to LA and apply filters: Nov 1, Economy", "url_pattern": "https://flights.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for flights", "ground_truth_dsl": [ { "action": "navigate", "url": "https://flights.example.com" }, { "action": "fill_form", "fields": { "#search": "NYC to LA" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Nov 1" }, { "action": "select_option", "selector": "#filter2", "value": "Economy" } ], "variations": [ "Search flights for NYC to LA with filters", "Find NYC to LA in flights filtered by Nov 1 and Economy", "Look up NYC to LA in flights and filter" ], "keywords": [ "search", "filter", "flights", "nyc to la" ] }, { "id": "task_0425", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter flights", "description": "Search for NYC to LA and apply filters: Nov 1, Economy", "url_pattern": "https://flights.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for flights", "ground_truth_dsl": [ { "action": "navigate", "url": "https://flights.example.com" }, { "action": "fill_form", "fields": { "#search": "NYC to LA" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Nov 1" }, { "action": "select_option", "selector": "#filter2", "value": "Economy" } ], "variations": [ "Search flights for NYC to LA with filters", "Find NYC to LA in flights filtered by Nov 1 and Economy", "Look up NYC to LA in flights and filter" ], "keywords": [ "search", "filter", "flights", "nyc to la" ] }, { "id": "task_0426", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter flights", "description": "Search for NYC to LA and apply filters: Nov 1, Economy", "url_pattern": "https://flights.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for flights", "ground_truth_dsl": [ { "action": "navigate", "url": "https://flights.example.com" }, { "action": "fill_form", "fields": { "#search": "NYC to LA" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Nov 1" }, { "action": "select_option", "selector": "#filter2", "value": "Economy" } ], "variations": [ "Search flights for NYC to LA with filters", "Find NYC to LA in flights filtered by Nov 1 and Economy", "Look up NYC to LA in flights and filter" ], "keywords": [ "search", "filter", "flights", "nyc to la" ] }, { "id": "task_0427", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter flights", "description": "Search for NYC to LA and apply filters: Nov 1, Economy", "url_pattern": "https://flights.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for flights", "ground_truth_dsl": [ { "action": "navigate", "url": "https://flights.example.com" }, { "action": "fill_form", "fields": { "#search": "NYC to LA" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Nov 1" }, { "action": "select_option", "selector": "#filter2", "value": "Economy" } ], "variations": [ "Search flights for NYC to LA with filters", "Find NYC to LA in flights filtered by Nov 1 and Economy", "Look up NYC to LA in flights and filter" ], "keywords": [ "search", "filter", "flights", "nyc to la" ] }, { "id": "task_0428", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter flights", "description": "Search for NYC to LA and apply filters: Nov 1, Economy", "url_pattern": "https://flights.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for flights", "ground_truth_dsl": [ { "action": "navigate", "url": "https://flights.example.com" }, { "action": "fill_form", "fields": { "#search": "NYC to LA" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Nov 1" }, { "action": "select_option", "selector": "#filter2", "value": "Economy" } ], "variations": [ "Search flights for NYC to LA with filters", "Find NYC to LA in flights filtered by Nov 1 and Economy", "Look up NYC to LA in flights and filter" ], "keywords": [ "search", "filter", "flights", "nyc to la" ] }, { "id": "task_0429", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter flights", "description": "Search for NYC to LA and apply filters: Nov 1, Economy", "url_pattern": "https://flights.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for flights", "ground_truth_dsl": [ { "action": "navigate", "url": "https://flights.example.com" }, { "action": "fill_form", "fields": { "#search": "NYC to LA" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "Nov 1" }, { "action": "select_option", "selector": "#filter2", "value": "Economy" } ], "variations": [ "Search flights for NYC to LA with filters", "Find NYC to LA in flights filtered by Nov 1 and Economy", "Look up NYC to LA in flights and filter" ], "keywords": [ "search", "filter", "flights", "nyc to la" ] }, { "id": "task_0430", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter events", "description": "Search for concerts and apply filters: This weekend, Rock", "url_pattern": "https://events.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for events", "ground_truth_dsl": [ { "action": "navigate", "url": "https://events.example.com" }, { "action": "fill_form", "fields": { "#search": "concerts" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "This weekend" }, { "action": "select_option", "selector": "#filter2", "value": "Rock" } ], "variations": [ "Search events for concerts with filters", "Find concerts in events filtered by This weekend and Rock", "Look up concerts in events and filter" ], "keywords": [ "search", "filter", "events", "concerts" ] }, { "id": "task_0431", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter events", "description": "Search for concerts and apply filters: This weekend, Rock", "url_pattern": "https://events.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for events", "ground_truth_dsl": [ { "action": "navigate", "url": "https://events.example.com" }, { "action": "fill_form", "fields": { "#search": "concerts" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "This weekend" }, { "action": "select_option", "selector": "#filter2", "value": "Rock" } ], "variations": [ "Search events for concerts with filters", "Find concerts in events filtered by This weekend and Rock", "Look up concerts in events and filter" ], "keywords": [ "search", "filter", "events", "concerts" ] }, { "id": "task_0432", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter events", "description": "Search for concerts and apply filters: This weekend, Rock", "url_pattern": "https://events.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for events", "ground_truth_dsl": [ { "action": "navigate", "url": "https://events.example.com" }, { "action": "fill_form", "fields": { "#search": "concerts" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "This weekend" }, { "action": "select_option", "selector": "#filter2", "value": "Rock" } ], "variations": [ "Search events for concerts with filters", "Find concerts in events filtered by This weekend and Rock", "Look up concerts in events and filter" ], "keywords": [ "search", "filter", "events", "concerts" ] }, { "id": "task_0433", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter events", "description": "Search for concerts and apply filters: This weekend, Rock", "url_pattern": "https://events.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for events", "ground_truth_dsl": [ { "action": "navigate", "url": "https://events.example.com" }, { "action": "fill_form", "fields": { "#search": "concerts" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "This weekend" }, { "action": "select_option", "selector": "#filter2", "value": "Rock" } ], "variations": [ "Search events for concerts with filters", "Find concerts in events filtered by This weekend and Rock", "Look up concerts in events and filter" ], "keywords": [ "search", "filter", "events", "concerts" ] }, { "id": "task_0434", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter events", "description": "Search for concerts and apply filters: This weekend, Rock", "url_pattern": "https://events.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for events", "ground_truth_dsl": [ { "action": "navigate", "url": "https://events.example.com" }, { "action": "fill_form", "fields": { "#search": "concerts" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "This weekend" }, { "action": "select_option", "selector": "#filter2", "value": "Rock" } ], "variations": [ "Search events for concerts with filters", "Find concerts in events filtered by This weekend and Rock", "Look up concerts in events and filter" ], "keywords": [ "search", "filter", "events", "concerts" ] }, { "id": "task_0435", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter events", "description": "Search for concerts and apply filters: This weekend, Rock", "url_pattern": "https://events.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for events", "ground_truth_dsl": [ { "action": "navigate", "url": "https://events.example.com" }, { "action": "fill_form", "fields": { "#search": "concerts" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "This weekend" }, { "action": "select_option", "selector": "#filter2", "value": "Rock" } ], "variations": [ "Search events for concerts with filters", "Find concerts in events filtered by This weekend and Rock", "Look up concerts in events and filter" ], "keywords": [ "search", "filter", "events", "concerts" ] }, { "id": "task_0436", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter events", "description": "Search for concerts and apply filters: This weekend, Rock", "url_pattern": "https://events.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for events", "ground_truth_dsl": [ { "action": "navigate", "url": "https://events.example.com" }, { "action": "fill_form", "fields": { "#search": "concerts" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "This weekend" }, { "action": "select_option", "selector": "#filter2", "value": "Rock" } ], "variations": [ "Search events for concerts with filters", "Find concerts in events filtered by This weekend and Rock", "Look up concerts in events and filter" ], "keywords": [ "search", "filter", "events", "concerts" ] }, { "id": "task_0437", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter events", "description": "Search for concerts and apply filters: This weekend, Rock", "url_pattern": "https://events.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for events", "ground_truth_dsl": [ { "action": "navigate", "url": "https://events.example.com" }, { "action": "fill_form", "fields": { "#search": "concerts" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "This weekend" }, { "action": "select_option", "selector": "#filter2", "value": "Rock" } ], "variations": [ "Search events for concerts with filters", "Find concerts in events filtered by This weekend and Rock", "Look up concerts in events and filter" ], "keywords": [ "search", "filter", "events", "concerts" ] }, { "id": "task_0438", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter events", "description": "Search for concerts and apply filters: This weekend, Rock", "url_pattern": "https://events.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for events", "ground_truth_dsl": [ { "action": "navigate", "url": "https://events.example.com" }, { "action": "fill_form", "fields": { "#search": "concerts" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "This weekend" }, { "action": "select_option", "selector": "#filter2", "value": "Rock" } ], "variations": [ "Search events for concerts with filters", "Find concerts in events filtered by This weekend and Rock", "Look up concerts in events and filter" ], "keywords": [ "search", "filter", "events", "concerts" ] }, { "id": "task_0439", "category": "navigation", "subcategory": "search_filter", "difficulty": "medium", "title": "Search and filter events", "description": "Search for concerts and apply filters: This weekend, Rock", "url_pattern": "https://events.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option" ], "expected_operation_count": 8, "context": "Search with multiple filters for events", "ground_truth_dsl": [ { "action": "navigate", "url": "https://events.example.com" }, { "action": "fill_form", "fields": { "#search": "concerts" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".results" }, { "action": "select_option", "selector": "#filter1", "value": "This weekend" }, { "action": "select_option", "selector": "#filter2", "value": "Rock" } ], "variations": [ "Search events for concerts with filters", "Find concerts in events filtered by This weekend and Rock", "Look up concerts in events and filter" ], "keywords": [ "search", "filter", "events", "concerts" ] }, { "id": "task_0440", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 9 pages", "description": "Click through pagination to reach page 9", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 18, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 9, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 9 pages of results", "Navigate to page 9", "Click through 9 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0441", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 5 pages", "description": "Click through pagination to reach page 5", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 10, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 5, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 5 pages of results", "Navigate to page 5", "Click through 5 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0442", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 5 pages", "description": "Click through pagination to reach page 5", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 10, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 5, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 5 pages of results", "Navigate to page 5", "Click through 5 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0443", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 5 pages", "description": "Click through pagination to reach page 5", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 10, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 5, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 5 pages of results", "Navigate to page 5", "Click through 5 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0444", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 9 pages", "description": "Click through pagination to reach page 9", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 18, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 9, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 9 pages of results", "Navigate to page 9", "Click through 9 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0445", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 3 pages", "description": "Click through pagination to reach page 3", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 3, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 3 pages of results", "Navigate to page 3", "Click through 3 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0446", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 9 pages", "description": "Click through pagination to reach page 9", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 18, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 9, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 9 pages of results", "Navigate to page 9", "Click through 9 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0447", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 7 pages", "description": "Click through pagination to reach page 7", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 14, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 7, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 7 pages of results", "Navigate to page 7", "Click through 7 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0448", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 10 pages", "description": "Click through pagination to reach page 10", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 20, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 10, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 10 pages of results", "Navigate to page 10", "Click through 10 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0449", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 7 pages", "description": "Click through pagination to reach page 7", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 14, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 7, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 7 pages of results", "Navigate to page 7", "Click through 7 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0450", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 4 pages", "description": "Click through pagination to reach page 4", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 8, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 4, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 4 pages of results", "Navigate to page 4", "Click through 4 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0451", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 5 pages", "description": "Click through pagination to reach page 5", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 10, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 5, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 5 pages of results", "Navigate to page 5", "Click through 5 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0452", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 6 pages", "description": "Click through pagination to reach page 6", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 12, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 6, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 6 pages of results", "Navigate to page 6", "Click through 6 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0453", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 5 pages", "description": "Click through pagination to reach page 5", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 10, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 5, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 5 pages of results", "Navigate to page 5", "Click through 5 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0454", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 9 pages", "description": "Click through pagination to reach page 9", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 18, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 9, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 9 pages of results", "Navigate to page 9", "Click through 9 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0455", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 3 pages", "description": "Click through pagination to reach page 3", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 3, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 3 pages of results", "Navigate to page 3", "Click through 3 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0456", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 8 pages", "description": "Click through pagination to reach page 8", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 16, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 8, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 8 pages of results", "Navigate to page 8", "Click through 8 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0457", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 3 pages", "description": "Click through pagination to reach page 3", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 6, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 3, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 3 pages of results", "Navigate to page 3", "Click through 3 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0458", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 8 pages", "description": "Click through pagination to reach page 8", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 16, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 8, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 8 pages of results", "Navigate to page 8", "Click through 8 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0459", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 4 pages", "description": "Click through pagination to reach page 4", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 8, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 4, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 4 pages of results", "Navigate to page 4", "Click through 4 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0460", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 4 pages", "description": "Click through pagination to reach page 4", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 8, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 4, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 4 pages of results", "Navigate to page 4", "Click through 4 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0461", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 9 pages", "description": "Click through pagination to reach page 9", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 18, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 9, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 9 pages of results", "Navigate to page 9", "Click through 9 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0462", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 6 pages", "description": "Click through pagination to reach page 6", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 12, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 6, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 6 pages of results", "Navigate to page 6", "Click through 6 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0463", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 7 pages", "description": "Click through pagination to reach page 7", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 14, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 7, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 7 pages of results", "Navigate to page 7", "Click through 7 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0464", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 5 pages", "description": "Click through pagination to reach page 5", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 10, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 5, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 5 pages of results", "Navigate to page 5", "Click through 5 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0465", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 5 pages", "description": "Click through pagination to reach page 5", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 10, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 5, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 5 pages of results", "Navigate to page 5", "Click through 5 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0466", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 7 pages", "description": "Click through pagination to reach page 7", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 14, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 7, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 7 pages of results", "Navigate to page 7", "Click through 7 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0467", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 4 pages", "description": "Click through pagination to reach page 4", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 8, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 4, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 4 pages of results", "Navigate to page 4", "Click through 4 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0468", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 10 pages", "description": "Click through pagination to reach page 10", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 20, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 10, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 10 pages of results", "Navigate to page 10", "Click through 10 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0469", "category": "navigation", "subcategory": "pagination", "difficulty": "medium", "title": "Navigate through 6 pages", "description": "Click through pagination to reach page 6", "url_pattern": "https://example.com/results", "expected_actions": [ "navigate", "click", "wait_for_load" ], "expected_operation_count": 12, "context": "Multi-page navigation", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/results" }, { "action": "loop", "selector": ".next-page", "max_iterations": 6, "actions": [ { "action": "click", "selector": ".next-page" }, { "action": "wait_for_load", "selector": ".results" } ] } ], "variations": [ "Go through 6 pages of results", "Navigate to page 6", "Click through 6 pages" ], "keywords": [ "pagination", "navigate", "pages" ] }, { "id": "task_0470", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0471", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0472", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0473", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0474", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0475", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0476", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0477", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0478", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0479", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0480", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0481", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0482", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0483", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0484", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0485", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0486", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0487", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0488", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0489", "category": "navigation", "subcategory": "tabs", "difficulty": "simple", "title": "Open link in new tab and switch", "description": "Open a product in a new tab, extract info, then switch back", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "click", "switch_tab", "extract_data" ], "expected_operation_count": 6, "context": "Multi-tab workflow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com/products" }, { "action": "click", "selector": ".product-link[target='_blank']" }, { "action": "switch_tab", "target": "1" }, { "action": "extract_data", "selectors": { "price": ".product-price" } }, { "action": "switch_tab", "target": "0" } ], "variations": [ "Open in new tab and compare", "Switch tabs to view product", "Open link in new window" ], "keywords": [ "tab", "switch", "navigate", "new window" ] }, { "id": "task_0490", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0491", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0492", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0493", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0494", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0495", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0496", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0497", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0498", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0499", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0500", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0501", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0502", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0503", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0504", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0505", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0506", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0507", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0508", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0509", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0510", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0511", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0512", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0513", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0514", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0515", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0516", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0517", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0518", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0519", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0520", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0521", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0522", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0523", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0524", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0525", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0526", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0527", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0528", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0529", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0530", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0531", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0532", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0533", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0534", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0535", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0536", "category": "workflow", "subcategory": "e-commerce", "difficulty": "complex", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 30, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0537", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0538", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0539", "category": "workflow", "subcategory": "e-commerce", "difficulty": "medium", "title": "Complete purchase workflow", "description": "Search product, add to cart, checkout with shipping and payment", "url_pattern": "https://shop.example.com", "expected_actions": [ "navigate", "fill_form", "click", "select_option", "check_element" ], "expected_operation_count": 20, "context": "Full e-commerce purchase flow", "ground_truth_dsl": [ { "action": "navigate", "url": "https://shop.example.com" }, { "action": "fill_form", "fields": { "#search": "laptop" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".product" }, { "action": "click", "selector": ".product:first-child" }, { "action": "click", "selector": "#add-to-cart" }, { "action": "click", "selector": "#checkout" }, { "action": "fill_form", "fields": { "#shipping-name": "John Doe", "#shipping-address": "123 Main St" } }, { "action": "click", "selector": "#continue-to-payment" }, { "action": "fill_form", "fields": { "#card-number": "4111111111111111", "#expiry": "12/25" } }, { "action": "click", "selector": "#place-order" } ], "variations": [ "Buy product online", "Complete online purchase", "Shop and checkout" ], "keywords": [ "workflow", "purchase", "checkout", "e-commerce" ] }, { "id": "task_0540", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: search and archive", "description": "Search emails and search and archive", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: search and archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#search-and-archive" } ], "variations": [ "Manage emails: search and archive", "Email task: search and archive", "Process emails: search and archive" ], "keywords": [ "email", "workflow", "search-and-archive" ] }, { "id": "task_0541", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: search and archive", "description": "Search emails and search and archive", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: search and archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#search-and-archive" } ], "variations": [ "Manage emails: search and archive", "Email task: search and archive", "Process emails: search and archive" ], "keywords": [ "email", "workflow", "search-and-archive" ] }, { "id": "task_0542", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: search and archive", "description": "Search emails and search and archive", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: search and archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#search-and-archive" } ], "variations": [ "Manage emails: search and archive", "Email task: search and archive", "Process emails: search and archive" ], "keywords": [ "email", "workflow", "search-and-archive" ] }, { "id": "task_0543", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: search and archive", "description": "Search emails and search and archive", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: search and archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#search-and-archive" } ], "variations": [ "Manage emails: search and archive", "Email task: search and archive", "Process emails: search and archive" ], "keywords": [ "email", "workflow", "search-and-archive" ] }, { "id": "task_0544", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: search and archive", "description": "Search emails and search and archive", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: search and archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#search-and-archive" } ], "variations": [ "Manage emails: search and archive", "Email task: search and archive", "Process emails: search and archive" ], "keywords": [ "email", "workflow", "search-and-archive" ] }, { "id": "task_0545", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: search and archive", "description": "Search emails and search and archive", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: search and archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#search-and-archive" } ], "variations": [ "Manage emails: search and archive", "Email task: search and archive", "Process emails: search and archive" ], "keywords": [ "email", "workflow", "search-and-archive" ] }, { "id": "task_0546", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: search and archive", "description": "Search emails and search and archive", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: search and archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#search-and-archive" } ], "variations": [ "Manage emails: search and archive", "Email task: search and archive", "Process emails: search and archive" ], "keywords": [ "email", "workflow", "search-and-archive" ] }, { "id": "task_0547", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: filter and delete", "description": "Search emails and filter and delete", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: filter and delete", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#filter-and-delete" } ], "variations": [ "Manage emails: filter and delete", "Email task: filter and delete", "Process emails: filter and delete" ], "keywords": [ "email", "workflow", "filter-and-delete" ] }, { "id": "task_0548", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: filter and delete", "description": "Search emails and filter and delete", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: filter and delete", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#filter-and-delete" } ], "variations": [ "Manage emails: filter and delete", "Email task: filter and delete", "Process emails: filter and delete" ], "keywords": [ "email", "workflow", "filter-and-delete" ] }, { "id": "task_0549", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: filter and delete", "description": "Search emails and filter and delete", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: filter and delete", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#filter-and-delete" } ], "variations": [ "Manage emails: filter and delete", "Email task: filter and delete", "Process emails: filter and delete" ], "keywords": [ "email", "workflow", "filter-and-delete" ] }, { "id": "task_0550", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: filter and delete", "description": "Search emails and filter and delete", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: filter and delete", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#filter-and-delete" } ], "variations": [ "Manage emails: filter and delete", "Email task: filter and delete", "Process emails: filter and delete" ], "keywords": [ "email", "workflow", "filter-and-delete" ] }, { "id": "task_0551", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: filter and delete", "description": "Search emails and filter and delete", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: filter and delete", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#filter-and-delete" } ], "variations": [ "Manage emails: filter and delete", "Email task: filter and delete", "Process emails: filter and delete" ], "keywords": [ "email", "workflow", "filter-and-delete" ] }, { "id": "task_0552", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: filter and delete", "description": "Search emails and filter and delete", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: filter and delete", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#filter-and-delete" } ], "variations": [ "Manage emails: filter and delete", "Email task: filter and delete", "Process emails: filter and delete" ], "keywords": [ "email", "workflow", "filter-and-delete" ] }, { "id": "task_0553", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: filter and delete", "description": "Search emails and filter and delete", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: filter and delete", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#filter-and-delete" } ], "variations": [ "Manage emails: filter and delete", "Email task: filter and delete", "Process emails: filter and delete" ], "keywords": [ "email", "workflow", "filter-and-delete" ] }, { "id": "task_0554", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: move to folder", "description": "Search emails and move to folder", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: move to folder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#move-to-folder" } ], "variations": [ "Manage emails: move to folder", "Email task: move to folder", "Process emails: move to folder" ], "keywords": [ "email", "workflow", "move-to-folder" ] }, { "id": "task_0555", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: move to folder", "description": "Search emails and move to folder", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: move to folder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#move-to-folder" } ], "variations": [ "Manage emails: move to folder", "Email task: move to folder", "Process emails: move to folder" ], "keywords": [ "email", "workflow", "move-to-folder" ] }, { "id": "task_0556", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: move to folder", "description": "Search emails and move to folder", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: move to folder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#move-to-folder" } ], "variations": [ "Manage emails: move to folder", "Email task: move to folder", "Process emails: move to folder" ], "keywords": [ "email", "workflow", "move-to-folder" ] }, { "id": "task_0557", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: move to folder", "description": "Search emails and move to folder", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: move to folder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#move-to-folder" } ], "variations": [ "Manage emails: move to folder", "Email task: move to folder", "Process emails: move to folder" ], "keywords": [ "email", "workflow", "move-to-folder" ] }, { "id": "task_0558", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: move to folder", "description": "Search emails and move to folder", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: move to folder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#move-to-folder" } ], "variations": [ "Manage emails: move to folder", "Email task: move to folder", "Process emails: move to folder" ], "keywords": [ "email", "workflow", "move-to-folder" ] }, { "id": "task_0559", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: move to folder", "description": "Search emails and move to folder", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: move to folder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#move-to-folder" } ], "variations": [ "Manage emails: move to folder", "Email task: move to folder", "Process emails: move to folder" ], "keywords": [ "email", "workflow", "move-to-folder" ] }, { "id": "task_0560", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: move to folder", "description": "Search emails and move to folder", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: move to folder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#move-to-folder" } ], "variations": [ "Manage emails: move to folder", "Email task: move to folder", "Process emails: move to folder" ], "keywords": [ "email", "workflow", "move-to-folder" ] }, { "id": "task_0561", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: mark as read", "description": "Search emails and mark as read", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: mark as read", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#mark-as-read" } ], "variations": [ "Manage emails: mark as read", "Email task: mark as read", "Process emails: mark as read" ], "keywords": [ "email", "workflow", "mark-as-read" ] }, { "id": "task_0562", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: mark as read", "description": "Search emails and mark as read", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: mark as read", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#mark-as-read" } ], "variations": [ "Manage emails: mark as read", "Email task: mark as read", "Process emails: mark as read" ], "keywords": [ "email", "workflow", "mark-as-read" ] }, { "id": "task_0563", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: mark as read", "description": "Search emails and mark as read", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: mark as read", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#mark-as-read" } ], "variations": [ "Manage emails: mark as read", "Email task: mark as read", "Process emails: mark as read" ], "keywords": [ "email", "workflow", "mark-as-read" ] }, { "id": "task_0564", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: mark as read", "description": "Search emails and mark as read", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: mark as read", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#mark-as-read" } ], "variations": [ "Manage emails: mark as read", "Email task: mark as read", "Process emails: mark as read" ], "keywords": [ "email", "workflow", "mark-as-read" ] }, { "id": "task_0565", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: mark as read", "description": "Search emails and mark as read", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: mark as read", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#mark-as-read" } ], "variations": [ "Manage emails: mark as read", "Email task: mark as read", "Process emails: mark as read" ], "keywords": [ "email", "workflow", "mark-as-read" ] }, { "id": "task_0566", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: mark as read", "description": "Search emails and mark as read", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: mark as read", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#mark-as-read" } ], "variations": [ "Manage emails: mark as read", "Email task: mark as read", "Process emails: mark as read" ], "keywords": [ "email", "workflow", "mark-as-read" ] }, { "id": "task_0567", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: mark as read", "description": "Search emails and mark as read", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: mark as read", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#mark-as-read" } ], "variations": [ "Manage emails: mark as read", "Email task: mark as read", "Process emails: mark as read" ], "keywords": [ "email", "workflow", "mark-as-read" ] }, { "id": "task_0568", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: forward to someone", "description": "Search emails and forward to someone", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: forward to someone", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#forward-to-someone" } ], "variations": [ "Manage emails: forward to someone", "Email task: forward to someone", "Process emails: forward to someone" ], "keywords": [ "email", "workflow", "forward-to-someone" ] }, { "id": "task_0569", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: forward to someone", "description": "Search emails and forward to someone", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: forward to someone", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#forward-to-someone" } ], "variations": [ "Manage emails: forward to someone", "Email task: forward to someone", "Process emails: forward to someone" ], "keywords": [ "email", "workflow", "forward-to-someone" ] }, { "id": "task_0570", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: forward to someone", "description": "Search emails and forward to someone", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: forward to someone", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#forward-to-someone" } ], "variations": [ "Manage emails: forward to someone", "Email task: forward to someone", "Process emails: forward to someone" ], "keywords": [ "email", "workflow", "forward-to-someone" ] }, { "id": "task_0571", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: forward to someone", "description": "Search emails and forward to someone", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: forward to someone", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#forward-to-someone" } ], "variations": [ "Manage emails: forward to someone", "Email task: forward to someone", "Process emails: forward to someone" ], "keywords": [ "email", "workflow", "forward-to-someone" ] }, { "id": "task_0572", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: forward to someone", "description": "Search emails and forward to someone", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: forward to someone", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#forward-to-someone" } ], "variations": [ "Manage emails: forward to someone", "Email task: forward to someone", "Process emails: forward to someone" ], "keywords": [ "email", "workflow", "forward-to-someone" ] }, { "id": "task_0573", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: forward to someone", "description": "Search emails and forward to someone", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: forward to someone", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#forward-to-someone" } ], "variations": [ "Manage emails: forward to someone", "Email task: forward to someone", "Process emails: forward to someone" ], "keywords": [ "email", "workflow", "forward-to-someone" ] }, { "id": "task_0574", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: forward to someone", "description": "Search emails and forward to someone", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: forward to someone", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#forward-to-someone" } ], "variations": [ "Manage emails: forward to someone", "Email task: forward to someone", "Process emails: forward to someone" ], "keywords": [ "email", "workflow", "forward-to-someone" ] }, { "id": "task_0575", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: reply to sender", "description": "Search emails and reply to sender", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: reply to sender", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#reply-to-sender" } ], "variations": [ "Manage emails: reply to sender", "Email task: reply to sender", "Process emails: reply to sender" ], "keywords": [ "email", "workflow", "reply-to-sender" ] }, { "id": "task_0576", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: reply to sender", "description": "Search emails and reply to sender", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: reply to sender", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#reply-to-sender" } ], "variations": [ "Manage emails: reply to sender", "Email task: reply to sender", "Process emails: reply to sender" ], "keywords": [ "email", "workflow", "reply-to-sender" ] }, { "id": "task_0577", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: reply to sender", "description": "Search emails and reply to sender", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: reply to sender", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#reply-to-sender" } ], "variations": [ "Manage emails: reply to sender", "Email task: reply to sender", "Process emails: reply to sender" ], "keywords": [ "email", "workflow", "reply-to-sender" ] }, { "id": "task_0578", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: reply to sender", "description": "Search emails and reply to sender", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: reply to sender", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#reply-to-sender" } ], "variations": [ "Manage emails: reply to sender", "Email task: reply to sender", "Process emails: reply to sender" ], "keywords": [ "email", "workflow", "reply-to-sender" ] }, { "id": "task_0579", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: reply to sender", "description": "Search emails and reply to sender", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: reply to sender", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#reply-to-sender" } ], "variations": [ "Manage emails: reply to sender", "Email task: reply to sender", "Process emails: reply to sender" ], "keywords": [ "email", "workflow", "reply-to-sender" ] }, { "id": "task_0580", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: reply to sender", "description": "Search emails and reply to sender", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: reply to sender", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#reply-to-sender" } ], "variations": [ "Manage emails: reply to sender", "Email task: reply to sender", "Process emails: reply to sender" ], "keywords": [ "email", "workflow", "reply-to-sender" ] }, { "id": "task_0581", "category": "workflow", "subcategory": "email", "difficulty": "medium", "title": "Email workflow: reply to sender", "description": "Search emails and reply to sender", "url_pattern": "https://mail.example.com", "expected_actions": [ "navigate", "fill_form", "click", "loop" ], "expected_operation_count": 12, "context": "Email management: reply to sender", "ground_truth_dsl": [ { "action": "navigate", "url": "https://mail.example.com" }, { "action": "fill_form", "fields": { "#search": "from:boss@company.com" } }, { "action": "click", "selector": "#search-button" }, { "action": "wait_for_load", "selector": ".email-list" }, { "action": "click", "selector": ".select-all" }, { "action": "click", "selector": "#reply-to-sender" } ], "variations": [ "Manage emails: reply to sender", "Email task: reply to sender", "Process emails: reply to sender" ], "keywords": [ "email", "workflow", "reply-to-sender" ] }, { "id": "task_0582", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Add new lead", "description": "Add new lead in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "CRM workflow: Add new lead", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-add-new-lead" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Add new lead", "Perform Add new lead in CRM", "Complete Add new lead" ], "keywords": [ "crm", "workflow", "add new lead" ] }, { "id": "task_0583", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Add new lead", "description": "Add new lead in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "CRM workflow: Add new lead", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-add-new-lead" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Add new lead", "Perform Add new lead in CRM", "Complete Add new lead" ], "keywords": [ "crm", "workflow", "add new lead" ] }, { "id": "task_0584", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Add new lead", "description": "Add new lead in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "CRM workflow: Add new lead", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-add-new-lead" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Add new lead", "Perform Add new lead in CRM", "Complete Add new lead" ], "keywords": [ "crm", "workflow", "add new lead" ] }, { "id": "task_0585", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Add new lead", "description": "Add new lead in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "CRM workflow: Add new lead", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-add-new-lead" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Add new lead", "Perform Add new lead in CRM", "Complete Add new lead" ], "keywords": [ "crm", "workflow", "add new lead" ] }, { "id": "task_0586", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Add new lead", "description": "Add new lead in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "CRM workflow: Add new lead", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-add-new-lead" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Add new lead", "Perform Add new lead in CRM", "Complete Add new lead" ], "keywords": [ "crm", "workflow", "add new lead" ] }, { "id": "task_0587", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Add new lead", "description": "Add new lead in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "CRM workflow: Add new lead", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-add-new-lead" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Add new lead", "Perform Add new lead in CRM", "Complete Add new lead" ], "keywords": [ "crm", "workflow", "add new lead" ] }, { "id": "task_0588", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Add new lead", "description": "Add new lead in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "CRM workflow: Add new lead", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-add-new-lead" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Add new lead", "Perform Add new lead in CRM", "Complete Add new lead" ], "keywords": [ "crm", "workflow", "add new lead" ] }, { "id": "task_0589", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Update contact info", "description": "Update contact info in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "CRM workflow: Update contact info", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-update-contact-info" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Update contact info", "Perform Update contact info in CRM", "Complete Update contact info" ], "keywords": [ "crm", "workflow", "update contact info" ] }, { "id": "task_0590", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Update contact info", "description": "Update contact info in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "CRM workflow: Update contact info", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-update-contact-info" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Update contact info", "Perform Update contact info in CRM", "Complete Update contact info" ], "keywords": [ "crm", "workflow", "update contact info" ] }, { "id": "task_0591", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Update contact info", "description": "Update contact info in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "CRM workflow: Update contact info", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-update-contact-info" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Update contact info", "Perform Update contact info in CRM", "Complete Update contact info" ], "keywords": [ "crm", "workflow", "update contact info" ] }, { "id": "task_0592", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Update contact info", "description": "Update contact info in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "CRM workflow: Update contact info", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-update-contact-info" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Update contact info", "Perform Update contact info in CRM", "Complete Update contact info" ], "keywords": [ "crm", "workflow", "update contact info" ] }, { "id": "task_0593", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Update contact info", "description": "Update contact info in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "CRM workflow: Update contact info", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-update-contact-info" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Update contact info", "Perform Update contact info in CRM", "Complete Update contact info" ], "keywords": [ "crm", "workflow", "update contact info" ] }, { "id": "task_0594", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Update contact info", "description": "Update contact info in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "CRM workflow: Update contact info", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-update-contact-info" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Update contact info", "Perform Update contact info in CRM", "Complete Update contact info" ], "keywords": [ "crm", "workflow", "update contact info" ] }, { "id": "task_0595", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Update contact info", "description": "Update contact info in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 10, "context": "CRM workflow: Update contact info", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-update-contact-info" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Update contact info", "Perform Update contact info in CRM", "Complete Update contact info" ], "keywords": [ "crm", "workflow", "update contact info" ] }, { "id": "task_0596", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Create opportunity", "description": "Create opportunity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 18, "context": "CRM workflow: Create opportunity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-create-opportunity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Create opportunity", "Perform Create opportunity in CRM", "Complete Create opportunity" ], "keywords": [ "crm", "workflow", "create opportunity" ] }, { "id": "task_0597", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Create opportunity", "description": "Create opportunity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 18, "context": "CRM workflow: Create opportunity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-create-opportunity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Create opportunity", "Perform Create opportunity in CRM", "Complete Create opportunity" ], "keywords": [ "crm", "workflow", "create opportunity" ] }, { "id": "task_0598", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Create opportunity", "description": "Create opportunity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 18, "context": "CRM workflow: Create opportunity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-create-opportunity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Create opportunity", "Perform Create opportunity in CRM", "Complete Create opportunity" ], "keywords": [ "crm", "workflow", "create opportunity" ] }, { "id": "task_0599", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Create opportunity", "description": "Create opportunity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 18, "context": "CRM workflow: Create opportunity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-create-opportunity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Create opportunity", "Perform Create opportunity in CRM", "Complete Create opportunity" ], "keywords": [ "crm", "workflow", "create opportunity" ] }, { "id": "task_0600", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Create opportunity", "description": "Create opportunity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 18, "context": "CRM workflow: Create opportunity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-create-opportunity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Create opportunity", "Perform Create opportunity in CRM", "Complete Create opportunity" ], "keywords": [ "crm", "workflow", "create opportunity" ] }, { "id": "task_0601", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Create opportunity", "description": "Create opportunity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 18, "context": "CRM workflow: Create opportunity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-create-opportunity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Create opportunity", "Perform Create opportunity in CRM", "Complete Create opportunity" ], "keywords": [ "crm", "workflow", "create opportunity" ] }, { "id": "task_0602", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Create opportunity", "description": "Create opportunity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 18, "context": "CRM workflow: Create opportunity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-create-opportunity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Create opportunity", "Perform Create opportunity in CRM", "Complete Create opportunity" ], "keywords": [ "crm", "workflow", "create opportunity" ] }, { "id": "task_0603", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Log activity", "description": "Log activity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 8, "context": "CRM workflow: Log activity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-log-activity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Log activity", "Perform Log activity in CRM", "Complete Log activity" ], "keywords": [ "crm", "workflow", "log activity" ] }, { "id": "task_0604", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Log activity", "description": "Log activity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 8, "context": "CRM workflow: Log activity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-log-activity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Log activity", "Perform Log activity in CRM", "Complete Log activity" ], "keywords": [ "crm", "workflow", "log activity" ] }, { "id": "task_0605", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Log activity", "description": "Log activity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 8, "context": "CRM workflow: Log activity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-log-activity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Log activity", "Perform Log activity in CRM", "Complete Log activity" ], "keywords": [ "crm", "workflow", "log activity" ] }, { "id": "task_0606", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Log activity", "description": "Log activity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 8, "context": "CRM workflow: Log activity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-log-activity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Log activity", "Perform Log activity in CRM", "Complete Log activity" ], "keywords": [ "crm", "workflow", "log activity" ] }, { "id": "task_0607", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Log activity", "description": "Log activity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 8, "context": "CRM workflow: Log activity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-log-activity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Log activity", "Perform Log activity in CRM", "Complete Log activity" ], "keywords": [ "crm", "workflow", "log activity" ] }, { "id": "task_0608", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Log activity", "description": "Log activity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 8, "context": "CRM workflow: Log activity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-log-activity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Log activity", "Perform Log activity in CRM", "Complete Log activity" ], "keywords": [ "crm", "workflow", "log activity" ] }, { "id": "task_0609", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Log activity", "description": "Log activity in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 8, "context": "CRM workflow: Log activity", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-log-activity" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Log activity", "Perform Log activity in CRM", "Complete Log activity" ], "keywords": [ "crm", "workflow", "log activity" ] }, { "id": "task_0610", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Send email campaign", "description": "Send email campaign in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 20, "context": "CRM workflow: Send email campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-send-email-campaign" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Send email campaign", "Perform Send email campaign in CRM", "Complete Send email campaign" ], "keywords": [ "crm", "workflow", "send email campaign" ] }, { "id": "task_0611", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Send email campaign", "description": "Send email campaign in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 20, "context": "CRM workflow: Send email campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-send-email-campaign" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Send email campaign", "Perform Send email campaign in CRM", "Complete Send email campaign" ], "keywords": [ "crm", "workflow", "send email campaign" ] }, { "id": "task_0612", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Send email campaign", "description": "Send email campaign in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 20, "context": "CRM workflow: Send email campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-send-email-campaign" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Send email campaign", "Perform Send email campaign in CRM", "Complete Send email campaign" ], "keywords": [ "crm", "workflow", "send email campaign" ] }, { "id": "task_0613", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Send email campaign", "description": "Send email campaign in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 20, "context": "CRM workflow: Send email campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-send-email-campaign" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Send email campaign", "Perform Send email campaign in CRM", "Complete Send email campaign" ], "keywords": [ "crm", "workflow", "send email campaign" ] }, { "id": "task_0614", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Send email campaign", "description": "Send email campaign in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 20, "context": "CRM workflow: Send email campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-send-email-campaign" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Send email campaign", "Perform Send email campaign in CRM", "Complete Send email campaign" ], "keywords": [ "crm", "workflow", "send email campaign" ] }, { "id": "task_0615", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Send email campaign", "description": "Send email campaign in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 20, "context": "CRM workflow: Send email campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-send-email-campaign" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Send email campaign", "Perform Send email campaign in CRM", "Complete Send email campaign" ], "keywords": [ "crm", "workflow", "send email campaign" ] }, { "id": "task_0616", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Send email campaign", "description": "Send email campaign in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 20, "context": "CRM workflow: Send email campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-send-email-campaign" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Send email campaign", "Perform Send email campaign in CRM", "Complete Send email campaign" ], "keywords": [ "crm", "workflow", "send email campaign" ] }, { "id": "task_0617", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Generate report", "description": "Generate report in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 12, "context": "CRM workflow: Generate report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-generate-report" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Generate report", "Perform Generate report in CRM", "Complete Generate report" ], "keywords": [ "crm", "workflow", "generate report" ] }, { "id": "task_0618", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Generate report", "description": "Generate report in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 12, "context": "CRM workflow: Generate report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-generate-report" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Generate report", "Perform Generate report in CRM", "Complete Generate report" ], "keywords": [ "crm", "workflow", "generate report" ] }, { "id": "task_0619", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Generate report", "description": "Generate report in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 12, "context": "CRM workflow: Generate report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-generate-report" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Generate report", "Perform Generate report in CRM", "Complete Generate report" ], "keywords": [ "crm", "workflow", "generate report" ] }, { "id": "task_0620", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Generate report", "description": "Generate report in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 12, "context": "CRM workflow: Generate report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-generate-report" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Generate report", "Perform Generate report in CRM", "Complete Generate report" ], "keywords": [ "crm", "workflow", "generate report" ] }, { "id": "task_0621", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Generate report", "description": "Generate report in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 12, "context": "CRM workflow: Generate report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-generate-report" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Generate report", "Perform Generate report in CRM", "Complete Generate report" ], "keywords": [ "crm", "workflow", "generate report" ] }, { "id": "task_0622", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Generate report", "description": "Generate report in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 12, "context": "CRM workflow: Generate report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-generate-report" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Generate report", "Perform Generate report in CRM", "Complete Generate report" ], "keywords": [ "crm", "workflow", "generate report" ] }, { "id": "task_0623", "category": "workflow", "subcategory": "crm", "difficulty": "medium", "title": "CRM: Generate report", "description": "Generate report in CRM system", "url_pattern": "https://crm.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 12, "context": "CRM workflow: Generate report", "ground_truth_dsl": [ { "action": "navigate", "url": "https://crm.example.com" }, { "action": "click", "selector": "#new-generate-report" }, { "action": "fill_form", "fields": { "#name": "John Doe", "#email": "john@example.com" } }, { "action": "click", "selector": "#save" } ], "variations": [ "CRM task: Generate report", "Perform Generate report in CRM", "Complete Generate report" ], "keywords": [ "crm", "workflow", "generate report" ] }, { "id": "task_0624", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Schedule posts for next week", "description": "Complete social media workflow: Schedule posts for next week", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Schedule posts for next week", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Schedule posts for next week", "Manage social: Schedule posts for next week", "Complete: Schedule posts for next week" ], "keywords": [ "social media", "workflow", "schedule posts for next week" ] }, { "id": "task_0625", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Schedule posts for next week", "description": "Complete social media workflow: Schedule posts for next week", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Schedule posts for next week", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Schedule posts for next week", "Manage social: Schedule posts for next week", "Complete: Schedule posts for next week" ], "keywords": [ "social media", "workflow", "schedule posts for next week" ] }, { "id": "task_0626", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Schedule posts for next week", "description": "Complete social media workflow: Schedule posts for next week", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Schedule posts for next week", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Schedule posts for next week", "Manage social: Schedule posts for next week", "Complete: Schedule posts for next week" ], "keywords": [ "social media", "workflow", "schedule posts for next week" ] }, { "id": "task_0627", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Schedule posts for next week", "description": "Complete social media workflow: Schedule posts for next week", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Schedule posts for next week", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Schedule posts for next week", "Manage social: Schedule posts for next week", "Complete: Schedule posts for next week" ], "keywords": [ "social media", "workflow", "schedule posts for next week" ] }, { "id": "task_0628", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Schedule posts for next week", "description": "Complete social media workflow: Schedule posts for next week", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Schedule posts for next week", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Schedule posts for next week", "Manage social: Schedule posts for next week", "Complete: Schedule posts for next week" ], "keywords": [ "social media", "workflow", "schedule posts for next week" ] }, { "id": "task_0629", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Respond to comments", "description": "Complete social media workflow: Respond to comments", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Respond to comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Respond to comments", "Manage social: Respond to comments", "Complete: Respond to comments" ], "keywords": [ "social media", "workflow", "respond to comments" ] }, { "id": "task_0630", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Respond to comments", "description": "Complete social media workflow: Respond to comments", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Respond to comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Respond to comments", "Manage social: Respond to comments", "Complete: Respond to comments" ], "keywords": [ "social media", "workflow", "respond to comments" ] }, { "id": "task_0631", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Respond to comments", "description": "Complete social media workflow: Respond to comments", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Respond to comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Respond to comments", "Manage social: Respond to comments", "Complete: Respond to comments" ], "keywords": [ "social media", "workflow", "respond to comments" ] }, { "id": "task_0632", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Respond to comments", "description": "Complete social media workflow: Respond to comments", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Respond to comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Respond to comments", "Manage social: Respond to comments", "Complete: Respond to comments" ], "keywords": [ "social media", "workflow", "respond to comments" ] }, { "id": "task_0633", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Respond to comments", "description": "Complete social media workflow: Respond to comments", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Respond to comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Respond to comments", "Manage social: Respond to comments", "Complete: Respond to comments" ], "keywords": [ "social media", "workflow", "respond to comments" ] }, { "id": "task_0634", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Analyze engagement metrics", "description": "Complete social media workflow: Analyze engagement metrics", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Analyze engagement metrics", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Analyze engagement metrics", "Manage social: Analyze engagement metrics", "Complete: Analyze engagement metrics" ], "keywords": [ "social media", "workflow", "analyze engagement metrics" ] }, { "id": "task_0635", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Analyze engagement metrics", "description": "Complete social media workflow: Analyze engagement metrics", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Analyze engagement metrics", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Analyze engagement metrics", "Manage social: Analyze engagement metrics", "Complete: Analyze engagement metrics" ], "keywords": [ "social media", "workflow", "analyze engagement metrics" ] }, { "id": "task_0636", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Analyze engagement metrics", "description": "Complete social media workflow: Analyze engagement metrics", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Analyze engagement metrics", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Analyze engagement metrics", "Manage social: Analyze engagement metrics", "Complete: Analyze engagement metrics" ], "keywords": [ "social media", "workflow", "analyze engagement metrics" ] }, { "id": "task_0637", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Analyze engagement metrics", "description": "Complete social media workflow: Analyze engagement metrics", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Analyze engagement metrics", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Analyze engagement metrics", "Manage social: Analyze engagement metrics", "Complete: Analyze engagement metrics" ], "keywords": [ "social media", "workflow", "analyze engagement metrics" ] }, { "id": "task_0638", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Analyze engagement metrics", "description": "Complete social media workflow: Analyze engagement metrics", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Analyze engagement metrics", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Analyze engagement metrics", "Manage social: Analyze engagement metrics", "Complete: Analyze engagement metrics" ], "keywords": [ "social media", "workflow", "analyze engagement metrics" ] }, { "id": "task_0639", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Create content calendar", "description": "Complete social media workflow: Create content calendar", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Create content calendar", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Create content calendar", "Manage social: Create content calendar", "Complete: Create content calendar" ], "keywords": [ "social media", "workflow", "create content calendar" ] }, { "id": "task_0640", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Create content calendar", "description": "Complete social media workflow: Create content calendar", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Create content calendar", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Create content calendar", "Manage social: Create content calendar", "Complete: Create content calendar" ], "keywords": [ "social media", "workflow", "create content calendar" ] }, { "id": "task_0641", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Create content calendar", "description": "Complete social media workflow: Create content calendar", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Create content calendar", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Create content calendar", "Manage social: Create content calendar", "Complete: Create content calendar" ], "keywords": [ "social media", "workflow", "create content calendar" ] }, { "id": "task_0642", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Create content calendar", "description": "Complete social media workflow: Create content calendar", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Create content calendar", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Create content calendar", "Manage social: Create content calendar", "Complete: Create content calendar" ], "keywords": [ "social media", "workflow", "create content calendar" ] }, { "id": "task_0643", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Create content calendar", "description": "Complete social media workflow: Create content calendar", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Create content calendar", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Create content calendar", "Manage social: Create content calendar", "Complete: Create content calendar" ], "keywords": [ "social media", "workflow", "create content calendar" ] }, { "id": "task_0644", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Monitor brand mentions", "description": "Complete social media workflow: Monitor brand mentions", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Monitor brand mentions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Monitor brand mentions", "Manage social: Monitor brand mentions", "Complete: Monitor brand mentions" ], "keywords": [ "social media", "workflow", "monitor brand mentions" ] }, { "id": "task_0645", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Monitor brand mentions", "description": "Complete social media workflow: Monitor brand mentions", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Monitor brand mentions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Monitor brand mentions", "Manage social: Monitor brand mentions", "Complete: Monitor brand mentions" ], "keywords": [ "social media", "workflow", "monitor brand mentions" ] }, { "id": "task_0646", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Monitor brand mentions", "description": "Complete social media workflow: Monitor brand mentions", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Monitor brand mentions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Monitor brand mentions", "Manage social: Monitor brand mentions", "Complete: Monitor brand mentions" ], "keywords": [ "social media", "workflow", "monitor brand mentions" ] }, { "id": "task_0647", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Monitor brand mentions", "description": "Complete social media workflow: Monitor brand mentions", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Monitor brand mentions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Monitor brand mentions", "Manage social: Monitor brand mentions", "Complete: Monitor brand mentions" ], "keywords": [ "social media", "workflow", "monitor brand mentions" ] }, { "id": "task_0648", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Monitor brand mentions", "description": "Complete social media workflow: Monitor brand mentions", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Monitor brand mentions", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Monitor brand mentions", "Manage social: Monitor brand mentions", "Complete: Monitor brand mentions" ], "keywords": [ "social media", "workflow", "monitor brand mentions" ] }, { "id": "task_0649", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Run ad campaign", "description": "Complete social media workflow: Run ad campaign", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Run ad campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Run ad campaign", "Manage social: Run ad campaign", "Complete: Run ad campaign" ], "keywords": [ "social media", "workflow", "run ad campaign" ] }, { "id": "task_0650", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Run ad campaign", "description": "Complete social media workflow: Run ad campaign", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Run ad campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Run ad campaign", "Manage social: Run ad campaign", "Complete: Run ad campaign" ], "keywords": [ "social media", "workflow", "run ad campaign" ] }, { "id": "task_0651", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Run ad campaign", "description": "Complete social media workflow: Run ad campaign", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Run ad campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Run ad campaign", "Manage social: Run ad campaign", "Complete: Run ad campaign" ], "keywords": [ "social media", "workflow", "run ad campaign" ] }, { "id": "task_0652", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Run ad campaign", "description": "Complete social media workflow: Run ad campaign", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Run ad campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Run ad campaign", "Manage social: Run ad campaign", "Complete: Run ad campaign" ], "keywords": [ "social media", "workflow", "run ad campaign" ] }, { "id": "task_0653", "category": "workflow", "subcategory": "social_media", "difficulty": "complex", "title": "Social media: Run ad campaign", "description": "Complete social media workflow: Run ad campaign", "url_pattern": "https://social-manager.example.com", "expected_actions": [ "navigate", "click", "fill_form", "select_option" ], "expected_operation_count": 15, "context": "Social media management: Run ad campaign", "ground_truth_dsl": [ { "action": "navigate", "url": "https://social-manager.example.com" }, { "action": "click", "selector": "#create-post" }, { "action": "fill_form", "fields": { "#content": "Post content here" } }, { "action": "select_option", "selector": "#platform", "value": "Twitter" }, { "action": "click", "selector": "#schedule" } ], "variations": [ "Social media task: Run ad campaign", "Manage social: Run ad campaign", "Complete: Run ad campaign" ], "keywords": [ "social media", "workflow", "run ad campaign" ] }, { "id": "task_0654", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Publish blog post", "description": "Publish blog post in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 12, "context": "Content management: Publish blog post", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-publish" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Publish blog post", "Content management: Publish blog post", "Complete Publish blog post" ], "keywords": [ "cms", "content", "publish blog post" ] }, { "id": "task_0655", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Publish blog post", "description": "Publish blog post in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 12, "context": "Content management: Publish blog post", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-publish" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Publish blog post", "Content management: Publish blog post", "Complete Publish blog post" ], "keywords": [ "cms", "content", "publish blog post" ] }, { "id": "task_0656", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Publish blog post", "description": "Publish blog post in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 12, "context": "Content management: Publish blog post", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-publish" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Publish blog post", "Content management: Publish blog post", "Complete Publish blog post" ], "keywords": [ "cms", "content", "publish blog post" ] }, { "id": "task_0657", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Publish blog post", "description": "Publish blog post in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 12, "context": "Content management: Publish blog post", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-publish" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Publish blog post", "Content management: Publish blog post", "Complete Publish blog post" ], "keywords": [ "cms", "content", "publish blog post" ] }, { "id": "task_0658", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Publish blog post", "description": "Publish blog post in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 12, "context": "Content management: Publish blog post", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-publish" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Publish blog post", "Content management: Publish blog post", "Complete Publish blog post" ], "keywords": [ "cms", "content", "publish blog post" ] }, { "id": "task_0659", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Publish blog post", "description": "Publish blog post in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 12, "context": "Content management: Publish blog post", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-publish" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Publish blog post", "Content management: Publish blog post", "Complete Publish blog post" ], "keywords": [ "cms", "content", "publish blog post" ] }, { "id": "task_0660", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Publish blog post", "description": "Publish blog post in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 12, "context": "Content management: Publish blog post", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-publish" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Publish blog post", "Content management: Publish blog post", "Complete Publish blog post" ], "keywords": [ "cms", "content", "publish blog post" ] }, { "id": "task_0661", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Update page content", "description": "Update page content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Update page content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-update" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Update page content", "Content management: Update page content", "Complete Update page content" ], "keywords": [ "cms", "content", "update page content" ] }, { "id": "task_0662", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Update page content", "description": "Update page content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Update page content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-update" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Update page content", "Content management: Update page content", "Complete Update page content" ], "keywords": [ "cms", "content", "update page content" ] }, { "id": "task_0663", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Update page content", "description": "Update page content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Update page content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-update" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Update page content", "Content management: Update page content", "Complete Update page content" ], "keywords": [ "cms", "content", "update page content" ] }, { "id": "task_0664", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Update page content", "description": "Update page content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Update page content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-update" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Update page content", "Content management: Update page content", "Complete Update page content" ], "keywords": [ "cms", "content", "update page content" ] }, { "id": "task_0665", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Update page content", "description": "Update page content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Update page content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-update" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Update page content", "Content management: Update page content", "Complete Update page content" ], "keywords": [ "cms", "content", "update page content" ] }, { "id": "task_0666", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Update page content", "description": "Update page content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Update page content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-update" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Update page content", "Content management: Update page content", "Complete Update page content" ], "keywords": [ "cms", "content", "update page content" ] }, { "id": "task_0667", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Update page content", "description": "Update page content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Update page content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-update" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Update page content", "Content management: Update page content", "Complete Update page content" ], "keywords": [ "cms", "content", "update page content" ] }, { "id": "task_0668", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Upload media", "description": "Upload media in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 8, "context": "Content management: Upload media", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-upload" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Upload media", "Content management: Upload media", "Complete Upload media" ], "keywords": [ "cms", "content", "upload media" ] }, { "id": "task_0669", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Upload media", "description": "Upload media in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 8, "context": "Content management: Upload media", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-upload" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Upload media", "Content management: Upload media", "Complete Upload media" ], "keywords": [ "cms", "content", "upload media" ] }, { "id": "task_0670", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Upload media", "description": "Upload media in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 8, "context": "Content management: Upload media", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-upload" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Upload media", "Content management: Upload media", "Complete Upload media" ], "keywords": [ "cms", "content", "upload media" ] }, { "id": "task_0671", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Upload media", "description": "Upload media in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 8, "context": "Content management: Upload media", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-upload" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Upload media", "Content management: Upload media", "Complete Upload media" ], "keywords": [ "cms", "content", "upload media" ] }, { "id": "task_0672", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Upload media", "description": "Upload media in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 8, "context": "Content management: Upload media", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-upload" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Upload media", "Content management: Upload media", "Complete Upload media" ], "keywords": [ "cms", "content", "upload media" ] }, { "id": "task_0673", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Upload media", "description": "Upload media in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 8, "context": "Content management: Upload media", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-upload" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Upload media", "Content management: Upload media", "Complete Upload media" ], "keywords": [ "cms", "content", "upload media" ] }, { "id": "task_0674", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Upload media", "description": "Upload media in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 8, "context": "Content management: Upload media", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-upload" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Upload media", "Content management: Upload media", "Complete Upload media" ], "keywords": [ "cms", "content", "upload media" ] }, { "id": "task_0675", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Schedule content", "description": "Schedule content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 15, "context": "Content management: Schedule content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-schedule" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Schedule content", "Content management: Schedule content", "Complete Schedule content" ], "keywords": [ "cms", "content", "schedule content" ] }, { "id": "task_0676", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Schedule content", "description": "Schedule content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 15, "context": "Content management: Schedule content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-schedule" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Schedule content", "Content management: Schedule content", "Complete Schedule content" ], "keywords": [ "cms", "content", "schedule content" ] }, { "id": "task_0677", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Schedule content", "description": "Schedule content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 15, "context": "Content management: Schedule content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-schedule" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Schedule content", "Content management: Schedule content", "Complete Schedule content" ], "keywords": [ "cms", "content", "schedule content" ] }, { "id": "task_0678", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Schedule content", "description": "Schedule content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 15, "context": "Content management: Schedule content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-schedule" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Schedule content", "Content management: Schedule content", "Complete Schedule content" ], "keywords": [ "cms", "content", "schedule content" ] }, { "id": "task_0679", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Schedule content", "description": "Schedule content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 15, "context": "Content management: Schedule content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-schedule" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Schedule content", "Content management: Schedule content", "Complete Schedule content" ], "keywords": [ "cms", "content", "schedule content" ] }, { "id": "task_0680", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Schedule content", "description": "Schedule content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 15, "context": "Content management: Schedule content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-schedule" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Schedule content", "Content management: Schedule content", "Complete Schedule content" ], "keywords": [ "cms", "content", "schedule content" ] }, { "id": "task_0681", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Schedule content", "description": "Schedule content in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 15, "context": "Content management: Schedule content", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-schedule" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Schedule content", "Content management: Schedule content", "Complete Schedule content" ], "keywords": [ "cms", "content", "schedule content" ] }, { "id": "task_0682", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Moderate comments", "description": "Moderate comments in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Moderate comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-moderate" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Moderate comments", "Content management: Moderate comments", "Complete Moderate comments" ], "keywords": [ "cms", "content", "moderate comments" ] }, { "id": "task_0683", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Moderate comments", "description": "Moderate comments in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Moderate comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-moderate" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Moderate comments", "Content management: Moderate comments", "Complete Moderate comments" ], "keywords": [ "cms", "content", "moderate comments" ] }, { "id": "task_0684", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Moderate comments", "description": "Moderate comments in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Moderate comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-moderate" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Moderate comments", "Content management: Moderate comments", "Complete Moderate comments" ], "keywords": [ "cms", "content", "moderate comments" ] }, { "id": "task_0685", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Moderate comments", "description": "Moderate comments in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Moderate comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-moderate" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Moderate comments", "Content management: Moderate comments", "Complete Moderate comments" ], "keywords": [ "cms", "content", "moderate comments" ] }, { "id": "task_0686", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Moderate comments", "description": "Moderate comments in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Moderate comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-moderate" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Moderate comments", "Content management: Moderate comments", "Complete Moderate comments" ], "keywords": [ "cms", "content", "moderate comments" ] }, { "id": "task_0687", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Moderate comments", "description": "Moderate comments in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Moderate comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-moderate" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Moderate comments", "Content management: Moderate comments", "Complete Moderate comments" ], "keywords": [ "cms", "content", "moderate comments" ] }, { "id": "task_0688", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Moderate comments", "description": "Moderate comments in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 10, "context": "Content management: Moderate comments", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-moderate" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Moderate comments", "Content management: Moderate comments", "Complete Moderate comments" ], "keywords": [ "cms", "content", "moderate comments" ] }, { "id": "task_0689", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Backup site", "description": "Backup site in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 5, "context": "Content management: Backup site", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-backup" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Backup site", "Content management: Backup site", "Complete Backup site" ], "keywords": [ "cms", "content", "backup site" ] }, { "id": "task_0690", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Backup site", "description": "Backup site in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 5, "context": "Content management: Backup site", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-backup" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Backup site", "Content management: Backup site", "Complete Backup site" ], "keywords": [ "cms", "content", "backup site" ] }, { "id": "task_0691", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Backup site", "description": "Backup site in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 5, "context": "Content management: Backup site", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-backup" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Backup site", "Content management: Backup site", "Complete Backup site" ], "keywords": [ "cms", "content", "backup site" ] }, { "id": "task_0692", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Backup site", "description": "Backup site in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 5, "context": "Content management: Backup site", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-backup" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Backup site", "Content management: Backup site", "Complete Backup site" ], "keywords": [ "cms", "content", "backup site" ] }, { "id": "task_0693", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Backup site", "description": "Backup site in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 5, "context": "Content management: Backup site", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-backup" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Backup site", "Content management: Backup site", "Complete Backup site" ], "keywords": [ "cms", "content", "backup site" ] }, { "id": "task_0694", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Backup site", "description": "Backup site in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 5, "context": "Content management: Backup site", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-backup" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Backup site", "Content management: Backup site", "Complete Backup site" ], "keywords": [ "cms", "content", "backup site" ] }, { "id": "task_0695", "category": "workflow", "subcategory": "cms", "difficulty": "medium", "title": "CMS: Backup site", "description": "Backup site in content management system", "url_pattern": "https://cms.example.com", "expected_actions": [ "navigate", "click", "fill_form" ], "expected_operation_count": 5, "context": "Content management: Backup site", "ground_truth_dsl": [ { "action": "navigate", "url": "https://cms.example.com/admin" }, { "action": "click", "selector": "#new-backup" }, { "action": "fill_form", "fields": { "#title": "New Content", "#body": "Content body here" } }, { "action": "click", "selector": "#publish" } ], "variations": [ "CMS task: Backup site", "Content management: Backup site", "Complete Backup site" ], "keywords": [ "cms", "content", "backup site" ] }, { "id": "task_0696", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload PDF document", "description": "Select and upload a PDF document to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for PDF document", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload PDF document", "Submit PDF document", "Send PDF document to server" ], "keywords": [ "upload", "file", "pdf document" ] }, { "id": "task_0697", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload PDF document", "description": "Select and upload a PDF document to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for PDF document", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload PDF document", "Submit PDF document", "Send PDF document to server" ], "keywords": [ "upload", "file", "pdf document" ] }, { "id": "task_0698", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload PDF document", "description": "Select and upload a PDF document to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for PDF document", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload PDF document", "Submit PDF document", "Send PDF document to server" ], "keywords": [ "upload", "file", "pdf document" ] }, { "id": "task_0699", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload PDF document", "description": "Select and upload a PDF document to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for PDF document", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload PDF document", "Submit PDF document", "Send PDF document to server" ], "keywords": [ "upload", "file", "pdf document" ] }, { "id": "task_0700", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload PDF document", "description": "Select and upload a PDF document to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for PDF document", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload PDF document", "Submit PDF document", "Send PDF document to server" ], "keywords": [ "upload", "file", "pdf document" ] }, { "id": "task_0701", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload PDF document", "description": "Select and upload a PDF document to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for PDF document", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload PDF document", "Submit PDF document", "Send PDF document to server" ], "keywords": [ "upload", "file", "pdf document" ] }, { "id": "task_0702", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Excel spreadsheet", "description": "Select and upload a Excel spreadsheet to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Excel spreadsheet", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Excel spreadsheet", "Submit Excel spreadsheet", "Send Excel spreadsheet to server" ], "keywords": [ "upload", "file", "excel spreadsheet" ] }, { "id": "task_0703", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Excel spreadsheet", "description": "Select and upload a Excel spreadsheet to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Excel spreadsheet", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Excel spreadsheet", "Submit Excel spreadsheet", "Send Excel spreadsheet to server" ], "keywords": [ "upload", "file", "excel spreadsheet" ] }, { "id": "task_0704", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Excel spreadsheet", "description": "Select and upload a Excel spreadsheet to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Excel spreadsheet", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Excel spreadsheet", "Submit Excel spreadsheet", "Send Excel spreadsheet to server" ], "keywords": [ "upload", "file", "excel spreadsheet" ] }, { "id": "task_0705", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Excel spreadsheet", "description": "Select and upload a Excel spreadsheet to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Excel spreadsheet", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Excel spreadsheet", "Submit Excel spreadsheet", "Send Excel spreadsheet to server" ], "keywords": [ "upload", "file", "excel spreadsheet" ] }, { "id": "task_0706", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Excel spreadsheet", "description": "Select and upload a Excel spreadsheet to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Excel spreadsheet", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Excel spreadsheet", "Submit Excel spreadsheet", "Send Excel spreadsheet to server" ], "keywords": [ "upload", "file", "excel spreadsheet" ] }, { "id": "task_0707", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Excel spreadsheet", "description": "Select and upload a Excel spreadsheet to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Excel spreadsheet", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Excel spreadsheet", "Submit Excel spreadsheet", "Send Excel spreadsheet to server" ], "keywords": [ "upload", "file", "excel spreadsheet" ] }, { "id": "task_0708", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload CSV data", "description": "Select and upload a CSV data to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for CSV data", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload CSV data", "Submit CSV data", "Send CSV data to server" ], "keywords": [ "upload", "file", "csv data" ] }, { "id": "task_0709", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload CSV data", "description": "Select and upload a CSV data to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for CSV data", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload CSV data", "Submit CSV data", "Send CSV data to server" ], "keywords": [ "upload", "file", "csv data" ] }, { "id": "task_0710", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload CSV data", "description": "Select and upload a CSV data to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for CSV data", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload CSV data", "Submit CSV data", "Send CSV data to server" ], "keywords": [ "upload", "file", "csv data" ] }, { "id": "task_0711", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload CSV data", "description": "Select and upload a CSV data to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for CSV data", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload CSV data", "Submit CSV data", "Send CSV data to server" ], "keywords": [ "upload", "file", "csv data" ] }, { "id": "task_0712", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload CSV data", "description": "Select and upload a CSV data to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for CSV data", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload CSV data", "Submit CSV data", "Send CSV data to server" ], "keywords": [ "upload", "file", "csv data" ] }, { "id": "task_0713", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload CSV data", "description": "Select and upload a CSV data to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for CSV data", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload CSV data", "Submit CSV data", "Send CSV data to server" ], "keywords": [ "upload", "file", "csv data" ] }, { "id": "task_0714", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Image file", "description": "Select and upload a Image file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Image file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Image file", "Submit Image file", "Send Image file to server" ], "keywords": [ "upload", "file", "image file" ] }, { "id": "task_0715", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Image file", "description": "Select and upload a Image file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Image file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Image file", "Submit Image file", "Send Image file to server" ], "keywords": [ "upload", "file", "image file" ] }, { "id": "task_0716", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Image file", "description": "Select and upload a Image file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Image file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Image file", "Submit Image file", "Send Image file to server" ], "keywords": [ "upload", "file", "image file" ] }, { "id": "task_0717", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Image file", "description": "Select and upload a Image file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Image file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Image file", "Submit Image file", "Send Image file to server" ], "keywords": [ "upload", "file", "image file" ] }, { "id": "task_0718", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Image file", "description": "Select and upload a Image file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Image file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Image file", "Submit Image file", "Send Image file to server" ], "keywords": [ "upload", "file", "image file" ] }, { "id": "task_0719", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Image file", "description": "Select and upload a Image file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Image file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Image file", "Submit Image file", "Send Image file to server" ], "keywords": [ "upload", "file", "image file" ] }, { "id": "task_0720", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload ZIP archive", "description": "Select and upload a ZIP archive to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for ZIP archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload ZIP archive", "Submit ZIP archive", "Send ZIP archive to server" ], "keywords": [ "upload", "file", "zip archive" ] }, { "id": "task_0721", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload ZIP archive", "description": "Select and upload a ZIP archive to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for ZIP archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload ZIP archive", "Submit ZIP archive", "Send ZIP archive to server" ], "keywords": [ "upload", "file", "zip archive" ] }, { "id": "task_0722", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload ZIP archive", "description": "Select and upload a ZIP archive to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for ZIP archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload ZIP archive", "Submit ZIP archive", "Send ZIP archive to server" ], "keywords": [ "upload", "file", "zip archive" ] }, { "id": "task_0723", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload ZIP archive", "description": "Select and upload a ZIP archive to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for ZIP archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload ZIP archive", "Submit ZIP archive", "Send ZIP archive to server" ], "keywords": [ "upload", "file", "zip archive" ] }, { "id": "task_0724", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload ZIP archive", "description": "Select and upload a ZIP archive to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for ZIP archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload ZIP archive", "Submit ZIP archive", "Send ZIP archive to server" ], "keywords": [ "upload", "file", "zip archive" ] }, { "id": "task_0725", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload ZIP archive", "description": "Select and upload a ZIP archive to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for ZIP archive", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload ZIP archive", "Submit ZIP archive", "Send ZIP archive to server" ], "keywords": [ "upload", "file", "zip archive" ] }, { "id": "task_0726", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Video file", "description": "Select and upload a Video file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Video file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Video file", "Submit Video file", "Send Video file to server" ], "keywords": [ "upload", "file", "video file" ] }, { "id": "task_0727", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Video file", "description": "Select and upload a Video file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Video file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Video file", "Submit Video file", "Send Video file to server" ], "keywords": [ "upload", "file", "video file" ] }, { "id": "task_0728", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Video file", "description": "Select and upload a Video file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Video file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Video file", "Submit Video file", "Send Video file to server" ], "keywords": [ "upload", "file", "video file" ] }, { "id": "task_0729", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Video file", "description": "Select and upload a Video file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Video file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Video file", "Submit Video file", "Send Video file to server" ], "keywords": [ "upload", "file", "video file" ] }, { "id": "task_0730", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Video file", "description": "Select and upload a Video file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Video file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Video file", "Submit Video file", "Send Video file to server" ], "keywords": [ "upload", "file", "video file" ] }, { "id": "task_0731", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Video file", "description": "Select and upload a Video file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Video file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Video file", "Submit Video file", "Send Video file to server" ], "keywords": [ "upload", "file", "video file" ] }, { "id": "task_0732", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Audio file", "description": "Select and upload a Audio file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Audio file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Audio file", "Submit Audio file", "Send Audio file to server" ], "keywords": [ "upload", "file", "audio file" ] }, { "id": "task_0733", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Audio file", "description": "Select and upload a Audio file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Audio file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Audio file", "Submit Audio file", "Send Audio file to server" ], "keywords": [ "upload", "file", "audio file" ] }, { "id": "task_0734", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Audio file", "description": "Select and upload a Audio file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Audio file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Audio file", "Submit Audio file", "Send Audio file to server" ], "keywords": [ "upload", "file", "audio file" ] }, { "id": "task_0735", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Audio file", "description": "Select and upload a Audio file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Audio file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Audio file", "Submit Audio file", "Send Audio file to server" ], "keywords": [ "upload", "file", "audio file" ] }, { "id": "task_0736", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Audio file", "description": "Select and upload a Audio file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Audio file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Audio file", "Submit Audio file", "Send Audio file to server" ], "keywords": [ "upload", "file", "audio file" ] }, { "id": "task_0737", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Audio file", "description": "Select and upload a Audio file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Audio file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Audio file", "Submit Audio file", "Send Audio file to server" ], "keywords": [ "upload", "file", "audio file" ] }, { "id": "task_0738", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Text file", "description": "Select and upload a Text file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Text file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Text file", "Submit Text file", "Send Text file to server" ], "keywords": [ "upload", "file", "text file" ] }, { "id": "task_0739", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Text file", "description": "Select and upload a Text file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Text file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Text file", "Submit Text file", "Send Text file to server" ], "keywords": [ "upload", "file", "text file" ] }, { "id": "task_0740", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Text file", "description": "Select and upload a Text file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Text file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Text file", "Submit Text file", "Send Text file to server" ], "keywords": [ "upload", "file", "text file" ] }, { "id": "task_0741", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Text file", "description": "Select and upload a Text file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Text file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Text file", "Submit Text file", "Send Text file to server" ], "keywords": [ "upload", "file", "text file" ] }, { "id": "task_0742", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Text file", "description": "Select and upload a Text file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Text file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Text file", "Submit Text file", "Send Text file to server" ], "keywords": [ "upload", "file", "text file" ] }, { "id": "task_0743", "category": "advanced", "subcategory": "file_handling", "difficulty": "medium", "title": "Upload Text file", "description": "Select and upload a Text file to the website", "url_pattern": "https://upload.example.com", "expected_actions": [ "navigate", "click" ], "expected_operation_count": 5, "context": "File upload workflow for Text file", "ground_truth_dsl": [ { "action": "navigate", "url": "https://upload.example.com" }, { "action": "click", "selector": "input[type='file']" }, { "action": "wait_for_load", "selector": ".upload-success" }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Upload Text file", "Submit Text file", "Send Text file to server" ], "keywords": [ "upload", "file", "text file" ] }, { "id": "task_0744", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Form builder", "description": "Use drag and drop to reorganize items in Form builder", "url_pattern": "https://form-builder.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Form builder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form-builder.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Form builder with drag and drop", "Move items in Form builder", "Drag elements in Form builder" ], "keywords": [ "drag", "drop", "form builder" ] }, { "id": "task_0745", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Form builder", "description": "Use drag and drop to reorganize items in Form builder", "url_pattern": "https://form-builder.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Form builder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form-builder.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Form builder with drag and drop", "Move items in Form builder", "Drag elements in Form builder" ], "keywords": [ "drag", "drop", "form builder" ] }, { "id": "task_0746", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Form builder", "description": "Use drag and drop to reorganize items in Form builder", "url_pattern": "https://form-builder.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Form builder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form-builder.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Form builder with drag and drop", "Move items in Form builder", "Drag elements in Form builder" ], "keywords": [ "drag", "drop", "form builder" ] }, { "id": "task_0747", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Form builder", "description": "Use drag and drop to reorganize items in Form builder", "url_pattern": "https://form-builder.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Form builder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form-builder.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Form builder with drag and drop", "Move items in Form builder", "Drag elements in Form builder" ], "keywords": [ "drag", "drop", "form builder" ] }, { "id": "task_0748", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Form builder", "description": "Use drag and drop to reorganize items in Form builder", "url_pattern": "https://form-builder.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Form builder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form-builder.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Form builder with drag and drop", "Move items in Form builder", "Drag elements in Form builder" ], "keywords": [ "drag", "drop", "form builder" ] }, { "id": "task_0749", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Form builder", "description": "Use drag and drop to reorganize items in Form builder", "url_pattern": "https://form-builder.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Form builder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form-builder.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Form builder with drag and drop", "Move items in Form builder", "Drag elements in Form builder" ], "keywords": [ "drag", "drop", "form builder" ] }, { "id": "task_0750", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Form builder", "description": "Use drag and drop to reorganize items in Form builder", "url_pattern": "https://form-builder.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Form builder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form-builder.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Form builder with drag and drop", "Move items in Form builder", "Drag elements in Form builder" ], "keywords": [ "drag", "drop", "form builder" ] }, { "id": "task_0751", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Form builder", "description": "Use drag and drop to reorganize items in Form builder", "url_pattern": "https://form-builder.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Form builder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form-builder.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Form builder with drag and drop", "Move items in Form builder", "Drag elements in Form builder" ], "keywords": [ "drag", "drop", "form builder" ] }, { "id": "task_0752", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Form builder", "description": "Use drag and drop to reorganize items in Form builder", "url_pattern": "https://form-builder.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Form builder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form-builder.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Form builder with drag and drop", "Move items in Form builder", "Drag elements in Form builder" ], "keywords": [ "drag", "drop", "form builder" ] }, { "id": "task_0753", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Form builder", "description": "Use drag and drop to reorganize items in Form builder", "url_pattern": "https://form-builder.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Form builder", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form-builder.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Form builder with drag and drop", "Move items in Form builder", "Drag elements in Form builder" ], "keywords": [ "drag", "drop", "form builder" ] }, { "id": "task_0754", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Kanban board", "description": "Use drag and drop to reorganize items in Kanban board", "url_pattern": "https://kanban-board.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Kanban board", "ground_truth_dsl": [ { "action": "navigate", "url": "https://kanban-board.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Kanban board with drag and drop", "Move items in Kanban board", "Drag elements in Kanban board" ], "keywords": [ "drag", "drop", "kanban board" ] }, { "id": "task_0755", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Kanban board", "description": "Use drag and drop to reorganize items in Kanban board", "url_pattern": "https://kanban-board.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Kanban board", "ground_truth_dsl": [ { "action": "navigate", "url": "https://kanban-board.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Kanban board with drag and drop", "Move items in Kanban board", "Drag elements in Kanban board" ], "keywords": [ "drag", "drop", "kanban board" ] }, { "id": "task_0756", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Kanban board", "description": "Use drag and drop to reorganize items in Kanban board", "url_pattern": "https://kanban-board.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Kanban board", "ground_truth_dsl": [ { "action": "navigate", "url": "https://kanban-board.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Kanban board with drag and drop", "Move items in Kanban board", "Drag elements in Kanban board" ], "keywords": [ "drag", "drop", "kanban board" ] }, { "id": "task_0757", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Kanban board", "description": "Use drag and drop to reorganize items in Kanban board", "url_pattern": "https://kanban-board.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Kanban board", "ground_truth_dsl": [ { "action": "navigate", "url": "https://kanban-board.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Kanban board with drag and drop", "Move items in Kanban board", "Drag elements in Kanban board" ], "keywords": [ "drag", "drop", "kanban board" ] }, { "id": "task_0758", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Kanban board", "description": "Use drag and drop to reorganize items in Kanban board", "url_pattern": "https://kanban-board.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Kanban board", "ground_truth_dsl": [ { "action": "navigate", "url": "https://kanban-board.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Kanban board with drag and drop", "Move items in Kanban board", "Drag elements in Kanban board" ], "keywords": [ "drag", "drop", "kanban board" ] }, { "id": "task_0759", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Kanban board", "description": "Use drag and drop to reorganize items in Kanban board", "url_pattern": "https://kanban-board.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Kanban board", "ground_truth_dsl": [ { "action": "navigate", "url": "https://kanban-board.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Kanban board with drag and drop", "Move items in Kanban board", "Drag elements in Kanban board" ], "keywords": [ "drag", "drop", "kanban board" ] }, { "id": "task_0760", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Kanban board", "description": "Use drag and drop to reorganize items in Kanban board", "url_pattern": "https://kanban-board.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Kanban board", "ground_truth_dsl": [ { "action": "navigate", "url": "https://kanban-board.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Kanban board with drag and drop", "Move items in Kanban board", "Drag elements in Kanban board" ], "keywords": [ "drag", "drop", "kanban board" ] }, { "id": "task_0761", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Kanban board", "description": "Use drag and drop to reorganize items in Kanban board", "url_pattern": "https://kanban-board.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Kanban board", "ground_truth_dsl": [ { "action": "navigate", "url": "https://kanban-board.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Kanban board with drag and drop", "Move items in Kanban board", "Drag elements in Kanban board" ], "keywords": [ "drag", "drop", "kanban board" ] }, { "id": "task_0762", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Kanban board", "description": "Use drag and drop to reorganize items in Kanban board", "url_pattern": "https://kanban-board.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Kanban board", "ground_truth_dsl": [ { "action": "navigate", "url": "https://kanban-board.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Kanban board with drag and drop", "Move items in Kanban board", "Drag elements in Kanban board" ], "keywords": [ "drag", "drop", "kanban board" ] }, { "id": "task_0763", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Kanban board", "description": "Use drag and drop to reorganize items in Kanban board", "url_pattern": "https://kanban-board.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Kanban board", "ground_truth_dsl": [ { "action": "navigate", "url": "https://kanban-board.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Kanban board with drag and drop", "Move items in Kanban board", "Drag elements in Kanban board" ], "keywords": [ "drag", "drop", "kanban board" ] }, { "id": "task_0764", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in File organizer", "description": "Use drag and drop to reorganize items in File organizer", "url_pattern": "https://file-organizer.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in File organizer", "ground_truth_dsl": [ { "action": "navigate", "url": "https://file-organizer.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize File organizer with drag and drop", "Move items in File organizer", "Drag elements in File organizer" ], "keywords": [ "drag", "drop", "file organizer" ] }, { "id": "task_0765", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in File organizer", "description": "Use drag and drop to reorganize items in File organizer", "url_pattern": "https://file-organizer.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in File organizer", "ground_truth_dsl": [ { "action": "navigate", "url": "https://file-organizer.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize File organizer with drag and drop", "Move items in File organizer", "Drag elements in File organizer" ], "keywords": [ "drag", "drop", "file organizer" ] }, { "id": "task_0766", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in File organizer", "description": "Use drag and drop to reorganize items in File organizer", "url_pattern": "https://file-organizer.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in File organizer", "ground_truth_dsl": [ { "action": "navigate", "url": "https://file-organizer.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize File organizer with drag and drop", "Move items in File organizer", "Drag elements in File organizer" ], "keywords": [ "drag", "drop", "file organizer" ] }, { "id": "task_0767", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in File organizer", "description": "Use drag and drop to reorganize items in File organizer", "url_pattern": "https://file-organizer.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in File organizer", "ground_truth_dsl": [ { "action": "navigate", "url": "https://file-organizer.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize File organizer with drag and drop", "Move items in File organizer", "Drag elements in File organizer" ], "keywords": [ "drag", "drop", "file organizer" ] }, { "id": "task_0768", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in File organizer", "description": "Use drag and drop to reorganize items in File organizer", "url_pattern": "https://file-organizer.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in File organizer", "ground_truth_dsl": [ { "action": "navigate", "url": "https://file-organizer.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize File organizer with drag and drop", "Move items in File organizer", "Drag elements in File organizer" ], "keywords": [ "drag", "drop", "file organizer" ] }, { "id": "task_0769", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in File organizer", "description": "Use drag and drop to reorganize items in File organizer", "url_pattern": "https://file-organizer.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in File organizer", "ground_truth_dsl": [ { "action": "navigate", "url": "https://file-organizer.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize File organizer with drag and drop", "Move items in File organizer", "Drag elements in File organizer" ], "keywords": [ "drag", "drop", "file organizer" ] }, { "id": "task_0770", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in File organizer", "description": "Use drag and drop to reorganize items in File organizer", "url_pattern": "https://file-organizer.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in File organizer", "ground_truth_dsl": [ { "action": "navigate", "url": "https://file-organizer.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize File organizer with drag and drop", "Move items in File organizer", "Drag elements in File organizer" ], "keywords": [ "drag", "drop", "file organizer" ] }, { "id": "task_0771", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in File organizer", "description": "Use drag and drop to reorganize items in File organizer", "url_pattern": "https://file-organizer.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in File organizer", "ground_truth_dsl": [ { "action": "navigate", "url": "https://file-organizer.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize File organizer with drag and drop", "Move items in File organizer", "Drag elements in File organizer" ], "keywords": [ "drag", "drop", "file organizer" ] }, { "id": "task_0772", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in File organizer", "description": "Use drag and drop to reorganize items in File organizer", "url_pattern": "https://file-organizer.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in File organizer", "ground_truth_dsl": [ { "action": "navigate", "url": "https://file-organizer.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize File organizer with drag and drop", "Move items in File organizer", "Drag elements in File organizer" ], "keywords": [ "drag", "drop", "file organizer" ] }, { "id": "task_0773", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in File organizer", "description": "Use drag and drop to reorganize items in File organizer", "url_pattern": "https://file-organizer.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in File organizer", "ground_truth_dsl": [ { "action": "navigate", "url": "https://file-organizer.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize File organizer with drag and drop", "Move items in File organizer", "Drag elements in File organizer" ], "keywords": [ "drag", "drop", "file organizer" ] }, { "id": "task_0774", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Dashboard layout", "description": "Use drag and drop to reorganize items in Dashboard layout", "url_pattern": "https://dashboard-layout.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Dashboard layout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dashboard-layout.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Dashboard layout with drag and drop", "Move items in Dashboard layout", "Drag elements in Dashboard layout" ], "keywords": [ "drag", "drop", "dashboard layout" ] }, { "id": "task_0775", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Dashboard layout", "description": "Use drag and drop to reorganize items in Dashboard layout", "url_pattern": "https://dashboard-layout.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Dashboard layout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dashboard-layout.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Dashboard layout with drag and drop", "Move items in Dashboard layout", "Drag elements in Dashboard layout" ], "keywords": [ "drag", "drop", "dashboard layout" ] }, { "id": "task_0776", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Dashboard layout", "description": "Use drag and drop to reorganize items in Dashboard layout", "url_pattern": "https://dashboard-layout.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Dashboard layout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dashboard-layout.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Dashboard layout with drag and drop", "Move items in Dashboard layout", "Drag elements in Dashboard layout" ], "keywords": [ "drag", "drop", "dashboard layout" ] }, { "id": "task_0777", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Dashboard layout", "description": "Use drag and drop to reorganize items in Dashboard layout", "url_pattern": "https://dashboard-layout.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Dashboard layout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dashboard-layout.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Dashboard layout with drag and drop", "Move items in Dashboard layout", "Drag elements in Dashboard layout" ], "keywords": [ "drag", "drop", "dashboard layout" ] }, { "id": "task_0778", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Dashboard layout", "description": "Use drag and drop to reorganize items in Dashboard layout", "url_pattern": "https://dashboard-layout.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Dashboard layout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dashboard-layout.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Dashboard layout with drag and drop", "Move items in Dashboard layout", "Drag elements in Dashboard layout" ], "keywords": [ "drag", "drop", "dashboard layout" ] }, { "id": "task_0779", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Dashboard layout", "description": "Use drag and drop to reorganize items in Dashboard layout", "url_pattern": "https://dashboard-layout.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Dashboard layout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dashboard-layout.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Dashboard layout with drag and drop", "Move items in Dashboard layout", "Drag elements in Dashboard layout" ], "keywords": [ "drag", "drop", "dashboard layout" ] }, { "id": "task_0780", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Dashboard layout", "description": "Use drag and drop to reorganize items in Dashboard layout", "url_pattern": "https://dashboard-layout.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Dashboard layout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dashboard-layout.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Dashboard layout with drag and drop", "Move items in Dashboard layout", "Drag elements in Dashboard layout" ], "keywords": [ "drag", "drop", "dashboard layout" ] }, { "id": "task_0781", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Dashboard layout", "description": "Use drag and drop to reorganize items in Dashboard layout", "url_pattern": "https://dashboard-layout.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Dashboard layout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dashboard-layout.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Dashboard layout with drag and drop", "Move items in Dashboard layout", "Drag elements in Dashboard layout" ], "keywords": [ "drag", "drop", "dashboard layout" ] }, { "id": "task_0782", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Dashboard layout", "description": "Use drag and drop to reorganize items in Dashboard layout", "url_pattern": "https://dashboard-layout.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Dashboard layout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dashboard-layout.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Dashboard layout with drag and drop", "Move items in Dashboard layout", "Drag elements in Dashboard layout" ], "keywords": [ "drag", "drop", "dashboard layout" ] }, { "id": "task_0783", "category": "advanced", "subcategory": "drag_drop", "difficulty": "complex", "title": "Drag and drop in Dashboard layout", "description": "Use drag and drop to reorganize items in Dashboard layout", "url_pattern": "https://dashboard-layout.example.com", "expected_actions": [ "navigate", "drag_and_drop", "wait_for_load" ], "expected_operation_count": 8, "context": "Drag and drop interaction in Dashboard layout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://dashboard-layout.example.com" }, { "action": "wait_for_load", "selector": ".draggable" }, { "action": "drag_and_drop", "source": ".item-1", "target": ".drop-zone" }, { "action": "check_element", "selector": ".success-indicator" } ], "variations": [ "Reorganize Dashboard layout with drag and drop", "Move items in Dashboard layout", "Drag elements in Dashboard layout" ], "keywords": [ "drag", "drop", "dashboard layout" ] }, { "id": "task_0784", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 173 items", "description": "Scroll through infinite feed and extract 173 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 17, "context": "Infinite scroll with 173 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 173 from infinite scroll", "Scroll and collect 173 items", "Load 173 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0785", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 147 items", "description": "Scroll through infinite feed and extract 147 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 14, "context": "Infinite scroll with 147 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 147 from infinite scroll", "Scroll and collect 147 items", "Load 147 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0786", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 58 items", "description": "Scroll through infinite feed and extract 58 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 5, "context": "Infinite scroll with 58 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 58 from infinite scroll", "Scroll and collect 58 items", "Load 58 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0787", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 129 items", "description": "Scroll through infinite feed and extract 129 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 12, "context": "Infinite scroll with 129 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 129 from infinite scroll", "Scroll and collect 129 items", "Load 129 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0788", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 189 items", "description": "Scroll through infinite feed and extract 189 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 18, "context": "Infinite scroll with 189 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 189 from infinite scroll", "Scroll and collect 189 items", "Load 189 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0789", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 50 items", "description": "Scroll through infinite feed and extract 50 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 5, "context": "Infinite scroll with 50 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 50 from infinite scroll", "Scroll and collect 50 items", "Load 50 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0790", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 127 items", "description": "Scroll through infinite feed and extract 127 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 12, "context": "Infinite scroll with 127 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 127 from infinite scroll", "Scroll and collect 127 items", "Load 127 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0791", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 152 items", "description": "Scroll through infinite feed and extract 152 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 15, "context": "Infinite scroll with 152 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 152 from infinite scroll", "Scroll and collect 152 items", "Load 152 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0792", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 146 items", "description": "Scroll through infinite feed and extract 146 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 14, "context": "Infinite scroll with 146 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 146 from infinite scroll", "Scroll and collect 146 items", "Load 146 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0793", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 110 items", "description": "Scroll through infinite feed and extract 110 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 11, "context": "Infinite scroll with 110 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 110 from infinite scroll", "Scroll and collect 110 items", "Load 110 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0794", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 90 items", "description": "Scroll through infinite feed and extract 90 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 9, "context": "Infinite scroll with 90 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 90 from infinite scroll", "Scroll and collect 90 items", "Load 90 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0795", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 161 items", "description": "Scroll through infinite feed and extract 161 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 16, "context": "Infinite scroll with 161 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 161 from infinite scroll", "Scroll and collect 161 items", "Load 161 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0796", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 137 items", "description": "Scroll through infinite feed and extract 137 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 13, "context": "Infinite scroll with 137 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 137 from infinite scroll", "Scroll and collect 137 items", "Load 137 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0797", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 165 items", "description": "Scroll through infinite feed and extract 165 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 16, "context": "Infinite scroll with 165 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 165 from infinite scroll", "Scroll and collect 165 items", "Load 165 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0798", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 82 items", "description": "Scroll through infinite feed and extract 82 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 8, "context": "Infinite scroll with 82 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 82 from infinite scroll", "Scroll and collect 82 items", "Load 82 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0799", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 191 items", "description": "Scroll through infinite feed and extract 191 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 19, "context": "Infinite scroll with 191 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 191 from infinite scroll", "Scroll and collect 191 items", "Load 191 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0800", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 200 items", "description": "Scroll through infinite feed and extract 200 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 20, "context": "Infinite scroll with 200 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 200 from infinite scroll", "Scroll and collect 200 items", "Load 200 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0801", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 83 items", "description": "Scroll through infinite feed and extract 83 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 8, "context": "Infinite scroll with 83 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 83 from infinite scroll", "Scroll and collect 83 items", "Load 83 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0802", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 83 items", "description": "Scroll through infinite feed and extract 83 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 8, "context": "Infinite scroll with 83 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 83 from infinite scroll", "Scroll and collect 83 items", "Load 83 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0803", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 86 items", "description": "Scroll through infinite feed and extract 86 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 8, "context": "Infinite scroll with 86 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 86 from infinite scroll", "Scroll and collect 86 items", "Load 86 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0804", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 163 items", "description": "Scroll through infinite feed and extract 163 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 16, "context": "Infinite scroll with 163 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 163 from infinite scroll", "Scroll and collect 163 items", "Load 163 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0805", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 107 items", "description": "Scroll through infinite feed and extract 107 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 10, "context": "Infinite scroll with 107 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 107 from infinite scroll", "Scroll and collect 107 items", "Load 107 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0806", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 191 items", "description": "Scroll through infinite feed and extract 191 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 19, "context": "Infinite scroll with 191 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 191 from infinite scroll", "Scroll and collect 191 items", "Load 191 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0807", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 66 items", "description": "Scroll through infinite feed and extract 66 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 6, "context": "Infinite scroll with 66 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 66 from infinite scroll", "Scroll and collect 66 items", "Load 66 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0808", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 102 items", "description": "Scroll through infinite feed and extract 102 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 10, "context": "Infinite scroll with 102 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 102 from infinite scroll", "Scroll and collect 102 items", "Load 102 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0809", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 158 items", "description": "Scroll through infinite feed and extract 158 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 15, "context": "Infinite scroll with 158 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 158 from infinite scroll", "Scroll and collect 158 items", "Load 158 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0810", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 194 items", "description": "Scroll through infinite feed and extract 194 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 19, "context": "Infinite scroll with 194 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 194 from infinite scroll", "Scroll and collect 194 items", "Load 194 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0811", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 139 items", "description": "Scroll through infinite feed and extract 139 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 13, "context": "Infinite scroll with 139 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 139 from infinite scroll", "Scroll and collect 139 items", "Load 139 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0812", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 122 items", "description": "Scroll through infinite feed and extract 122 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 12, "context": "Infinite scroll with 122 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 122 from infinite scroll", "Scroll and collect 122 items", "Load 122 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0813", "category": "advanced", "subcategory": "infinite_scroll", "difficulty": "complex", "title": "Scroll and extract 186 items", "description": "Scroll through infinite feed and extract 186 items", "url_pattern": "https://feed.example.com", "expected_actions": [ "navigate", "scroll", "extract_data", "conditional" ], "expected_operation_count": 18, "context": "Infinite scroll with 186 items", "ground_truth_dsl": [ { "action": "navigate", "url": "https://feed.example.com" }, { "action": "wait_for_load", "selector": ".feed-item" }, { "action": "loop", "max_iterations": 100, "actions": [ { "action": "scroll", "direction": "down", "pixels": 1000 }, { "action": "wait", "seconds": 1 }, { "action": "extract_data", "selectors": { "items": ".feed-item" } }, { "action": "conditional", "condition": "exists", "selector": ".no-more-items", "if_true": [ { "action": "wait", "seconds": 0 } ] } ] } ], "variations": [ "Extract 186 from infinite scroll", "Scroll and collect 186 items", "Load 186 items from feed" ], "keywords": [ "infinite scroll", "extract", "items" ] }, { "id": "task_0814", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0815", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0816", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0817", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0818", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0819", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0820", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0821", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0822", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0823", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0824", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0825", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0826", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0827", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0828", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0829", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0830", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0831", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0832", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0833", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0834", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0835", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0836", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0837", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0838", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0839", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0840", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0841", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0842", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0843", "category": "advanced", "subcategory": "modal_handling", "difficulty": "medium", "title": "Handle popup modal", "description": "Wait for modal to appear, fill form in modal, and submit", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "wait_for_load", "fill_form", "click" ], "expected_operation_count": 6, "context": "Modal dialog interaction", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "click", "selector": "#trigger-modal" }, { "action": "wait_for_load", "selector": ".modal" }, { "action": "fill_form", "fields": { "#modal-input": "value" } }, { "action": "click", "selector": ".modal .submit" } ], "variations": [ "Interact with popup", "Fill modal form", "Submit dialog" ], "keywords": [ "modal", "popup", "dialog" ] }, { "id": "task_0844", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on network timeout", "description": "Attempt action and retry up to 3 times if network timeout occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Network timeout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle network timeout with retry", "Retry on network timeout", "Recover from network timeout" ], "keywords": [ "retry", "error", "network timeout" ] }, { "id": "task_0845", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on network timeout", "description": "Attempt action and retry up to 3 times if network timeout occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Network timeout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle network timeout with retry", "Retry on network timeout", "Recover from network timeout" ], "keywords": [ "retry", "error", "network timeout" ] }, { "id": "task_0846", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on network timeout", "description": "Attempt action and retry up to 3 times if network timeout occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Network timeout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle network timeout with retry", "Retry on network timeout", "Recover from network timeout" ], "keywords": [ "retry", "error", "network timeout" ] }, { "id": "task_0847", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on network timeout", "description": "Attempt action and retry up to 3 times if network timeout occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Network timeout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle network timeout with retry", "Retry on network timeout", "Recover from network timeout" ], "keywords": [ "retry", "error", "network timeout" ] }, { "id": "task_0848", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on network timeout", "description": "Attempt action and retry up to 3 times if network timeout occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Network timeout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle network timeout with retry", "Retry on network timeout", "Recover from network timeout" ], "keywords": [ "retry", "error", "network timeout" ] }, { "id": "task_0849", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on network timeout", "description": "Attempt action and retry up to 3 times if network timeout occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Network timeout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle network timeout with retry", "Retry on network timeout", "Recover from network timeout" ], "keywords": [ "retry", "error", "network timeout" ] }, { "id": "task_0850", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on network timeout", "description": "Attempt action and retry up to 3 times if network timeout occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Network timeout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle network timeout with retry", "Retry on network timeout", "Recover from network timeout" ], "keywords": [ "retry", "error", "network timeout" ] }, { "id": "task_0851", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on network timeout", "description": "Attempt action and retry up to 3 times if network timeout occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Network timeout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle network timeout with retry", "Retry on network timeout", "Recover from network timeout" ], "keywords": [ "retry", "error", "network timeout" ] }, { "id": "task_0852", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on network timeout", "description": "Attempt action and retry up to 3 times if network timeout occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Network timeout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle network timeout with retry", "Retry on network timeout", "Recover from network timeout" ], "keywords": [ "retry", "error", "network timeout" ] }, { "id": "task_0853", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on network timeout", "description": "Attempt action and retry up to 3 times if network timeout occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Network timeout", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle network timeout with retry", "Retry on network timeout", "Recover from network timeout" ], "keywords": [ "retry", "error", "network timeout" ] }, { "id": "task_0854", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on server error", "description": "Attempt action and retry up to 3 times if server error occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Server error", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle server error with retry", "Retry on server error", "Recover from server error" ], "keywords": [ "retry", "error", "server error" ] }, { "id": "task_0855", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on server error", "description": "Attempt action and retry up to 3 times if server error occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Server error", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle server error with retry", "Retry on server error", "Recover from server error" ], "keywords": [ "retry", "error", "server error" ] }, { "id": "task_0856", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on server error", "description": "Attempt action and retry up to 3 times if server error occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Server error", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle server error with retry", "Retry on server error", "Recover from server error" ], "keywords": [ "retry", "error", "server error" ] }, { "id": "task_0857", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on server error", "description": "Attempt action and retry up to 3 times if server error occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Server error", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle server error with retry", "Retry on server error", "Recover from server error" ], "keywords": [ "retry", "error", "server error" ] }, { "id": "task_0858", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on server error", "description": "Attempt action and retry up to 3 times if server error occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Server error", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle server error with retry", "Retry on server error", "Recover from server error" ], "keywords": [ "retry", "error", "server error" ] }, { "id": "task_0859", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on server error", "description": "Attempt action and retry up to 3 times if server error occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Server error", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle server error with retry", "Retry on server error", "Recover from server error" ], "keywords": [ "retry", "error", "server error" ] }, { "id": "task_0860", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on server error", "description": "Attempt action and retry up to 3 times if server error occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Server error", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle server error with retry", "Retry on server error", "Recover from server error" ], "keywords": [ "retry", "error", "server error" ] }, { "id": "task_0861", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on server error", "description": "Attempt action and retry up to 3 times if server error occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Server error", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle server error with retry", "Retry on server error", "Recover from server error" ], "keywords": [ "retry", "error", "server error" ] }, { "id": "task_0862", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on server error", "description": "Attempt action and retry up to 3 times if server error occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Server error", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle server error with retry", "Retry on server error", "Recover from server error" ], "keywords": [ "retry", "error", "server error" ] }, { "id": "task_0863", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on server error", "description": "Attempt action and retry up to 3 times if server error occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Server error", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle server error with retry", "Retry on server error", "Recover from server error" ], "keywords": [ "retry", "error", "server error" ] }, { "id": "task_0864", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on rate limit", "description": "Attempt action and retry up to 3 times if rate limit occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Rate limit", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle rate limit with retry", "Retry on rate limit", "Recover from rate limit" ], "keywords": [ "retry", "error", "rate limit" ] }, { "id": "task_0865", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on rate limit", "description": "Attempt action and retry up to 3 times if rate limit occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Rate limit", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle rate limit with retry", "Retry on rate limit", "Recover from rate limit" ], "keywords": [ "retry", "error", "rate limit" ] }, { "id": "task_0866", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on rate limit", "description": "Attempt action and retry up to 3 times if rate limit occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Rate limit", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle rate limit with retry", "Retry on rate limit", "Recover from rate limit" ], "keywords": [ "retry", "error", "rate limit" ] }, { "id": "task_0867", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on rate limit", "description": "Attempt action and retry up to 3 times if rate limit occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Rate limit", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle rate limit with retry", "Retry on rate limit", "Recover from rate limit" ], "keywords": [ "retry", "error", "rate limit" ] }, { "id": "task_0868", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on rate limit", "description": "Attempt action and retry up to 3 times if rate limit occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Rate limit", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle rate limit with retry", "Retry on rate limit", "Recover from rate limit" ], "keywords": [ "retry", "error", "rate limit" ] }, { "id": "task_0869", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on rate limit", "description": "Attempt action and retry up to 3 times if rate limit occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Rate limit", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle rate limit with retry", "Retry on rate limit", "Recover from rate limit" ], "keywords": [ "retry", "error", "rate limit" ] }, { "id": "task_0870", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on rate limit", "description": "Attempt action and retry up to 3 times if rate limit occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Rate limit", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle rate limit with retry", "Retry on rate limit", "Recover from rate limit" ], "keywords": [ "retry", "error", "rate limit" ] }, { "id": "task_0871", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on rate limit", "description": "Attempt action and retry up to 3 times if rate limit occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Rate limit", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle rate limit with retry", "Retry on rate limit", "Recover from rate limit" ], "keywords": [ "retry", "error", "rate limit" ] }, { "id": "task_0872", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on rate limit", "description": "Attempt action and retry up to 3 times if rate limit occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Rate limit", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle rate limit with retry", "Retry on rate limit", "Recover from rate limit" ], "keywords": [ "retry", "error", "rate limit" ] }, { "id": "task_0873", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on rate limit", "description": "Attempt action and retry up to 3 times if rate limit occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Rate limit", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle rate limit with retry", "Retry on rate limit", "Recover from rate limit" ], "keywords": [ "retry", "error", "rate limit" ] }, { "id": "task_0874", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on invalid input", "description": "Attempt action and retry up to 3 times if invalid input occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Invalid input", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle invalid input with retry", "Retry on invalid input", "Recover from invalid input" ], "keywords": [ "retry", "error", "invalid input" ] }, { "id": "task_0875", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on invalid input", "description": "Attempt action and retry up to 3 times if invalid input occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Invalid input", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle invalid input with retry", "Retry on invalid input", "Recover from invalid input" ], "keywords": [ "retry", "error", "invalid input" ] }, { "id": "task_0876", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on invalid input", "description": "Attempt action and retry up to 3 times if invalid input occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Invalid input", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle invalid input with retry", "Retry on invalid input", "Recover from invalid input" ], "keywords": [ "retry", "error", "invalid input" ] }, { "id": "task_0877", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on invalid input", "description": "Attempt action and retry up to 3 times if invalid input occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Invalid input", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle invalid input with retry", "Retry on invalid input", "Recover from invalid input" ], "keywords": [ "retry", "error", "invalid input" ] }, { "id": "task_0878", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on invalid input", "description": "Attempt action and retry up to 3 times if invalid input occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Invalid input", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle invalid input with retry", "Retry on invalid input", "Recover from invalid input" ], "keywords": [ "retry", "error", "invalid input" ] }, { "id": "task_0879", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on invalid input", "description": "Attempt action and retry up to 3 times if invalid input occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Invalid input", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle invalid input with retry", "Retry on invalid input", "Recover from invalid input" ], "keywords": [ "retry", "error", "invalid input" ] }, { "id": "task_0880", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on invalid input", "description": "Attempt action and retry up to 3 times if invalid input occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Invalid input", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle invalid input with retry", "Retry on invalid input", "Recover from invalid input" ], "keywords": [ "retry", "error", "invalid input" ] }, { "id": "task_0881", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on invalid input", "description": "Attempt action and retry up to 3 times if invalid input occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Invalid input", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle invalid input with retry", "Retry on invalid input", "Recover from invalid input" ], "keywords": [ "retry", "error", "invalid input" ] }, { "id": "task_0882", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on invalid input", "description": "Attempt action and retry up to 3 times if invalid input occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Invalid input", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle invalid input with retry", "Retry on invalid input", "Recover from invalid input" ], "keywords": [ "retry", "error", "invalid input" ] }, { "id": "task_0883", "category": "error_handling", "subcategory": "retry", "difficulty": "medium", "title": "Retry on invalid input", "description": "Attempt action and retry up to 3 times if invalid input occurs", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "retry", "check_element" ], "expected_operation_count": 6, "context": "Error handling: Invalid input", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": { "action": "click", "selector": "#submit-button" }, "max_attempts": 3, "backoff_ms": 1000 }, { "action": "check_element", "selector": ".success-message" } ], "variations": [ "Handle invalid input with retry", "Retry on invalid input", "Recover from invalid input" ], "keywords": [ "retry", "error", "invalid input" ] }, { "id": "task_0884", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0885", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0886", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0887", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0888", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0889", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0890", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0891", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0892", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0893", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0894", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0895", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0896", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0897", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0898", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0899", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0900", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0901", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0902", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0903", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0904", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0905", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0906", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0907", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0908", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0909", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0910", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0911", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0912", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0913", "category": "error_handling", "subcategory": "fallback", "difficulty": "medium", "title": "Try primary selector then fallback", "description": "Attempt to click element with primary selector, fallback to alternative if not found", "url_pattern": "https://example.com", "expected_actions": [ "navigate", "try_catch", "click" ], "expected_operation_count": 5, "context": "Fallback selector strategy", "ground_truth_dsl": [ { "action": "navigate", "url": "https://example.com" }, { "action": "try_catch", "try_actions": [ { "action": "click", "selector": "#primary-button" } ], "catch_actions": [ { "action": "click", "selector": ".fallback-button" } ] } ], "variations": [ "Use fallback selector", "Try primary then alternative", "Fallback strategy" ], "keywords": [ "fallback", "alternative", "error handling" ] }, { "id": "task_0914", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0915", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0916", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0917", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0918", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0919", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0920", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0921", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0922", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0923", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0924", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0925", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0926", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0927", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0928", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0929", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0930", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0931", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0932", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0933", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0934", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0935", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0936", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0937", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0938", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0939", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0940", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0941", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0942", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] }, { "id": "task_0943", "category": "error_handling", "subcategory": "validation", "difficulty": "simple", "title": "Check for validation errors", "description": "Submit form and check if validation errors appear", "url_pattern": "https://form.example.com", "expected_actions": [ "navigate", "fill_form", "click", "check_element" ], "expected_operation_count": 6, "context": "Form validation error checking", "ground_truth_dsl": [ { "action": "navigate", "url": "https://form.example.com" }, { "action": "fill_form", "fields": { "#email": "invalid-email" } }, { "action": "click", "selector": "#submit" }, { "action": "check_element", "selector": ".error-message", "expected_state": "visible" } ], "variations": [ "Check form validation", "Verify error messages", "Test form errors" ], "keywords": [ "validation", "error", "form" ] } ] }