Create gui_grounding_dataset.jsonl
Browse files- gui_grounding_dataset.jsonl +98 -0
gui_grounding_dataset.jsonl
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"instruction": "Open Google homepage.", "actions": [{"action": "open_url", "value": "https://google.com"}]}
|
| 2 |
+
{"instruction": "Search Google for Python Playwright.", "actions": [{"action": "type", "target": "textarea[name=q]", "value": "Python Playwright"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 3 |
+
{"instruction": "Click the Gmail link.", "actions": [{"action": "click", "target": "text=Gmail"}]}
|
| 4 |
+
{"instruction": "Open YouTube and search for AI tutorials.", "actions": [{"action": "open_url", "value": "https://youtube.com"}, {"action": "type", "target": "input#search", "value": "AI tutorials"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 5 |
+
{"instruction": "Play the first video on YouTube.", "actions": [{"action": "click", "target": "ytd-video-renderer >> nth=0"}]}
|
| 6 |
+
{"instruction": "Log in with username Arun.", "actions": [{"action": "type", "target": "input#username", "value": "Arun"}]}
|
| 7 |
+
{"instruction": "Enter password secretly.", "actions": [{"action": "type", "target": "input[type=password]", "value": "MySecret123"}]}
|
| 8 |
+
{"instruction": "Click the login button.", "actions": [{"action": "click", "target": "button[type=submit}"}]}
|
| 9 |
+
{"instruction": "Scroll down the page.", "actions": [{"action": "scroll", "options": {"count": 2, "direction": "down"}}]}
|
| 10 |
+
{"instruction": "Scroll back up.", "actions": [{"action": "scroll", "options": {"count": 2, "direction": "up"}}]}
|
| 11 |
+
{"instruction": "Check the terms and conditions box.", "actions": [{"action": "check", "target": "#terms"}]}
|
| 12 |
+
{"instruction": "Uncheck the newsletter option.", "actions": [{"action": "uncheck", "target": "#newsletter"}]}
|
| 13 |
+
{"instruction": "Select Male as gender.", "actions": [{"action": "radio", "target": "input[value=male]"}]}
|
| 14 |
+
{"instruction": "Choose India from country dropdown.", "actions": [{"action": "select", "target": "#country", "value": "India"}]}
|
| 15 |
+
{"instruction": "Submit the registration form.", "actions": [{"action": "click", "target": "button[type=submit]"}]}
|
| 16 |
+
{"instruction": "Upload resume file.", "actions": [{"action": "upload", "target": "input[type=file]", "value": "/home/user/resume.pdf"}]}
|
| 17 |
+
{"instruction": "Download the report.", "actions": [{"action": "click", "target": "text=Download"}]}
|
| 18 |
+
{"instruction": "Go back to the previous page.", "actions": [{"action": "back"}]}
|
| 19 |
+
{"instruction": "Move forward in browser history.", "actions": [{"action": "forward"}]}
|
| 20 |
+
{"instruction": "Reload the current page.", "actions": [{"action": "refresh"}]}
|
| 21 |
+
{"instruction": "Open Twitter homepage.", "actions": [{"action": "open_url", "value": "https://twitter.com"}]}
|
| 22 |
+
{"instruction": "Search Twitter for GUI automation.", "actions": [{"action": "type", "target": "input[data-testid=SearchBox_Search_Input]", "value": "GUI automation"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 23 |
+
{"instruction": "Click the first tweet.", "actions": [{"action": "click", "target": "article >> nth=0"}]}
|
| 24 |
+
{"instruction": "Open Facebook homepage.", "actions": [{"action": "open_url", "value": "https://facebook.com"}]}
|
| 25 |
+
{"instruction": "Enter email into login field.", "actions": [{"action": "type", "target": "input#email", "value": "arun@example.com"}]}
|
| 26 |
+
{"instruction": "Enter password in Facebook login.", "actions": [{"action": "type", "target": "input#pass", "value": "secret123"}]}
|
| 27 |
+
{"instruction": "Click Facebook login button.", "actions": [{"action": "click", "target": "button[name=login]"}]}
|
| 28 |
+
{"instruction": "Accept the popup dialog.", "actions": [{"action": "dialog", "value": "accept"}]}
|
| 29 |
+
{"instruction": "Dismiss the confirmation dialog.", "actions": [{"action": "dialog", "value": "dismiss"}]}
|
| 30 |
+
{"instruction": "Take a screenshot of the page.", "actions": [{"action": "screenshot", "value": "page.png"}]}
|
| 31 |
+
{"instruction": "Highlight the submit button.", "actions": [{"action": "highlight", "target": "button#submit"}]}
|
| 32 |
+
{"instruction": "Open Amazon homepage.", "actions": [{"action": "open_url", "value": "https://amazon.com"}]}
|
| 33 |
+
{"instruction": "Search for iPhone 16.", "actions": [{"action": "type", "target": "input#twotabsearchtextbox", "value": "iPhone 16"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 34 |
+
{"instruction": "Click the first product result.", "actions": [{"action": "click", "target": ".s-result-item >> nth=0"}]}
|
| 35 |
+
{"instruction": "Add item to cart.", "actions": [{"action": "click", "target": "#add-to-cart-button"}]}
|
| 36 |
+
{"instruction": "Proceed to checkout.", "actions": [{"action": "click", "target": "#proceed-to-checkout"}]}
|
| 37 |
+
{"instruction": "Open GitHub homepage.", "actions": [{"action": "open_url", "value": "https://github.com"}]}
|
| 38 |
+
{"instruction": "Search GitHub for Playwright repo.", "actions": [{"action": "type", "target": "input[name=q]", "value": "Playwright"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 39 |
+
{"instruction": "Click the first repository link.", "actions": [{"action": "click", "target": "ul.repo-list li >> nth=0"}]}
|
| 40 |
+
{"instruction": "Star the repository.", "actions": [{"action": "click", "target": "button[aria-label*='Star']"}]}
|
| 41 |
+
{"instruction": "Open LinkedIn homepage.", "actions": [{"action": "open_url", "value": "https://linkedin.com"}]}
|
| 42 |
+
{"instruction": "Enter LinkedIn username.", "actions": [{"action": "type", "target": "input#username", "value": "arun123"}]}
|
| 43 |
+
{"instruction": "Enter LinkedIn password.", "actions": [{"action": "type", "target": "input#password", "value": "secret456"}]}
|
| 44 |
+
{"instruction": "Click LinkedIn sign-in button.", "actions": [{"action": "click", "target": "button[type=submit]"}]}
|
| 45 |
+
{"instruction": "Open settings menu.", "actions": [{"action": "click", "target": "button#settings"}]}
|
| 46 |
+
{"instruction": "Log out of the account.", "actions": [{"action": "click", "target": "text=Logout"}]}
|
| 47 |
+
{"instruction": "Open Wikipedia homepage.", "actions": [{"action": "open_url", "value": "https://wikipedia.org"}]}
|
| 48 |
+
{"instruction": "Search for Artificial Intelligence on Wikipedia.", "actions": [{"action": "type", "target": "input#searchInput", "value": "Artificial Intelligence"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 49 |
+
{"instruction": "Click the first heading link.", "actions": [{"action": "click", "target": "h1"}]}
|
| 50 |
+
{"instruction": "Open Spotify homepage.", "actions": [{"action": "open_url", "value": "https://spotify.com"}]}
|
| 51 |
+
{"instruction": "Search Spotify for relaxing music.", "actions": [{"action": "type", "target": "input[placeholder='Search']", "value": "relaxing music"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 52 |
+
{"instruction": "Play the first Spotify track.", "actions": [{"action": "click", "target": ".tracklist-row >> nth=0"}]}
|
| 53 |
+
{"instruction": "Pause the Spotify player.", "actions": [{"action": "click", "target": "button[title=Pause]"}]}
|
| 54 |
+
{"instruction": "Skip to the next track.", "actions": [{"action": "click", "target": "button[title=Next]"}]}
|
| 55 |
+
{"instruction": "Open Gmail inbox.", "actions": [{"action": "open_url", "value": "https://mail.google.com"}]}
|
| 56 |
+
{"instruction": "Click compose new mail.", "actions": [{"action": "click", "target": "div[role=button][gh='cm']"}]}
|
| 57 |
+
{"instruction": "Type recipient email.", "actions": [{"action": "type", "target": "textarea[name=to]", "value": "friend@example.com"}]}
|
| 58 |
+
{"instruction": "Enter email subject.", "actions": [{"action": "type", "target": "input[name=subjectbox]", "value": "Meeting Update"}]}
|
| 59 |
+
{"instruction": "Write email body.", "actions": [{"action": "type", "target": "div[aria-label='Message Body']", "value": "Hey, let’s meet tomorrow."}]}
|
| 60 |
+
{"instruction": "Send the email.", "actions": [{"action": "click", "target": "div[aria-label*='Send']"}]}
|
| 61 |
+
{"instruction": "Open Slack web app.", "actions": [{"action": "open_url", "value": "https://slack.com"}]}
|
| 62 |
+
{"instruction": "Search Slack for project updates.", "actions": [{"action": "type", "target": "input[aria-label='Search']", "value": "project updates"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 63 |
+
{"instruction": "Send message in Slack channel.", "actions": [{"action": "type", "target": "div[role=textbox]", "value": "Hello team!"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 64 |
+
{"instruction": "Open Notion workspace.", "actions": [{"action": "open_url", "value": "https://notion.so"}]}
|
| 65 |
+
{"instruction": "Create new Notion page.", "actions": [{"action": "click", "target": "div[role=button][data-root=AddPage]"}]}
|
| 66 |
+
{"instruction": "Type title in Notion page.", "actions": [{"action": "type", "target": "div[role=textbox]", "value": "My Notes"}]}
|
| 67 |
+
{"instruction": "Add paragraph text.", "actions": [{"action": "type", "target": "div[role=textbox]", "value": "This is a test note."}]}
|
| 68 |
+
{"instruction": "Open Outlook mail.", "actions": [{"action": "open_url", "value": "https://outlook.com"}]}
|
| 69 |
+
{"instruction": "Compose a new Outlook email.", "actions": [{"action": "click", "target": "button[aria-label='New mail']"}]}
|
| 70 |
+
{"instruction": "Add recipient to Outlook email.", "actions": [{"action": "type", "target": "input[aria-label='To']", "value": "boss@example.com"}]}
|
| 71 |
+
{"instruction": "Add subject to Outlook email.", "actions": [{"action": "type", "target": "input[aria-label='Add a subject']", "value": "Report Update"}]}
|
| 72 |
+
{"instruction": "Send Outlook email.", "actions": [{"action": "click", "target": "button[aria-label='Send']"}]}
|
| 73 |
+
{"instruction": "Open Instagram web.", "actions": [{"action": "open_url", "value": "https://instagram.com"}]}
|
| 74 |
+
{"instruction": "Search Instagram for AI.", "actions": [{"action": "type", "target": "input[aria-label='Search input']", "value": "AI"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 75 |
+
{"instruction": "Like the first Instagram post.", "actions": [{"action": "click", "target": "article >> nth=0 button[aria-label=Like]"}]}
|
| 76 |
+
{"instruction": "Comment on first Instagram post.", "actions": [{"action": "click", "target": "textarea"}, {"action": "type", "target": "textarea", "value": "Nice post!"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 77 |
+
{"instruction": "Open Google Maps.", "actions": [{"action": "open_url", "value": "https://maps.google.com"}]}
|
| 78 |
+
{"instruction": "Search Maps for restaurants near me.", "actions": [{"action": "type", "target": "input#searchboxinput", "value": "restaurants near me"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 79 |
+
{"instruction": "Zoom in on the map.", "actions": [{"action": "click", "target": "button[aria-label='Zoom in']"}]}
|
| 80 |
+
{"instruction": "Zoom out on the map.", "actions": [{"action": "click", "target": "button[aria-label='Zoom out']"}]}
|
| 81 |
+
{"instruction": "Get directions to Delhi.", "actions": [{"action": "click", "target": "button[aria-label='Directions']"}, {"action": "type", "target": "input#sb_ifc51", "value": "Delhi"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 82 |
+
{"instruction": "Open Trello board.", "actions": [{"action": "open_url", "value": "https://trello.com"}]}
|
| 83 |
+
{"instruction": "Create new Trello card.", "actions": [{"action": "click", "target": "button[aria-label='Add a card']"}, {"action": "type", "target": "textarea", "value": "New Task"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 84 |
+
{"instruction": "Move card to Done column.", "actions": [{"action": "drag_drop", "target": ".list-card >> nth=0", "value": ".list[aria-label='Done']"}]}
|
| 85 |
+
{"instruction": "Archive the Trello card.", "actions": [{"action": "click", "target": "button[aria-label='Archive']"}]}
|
| 86 |
+
{"instruction": "Open Zoom web client.", "actions": [{"action": "open_url", "value": "https://zoom.us"}]}
|
| 87 |
+
{"instruction": "Schedule new Zoom meeting.", "actions": [{"action": "click", "target": "a[href='/meeting/schedule']"}]}
|
| 88 |
+
{"instruction": "Fill Zoom meeting topic.", "actions": [{"action": "type", "target": "input#topic", "value": "Team Sync"}]}
|
| 89 |
+
{"instruction": "Set Zoom meeting date.", "actions": [{"action": "type", "target": "input#start_date", "value": "2025-09-30"}]}
|
| 90 |
+
{"instruction": "Save Zoom meeting.", "actions": [{"action": "click", "target": "button[type=submit]"}]}
|
| 91 |
+
{"instruction": "Open Calendar app.", "actions": [{"action": "open_url", "value": "https://calendar.google.com"}]}
|
| 92 |
+
{"instruction": "Create new calendar event.", "actions": [{"action": "click", "target": "div[role=button][gh='new-event']"}]}
|
| 93 |
+
{"instruction": "Enter calendar event title.", "actions": [{"action": "type", "target": "input[aria-label='Add title']", "value": "Project Meeting"}]}
|
| 94 |
+
{"instruction": "Save calendar event.", "actions": [{"action": "click", "target": "button[aria-label='Save']"}]}
|
| 95 |
+
{"instruction": "Open Medium homepage.", "actions": [{"action": "open_url", "value": "https://medium.com"}]}
|
| 96 |
+
{"instruction": "Search Medium for AI articles.", "actions": [{"action": "type", "target": "input[placeholder='Search']", "value": "AI"}, {"action": "keypress", "options": {"key": "Enter"}}]}
|
| 97 |
+
{"instruction": "Read the first Medium article.", "actions": [{"action": "click", "target": "article >> nth=0"}]}
|
| 98 |
+
{"instruction": "Clap for the article.", "actions": [{"action": "click", "target": "button[aria-label='Clap']"}]}
|