File size: 81,369 Bytes
360df42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 | - id: download_trigger-antd-T01
name: Download invoice PDF from primary button
canonical_type: download_trigger
implementation_source: antd
implementation_variant: button_primary
implementation_component: 'AntD: Button (type=primary, href) rendered as <a download> (compose)'
task_template: activate
secondary_template: null
browsergym_goal: 'Download the invoice PDF for Invoice #1042 by clicking the "Download invoice PDF" button. The task will
finish automatically when done.'
ui_copy: 'Invoice #1042 — Use the button below to download the invoice PDF.'
setup_description: |-
Layout: isolated_card centered on the page.
The card is titled "Invoice #1042" and shows a short summary (amount, date).
Primary action area contains a large AntD primary Button labeled "Download invoice PDF" with a download icon; it is implemented as an anchor (<a>) with an href to a same-origin blob URL and a download attribute of "invoice-1042.pdf".
A secondary default Button labeled "Preview" sits to the right as a distractor (opens an inline preview panel but does not download).
Initial state text below the buttons reads "Last download: never".
When the correct button is clicked, a toast appears: "Download started: invoice-1042.pdf".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 1
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 1
disambiguation_load: 1
justification: Single large primary button with clear label; no overlays or competing download controls. Feedback is a
simple toast confirming the filename.
success_trigger:
human_readable:
- A download is initiated for file_id=invoice_1042_pdf with suggested filename "invoice-1042.pdf".
- No confirmation step is required.
- The correct download trigger on the card is the one that must be clicked (single instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: invoice_1042_pdf
filename: invoice-1042.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Preview" (opens preview but does not initiate a download).
- Any download event for a different file_id or filename.
- Opening/closing any UI without initiating the download.
expected_interaction_path: Click the "Download invoice PDF" button → observe toast "Download started".
- id: download_trigger-antd-T02
name: Download monthly statement CSV via link-style button
canonical_type: download_trigger
implementation_source: antd
implementation_variant: button_link
implementation_component: 'AntD: Button (type=link, href) rendered as <a download> (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the January 2026 account statement CSV by clicking the "Download CSV" link. The task will finish
automatically when done.
ui_copy: Account statement (January 2026). Download CSV
setup_description: |-
Layout: isolated_card centered on the page.
The card header reads "Account statement — January 2026".
In the body, there is an AntD link-style Button labeled "Download CSV" (blue link styling) implemented as an <a> element with a download attribute "statement-2026-01.csv".
A nearby plain text link "View online" (distractor) navigates to a preview page but does not download.
Initial status pill shows "Not downloaded".
On successful download trigger, the status pill updates to "Download started" and a toast includes the filename.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: The target is a smaller link-style control, but it is clearly labeled and unique on the card. No overlay
layers and immediate textual feedback.
success_trigger:
human_readable:
- A download is initiated for file_id=statement_2026_01_csv with suggested filename "statement-2026-01.csv".
- No confirmation step is required.
- Single download trigger instance on the page.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: statement_2026_01_csv
filename: statement-2026-01.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "View online" instead of downloading.
- Any download event for a different file_id/filename.
- Right-click context menu actions that do not initiate a download event (if applicable).
expected_interaction_path: Click "Download CSV" link button → observe status pill/toast update.
- id: download_trigger-antd-T03
name: Download welcome packet from a table cell
canonical_type: download_trigger
implementation_source: antd
implementation_variant: table_cell_link
implementation_component: 'AntD: Table + Typography.Link (<a download>) in a cell (compose)'
task_template: table_operation
secondary_template: null
browsergym_goal: In the attachments table, download the "Welcome packet" PDF by clicking its download link. The task will
finish automatically when done.
ui_copy: Attachments table — Click a download link to download the file.
setup_description: |-
Layout: table_cell scene centered on the page.
A small AntD Table with columns: "Document", "Type", "Download".
There is exactly one row:
- Document: "Welcome packet"
- Type: "PDF"
- Download: a blue text link labeled "Download" implemented as <a download="welcome-packet.pdf">.
Above the table there is a disabled Search input and a "Refresh" button (distractors, not required).
When the download link is clicked, a toast appears: "Download started: welcome-packet.pdf".
scene_context:
theme: light
spacing: comfortable
layout: table_cell
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: easy
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Target is a small in-table link but there is only one row, so choice interference is minimal. Clear column
labeling and immediate toast feedback.
success_trigger:
human_readable:
- A download is initiated for file_id=welcome_packet_pdf with suggested filename "welcome-packet.pdf".
- No confirmation step is required.
- Only one download link exists in the table (single instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: welcome_packet_pdf
filename: welcome-packet.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Refresh" or interacting with the disabled Search field.
- Any download event for a different file_id/filename.
- Sorting/filtering the table without initiating the download.
expected_interaction_path: Locate the "Welcome packet" row → click the "Download" link in the Download column.
- id: download_trigger-antd-T04
name: Download brand logo PNG from form section
canonical_type: download_trigger
implementation_source: antd
implementation_variant: text_link_inline
implementation_component: 'AntD: Typography.Link (<a download>) inside Form section (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the brand logo PNG by clicking the "Download logo" link in the Brand assets section. The task
will finish automatically when done.
ui_copy: Brand assets — Download logo
setup_description: |-
Layout: form_section centered on the page.
A settings-like form shows several labeled fields (Company name, Website, Support email) which are pre-filled and not required for the task.
A subsection titled "Brand assets" contains a small preview of the logo (thumbnail) and a single text link labeled "Download logo".
The "Download logo" link is implemented as <a download="brand-logo.png"> pointing to a same-origin blob URL.
A secondary link "Guidelines (opens in new tab)" sits below as a distractor.
On click, a toast appears confirming: "Download started: brand-logo.png".
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: easy
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Single clearly labeled link in a realistic form section. Some surrounding form fields add light clutter
but do not require interaction.
success_trigger:
human_readable:
- A download is initiated for file_id=brand_logo_png with suggested filename "brand-logo.png".
- No confirmation step is required.
- Only one download trigger in the Brand assets section.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: brand_logo_png
filename: brand-logo.png
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Guidelines" (opens a new tab) instead of downloading.
- Any download event for a different file_id/filename.
- Editing form fields without initiating the download.
expected_interaction_path: Find the "Brand assets" section → click "Download logo".
- id: download_trigger-antd-T05
name: Export transactions using a download dropdown
canonical_type: download_trigger
implementation_source: antd
implementation_variant: dropdown_menu
implementation_component: 'AntD: Dropdown + Button + Menu.Item (compose download options)'
task_template: open_and_select
secondary_template: null
browsergym_goal: Export the January 2026 transactions as a CSV by opening the "Download" menu and selecting "CSV". The task
will finish automatically when done.
ui_copy: Export transactions — Use the Download menu to choose a format.
setup_description: |-
Layout: isolated_card centered on the page.
Card title: "Export transactions (January 2026)".
Primary control is an AntD Button labeled "Download" with a down-caret; it opens an AntD Dropdown menu.
The Dropdown menu contains three items with format labels: "CSV", "PDF", and "JSON".
Selecting an item immediately initiates a download for that format (no extra Apply step).
A disabled menu item "Email me instead" appears at the bottom as a distractor.
Initial state shows "No export started"; after selecting CSV, a toast shows "Download started: transactions-jan-2026.csv".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Requires opening a dropdown overlay and selecting the correct item among several similar options. Clear
labels reduce ambiguity, but there are multiple interactables and one overlay layer.
success_trigger:
human_readable:
- A download is initiated for file_id=transactions_jan_2026_csv with suggested filename "transactions-jan-2026.csv".
- The download must be triggered via the CSV menu item (not PDF/JSON).
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: transactions_jan_2026_csv
filename: transactions-jan-2026.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting "PDF" or "JSON" (downloads the wrong file).
- Opening the dropdown but not selecting any format.
- Clicking the disabled "Email me instead" item.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download" → dropdown opens → click "CSV" item.
- id: download_trigger-antd-T06
name: Confirm sensitive audit log download
canonical_type: download_trigger
implementation_source: antd
implementation_variant: popconfirm
implementation_component: 'AntD: Button + Popconfirm (confirm before download)'
task_template: confirm_cancel
secondary_template: null
browsergym_goal: Download the redacted audit log CSV. Click the "Download audit log" button and confirm the download when
prompted. The task will finish automatically when done.
ui_copy: Audit log export — Download audit log (confirmation required)
setup_description: |-
Layout: isolated_card anchored near the bottom-left of the viewport (not centered).
The card is titled "Audit log export".
A primary Button labeled "Download audit log" triggers an AntD Popconfirm.
Popconfirm text: "This file contains sensitive data. Continue?" with two actions: "Cancel" and "Download".
The download does not start until the "Download" confirm button in the Popconfirm is clicked.
A nearby secondary control "Copy share link" is present as a distractor.
After confirming, a toast appears: "Download started: audit-log-redacted.csv".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: bottom_left
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 3
semantic_observability: 2
disambiguation_load: 1
justification: Two-step flow with an inline confirmation overlay; the download only starts after confirming. Placement
in the bottom-left slightly increases acquisition difficulty.
success_trigger:
human_readable:
- Popconfirm is accepted via the "Download" confirm control.
- A download is initiated for file_id=audit_log_redacted_csv with suggested filename "audit-log-redacted.csv".
- No other file download qualifies.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: audit_log_redacted_csv
filename: audit-log-redacted.csv
tolerance: null
require_confirm: true
confirm_control: Download
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Cancel" in the Popconfirm (no download should start).
- Clicking outside the Popconfirm to dismiss it without downloading.
- Any download event for a different file_id/filename.
- Clicking "Copy share link" (clipboard action, not download).
expected_interaction_path: Click "Download audit log" → Popconfirm appears → click "Download" in Popconfirm.
- id: download_trigger-antd-T07
name: Scroll to find appendix download link
canonical_type: download_trigger
implementation_source: antd
implementation_variant: attachment_list
implementation_component: 'AntD: List of Typography.Link download anchors (compose)'
task_template: scroll_find
secondary_template: null
browsergym_goal: Scroll down to the Attachments section and download the "Release notes appendix" ZIP. The task will finish
automatically when done.
ui_copy: Release notes — Attachments are at the bottom of the page.
setup_description: |-
Layout: dashboard-style page with a long "Release notes" article.
At initial load, the viewport shows the top of the article and none of the attachment links are visible.
At the bottom of the page there is an "Attachments" panel containing exactly three downloadable items, each with a label and a download link:
1) "Release notes PDF" → downloads release-notes.pdf
2) "Changelog CSV" → downloads changelog.csv
3) "Release notes appendix" → downloads release-notes-appendix.zip (TARGET)
Each download control is a blue Typography.Link implemented as an <a download=...>.
A "Back to top" button floats in the corner as a distractor.
Clicking the correct link shows a toast: "Download started: release-notes-appendix.zip".
scene_context:
theme: light
spacing: comfortable
layout: dashboard
placement: center
scale: default
instances: 3
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Requires scrolling to reveal the target and selecting the correct link among multiple similar attachment
downloads. No overlays, but disambiguation and search-by-label are required.
success_trigger:
human_readable:
- A download is initiated for file_id=release_appendix_zip with suggested filename "release-notes-appendix.zip".
- The download must come from the "Release notes appendix" attachment link (not the other attachments).
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: release_appendix_zip
filename: release-notes-appendix.zip
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Release notes appendix
terminal_condition: true
negative_cases:
- Downloading "release-notes.pdf" or "changelog.csv" instead of the appendix ZIP.
- Scrolling but not initiating any download.
- Clicking "Back to top" without downloading.
expected_interaction_path: Scroll down until the Attachments panel is visible → click the "Release notes appendix" download
link.
- id: download_trigger-antd-T08
name: Download config export from nested menu (dark, compact)
canonical_type: download_trigger
implementation_source: antd
implementation_variant: nested_menu_icon
implementation_component: 'AntD: Dropdown + Menu with SubMenu (composite) triggered by icon-only Button'
task_template: open_and_select
secondary_template: null
browsergym_goal: In the Export menu, download the configuration as XML. Open the menu and choose "Export" → "XML". The task
will finish automatically when done.
ui_copy: Export tools — Use the menu to download a configuration export.
setup_description: |-
Layout: isolated_card centered on the page in dark theme with compact spacing.
Card title: "Export tools".
There is an icon-only AntD Button (download icon) labeled via tooltip "Download"; clicking it opens a Dropdown Menu.
Menu items:
- "Download latest" (downloads a different file; distractor)
- "Export" (opens a nested submenu)
Inside the "Export" submenu are three items: "CSV", "JSON", "XML".
Selecting "XML" initiates a download of "config-export.xml".
No confirmation dialog; feedback is a toast: "Download started: config-export.xml".
scene_context:
theme: dark
spacing: compact
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 4
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 2
justification: Small icon trigger plus a nested submenu increases acquisition difficulty and interaction depth. Compact
spacing in dark theme reduces visual separation between menu items.
success_trigger:
human_readable:
- A download is initiated for file_id=config_export_xml with suggested filename "config-export.xml".
- The selection must be the XML item inside the Export submenu (not other menu items).
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: config_export_xml
filename: config-export.xml
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting "CSV" or "JSON" in the submenu (downloads the wrong format).
- Clicking "Download latest" (downloads a different file).
- Opening the menu but closing it without initiating a download.
- Any download event for a different file_id/filename.
expected_interaction_path: Click the icon-only Download button → menu opens → open "Export" submenu → click "XML".
- id: download_trigger-antd-T09
name: Match a reference thumbnail and download the correct asset
canonical_type: download_trigger
implementation_source: antd
implementation_variant: icon_button_visual_match
implementation_component: 'AntD: Card grid + icon Button rendered as <a download> (compose)'
task_template: match_reference
secondary_template: null
browsergym_goal: Download the asset that matches the reference preview shown at the top of the card. Use the download icon
on the matching asset card. The task will finish automatically when done.
ui_copy: Asset downloader — Match the reference preview and download the matching asset.
setup_description: |-
Layout: isolated_card centered on the page.
Component scale is set to small (smaller cards and icons than default).
At the top of the card, a small reference preview thumbnail is shown (no filename text).
Below it are two asset cards side-by-side, each showing a thumbnail and a right-aligned download icon:
- Card label: "Asset A" with thumbnail pattern A (distractor)
- Card label: "Asset B" with thumbnail pattern B (TARGET matches the reference preview)
Each download icon is an AntD icon-only Button implemented as an <a download=...>.
Clicking the correct card's download icon initiates download "pattern-logo.svg" and shows a toast with the filename.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: small
instances: 2
guidance: visual
clutter: none
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 5
disambiguation_load: 4
justification: Target is a small icon and the correct choice is specified visually rather than by text, increasing observability
and disambiguation difficulty. Two similar instances require selecting the correct card.
success_trigger:
human_readable:
- A download is initiated for file_id=pattern_logo_svg with suggested filename "pattern-logo.svg".
- The download must be triggered from the matching asset card (instance "Asset B").
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: pattern_logo_svg
filename: pattern-logo.svg
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Asset B
terminal_condition: true
negative_cases:
- Downloading from the non-matching card (Asset A).
- Any download event for a different file_id/filename.
- Clicking on the thumbnail image without triggering the download icon (if thumbnail is non-clickable).
expected_interaction_path: Compare reference thumbnail to the two card thumbnails → click the download icon on the matching
card.
- id: download_trigger-antd-T10
name: Download a specific row export from dense table
canonical_type: download_trigger
implementation_source: antd
implementation_variant: table_row_icon
implementation_component: 'AntD: Table with per-row icon Button (<a download>) (compose)'
task_template: table_operation
secondary_template: null
browsergym_goal: In the regional sales table, download the CSV for the "North region" row by clicking its download icon.
The task will finish automatically when done.
ui_copy: Regional sales table — Download CSV per region.
setup_description: |-
Layout: table_cell scene centered on the page with compact spacing.
A dense AntD Table shows four rows (North region, South region, East region, West region) and several columns (Region, Last updated, Owner, Actions).
In the Actions column, each row contains two icon buttons: a view icon (distractor) and a download icon (TARGET control).
The download icon is implemented as an <a download=...> trigger for that row.
The page header includes filters (dropdowns and date range) and a "Refresh" button as additional clutter; they are not required.
Clicking the download icon in the "North region" row initiates "north-region-sales.csv" and shows a toast with the filename.
scene_context:
theme: light
spacing: compact
layout: table_cell
placement: center
scale: default
instances: 4
guidance: text
clutter: high
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: Dense table layout with multiple similar per-row icon targets requires careful row/column disambiguation.
Compact spacing and high clutter increase misclick risk.
success_trigger:
human_readable:
- A download is initiated for file_id=north_region_sales_csv with suggested filename "north-region-sales.csv".
- The download must be initiated from the download icon in the "North region" row (correct instance).
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: north_region_sales_csv
filename: north-region-sales.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: North region row
terminal_condition: true
negative_cases:
- Downloading from any other region row (South/East/West).
- Clicking the view icon instead of the download icon.
- Any download event for a different file_id/filename.
- Sorting/filtering the table without downloading.
expected_interaction_path: Locate the "North region" row → in its Actions cell click the download icon.
- id: download_trigger-mui-T01
name: Download receipt PDF from contained button
canonical_type: download_trigger
implementation_source: mui
implementation_variant: button_contained
implementation_component: 'MUI: Button (variant=contained, href) rendered as <a download> (compose)'
task_template: activate
secondary_template: null
browsergym_goal: 'Download the receipt PDF for Receipt #7781 by clicking the "Download receipt" button. The task will finish
automatically when done.'
ui_copy: 'Receipt #7781 — Download receipt'
setup_description: |-
Layout: isolated_card centered on the page.
The card title reads "Receipt #7781".
A prominent MUI contained Button labeled "Download receipt" is rendered as an anchor element because it has an href; it also includes download="receipt-7781.pdf".
A secondary outlined Button labeled "Open details" is present as a distractor and expands extra receipt metadata (no download).
Initial helper text under the button says "PDF file".
When the download trigger is clicked, an inline snackbar appears: "Download started: receipt-7781.pdf".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 1
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 1
disambiguation_load: 1
justification: Single large contained button with clear label; minimal clutter and direct feedback via snackbar.
success_trigger:
human_readable:
- A download is initiated for file_id=receipt_7781_pdf with suggested filename "receipt-7781.pdf".
- No confirmation step is required.
- Single download trigger instance on the card.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: receipt_7781_pdf
filename: receipt-7781.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Open details" without initiating a download.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download receipt" → observe snackbar confirmation.
- id: download_trigger-mui-T02
name: Download terms text via MUI Link
canonical_type: download_trigger
implementation_source: mui
implementation_variant: text_link
implementation_component: 'MUI: Link component (<a download>) (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the Terms of Service text file by clicking the "Download Terms" link. The task will finish automatically
when done.
ui_copy: Legal — Download Terms
setup_description: |-
Layout: isolated_card centered on the page.
Card header: "Legal".
Two MUI Link components are displayed in a short list:
- "Download Terms" (TARGET) implemented as <a download="terms-of-service.txt">.
- "View Terms online" (distractor) navigates to an internal page.
A small caption below notes: "Text file".
On successful download trigger, a snackbar appears with the filename.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Small link target but only one true download link is present, with immediate textual feedback.
success_trigger:
human_readable:
- A download is initiated for file_id=terms_txt with suggested filename "terms-of-service.txt".
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: terms_txt
filename: terms-of-service.txt
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "View Terms online" instead of downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Click the "Download Terms" link → observe snackbar.
- id: download_trigger-mui-T03
name: Download product image pack from form section
canonical_type: download_trigger
implementation_source: mui
implementation_variant: button_outlined
implementation_component: 'MUI: Button (variant=outlined, href) rendered as <a download> (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the product image pack ZIP by clicking the "Download image pack" button in the Media section.
The task will finish automatically when done.
ui_copy: Media — Download image pack
setup_description: |-
Layout: form_section centered on the page.
A settings form includes text fields (Title, SKU) and toggles (Published, Featured) as background clutter; none are required.
A subsection titled "Media" shows a small gallery preview and an outlined MUI Button labeled "Download image pack".
The button is rendered as an anchor element with download="product-images.zip".
A nearby icon button "Upload" is present as a distractor (does not download).
On click, a snackbar reads "Download started: product-images.zip".
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: easy
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Single download button within a realistic form; some extra controls increase clutter but the label is explicit.
success_trigger:
human_readable:
- A download is initiated for file_id=product_images_zip with suggested filename "product-images.zip".
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: product_images_zip
filename: product-images.zip
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Upload" or interacting with form fields without downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Find the Media section → click "Download image pack".
- id: download_trigger-mui-T04
name: Confirm user export download in dialog
canonical_type: download_trigger
implementation_source: mui
implementation_variant: dialog_confirm
implementation_component: 'MUI: Button + Dialog (confirmation before download)'
task_template: confirm_cancel
secondary_template: null
browsergym_goal: Download the user export CSV. Click "Download user export" and confirm the download in the dialog. The
task will finish automatically when done.
ui_copy: User export — Confirmation required
setup_description: |-
Layout: isolated_card centered on the page.
Card title: "User export".
A contained Button labeled "Download user export" opens a MUI Dialog.
Dialog title: "Confirm download" with warning text about sensitive data.
Dialog actions: "Cancel" and "Download". The download only starts after clicking "Download".
Outside the dialog, a text link "Learn more" is present as a distractor.
After confirming, a snackbar appears: "Download started: user-export.csv".
scene_context:
theme: light
spacing: comfortable
layout: modal_flow
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 2
disambiguation_load: 1
justification: Requires handling a modal dialog overlay and choosing the correct confirm action. Modal layering and extra
step raise depth and feedback dynamics compared to a single click.
success_trigger:
human_readable:
- The confirmation dialog is accepted via the "Download" action.
- A download is initiated for file_id=pii_export_csv with suggested filename "user-export.csv".
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: pii_export_csv
filename: user-export.csv
tolerance: null
require_confirm: true
confirm_control: Download
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Cancel" or dismissing the dialog without downloading.
- Any download event for a different file_id/filename.
- Closing the dialog via the X/escape without confirming.
expected_interaction_path: Click "Download user export" → dialog opens → click "Download" in dialog.
- id: download_trigger-mui-T05
name: Download the chart JSON that matches a reference preview
canonical_type: download_trigger
implementation_source: mui
implementation_variant: menu_with_previews
implementation_component: 'MUI: Button + Menu + MenuItem (each item triggers download) (compose)'
task_template: open_and_select
secondary_template: null
browsergym_goal: Open the "Download" menu and download the chart JSON that matches the reference preview shown in the card
header. The task will finish automatically when done.
ui_copy: Charts — Reference preview shown. Use the Download menu to pick the matching export.
setup_description: |-
Layout: isolated_card centered on the page.
Card header shows a small reference preview thumbnail (no filename), e.g., a tiny chart icon.
A MUI Button labeled "Download" opens a MUI Menu.
The menu contains three MenuItems, each showing a small thumbnail preview on the left and a label on the right:
- "Chart export A" (thumbnail A)
- "Chart export B" (thumbnail B) (TARGET matches the header reference preview)
- "Chart export C" (thumbnail C)
Selecting an item initiates download immediately (no extra Apply).
Target download filename is "metrics-chart.json" and a snackbar confirms the start.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: mixed
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 3
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 4
disambiguation_load: 2
justification: Requires opening a menu and selecting among multiple visually similar items based on a reference thumbnail.
Reduced textual anchoring increases observability difficulty.
success_trigger:
human_readable:
- A download is initiated for file_id=chart_ref_json with suggested filename "metrics-chart.json".
- The download must come from the menu item whose thumbnail matches the header reference preview.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: chart_ref_json
filename: metrics-chart.json
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting a non-matching chart export item (downloads a different file_id).
- Opening the menu but not selecting any item.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download" → compare menu thumbnails to header reference → click the matching menu item.
- id: download_trigger-mui-T06
name: Scroll inside attachments panel to download Appendix B
canonical_type: download_trigger
implementation_source: mui
implementation_variant: scrollable_panel_list
implementation_component: 'MUI: List + IconButton (download) inside scroll container (compose)'
task_template: scroll_find
secondary_template: null
browsergym_goal: In the Attachments panel, scroll until you see "Appendix B" and download it as a PDF using its download
icon. The task will finish automatically when done.
ui_copy: Attachments panel — Scroll to find Appendix B and download it.
setup_description: |-
Layout: dashboard scene with a floating Attachments panel anchored to the bottom-right of the viewport.
The floating panel has a fixed height and an internal scrollbar.
Inside the panel is a list of attachment items; only about three items are visible at a time.
Each list item shows the attachment title on the left and two small icon buttons on the right: a pin icon (distractor) and a download icon (TARGET).
The target item is titled "Appendix B" and downloads "appendix-b.pdf" when its download icon is clicked.
At initial load, "Appendix B" is not visible; it appears after scrolling within the panel.
A snackbar confirms: "Download started: appendix-b.pdf".
scene_context:
theme: light
spacing: comfortable
layout: dashboard
placement: bottom_right
scale: default
instances: 3
guidance: text
clutter: medium
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 3
justification: Requires locating the correct scrollable region and then clicking a small icon button within a list. Multiple
similar list items and dual-icon rows increase acquisition and disambiguation.
success_trigger:
human_readable:
- A download is initiated for file_id=appendix_b_pdf with suggested filename "appendix-b.pdf".
- The download must be triggered from the "Appendix B" list item (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: appendix_b_pdf
filename: appendix-b.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Appendix B
terminal_condition: true
negative_cases:
- Clicking the pin icon instead of the download icon.
- Downloading a different attachment item.
- Scrolling the main page instead of the Attachments panel and never revealing the target item.
expected_interaction_path: Identify the floating Attachments panel → scroll within the panel → find "Appendix B" → click
its download icon.
- id: download_trigger-mui-T07
name: Download a specific invoice export from a small table
canonical_type: download_trigger
implementation_source: mui
implementation_variant: table_row_link
implementation_component: 'MUI: Table + Link (<a download>) in cell (compose)'
task_template: table_operation
secondary_template: null
browsergym_goal: In the invoices table, download the CSV for the "January 2026" row by clicking its "Download CSV" link.
The task will finish automatically when done.
ui_copy: Invoices table — Download CSV per row.
setup_description: |-
Layout: table_cell scene centered on the page.
A compact MUI Table shows two invoice rows: "December 2025" and "January 2026".
Columns include Month, Total, Status, and Export.
In the Export column, each row has a MUI Link labeled "Download CSV" implemented as an anchor with a download attribute.
The target row is "January 2026" which downloads "invoice-jan-2026.csv".
A toolbar above the table has a non-functional filter dropdown and a "New invoice" button as clutter.
A snackbar confirms the download start.
scene_context:
theme: light
spacing: comfortable
layout: table_cell
placement: center
scale: default
instances: 2
guidance: text
clutter: medium
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Requires selecting the correct row in a table and clicking a small link among multiple similar row actions.
Moderate clutter from toolbar controls.
success_trigger:
human_readable:
- A download is initiated for file_id=table_row_invoice_csv with suggested filename "invoice-jan-2026.csv".
- The download must be triggered from the "January 2026" row (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: table_row_invoice_csv
filename: invoice-jan-2026.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: January 2026 row
terminal_condition: true
negative_cases:
- Downloading from the "December 2025" row.
- Interacting with toolbar controls without downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Locate the "January 2026" row → click its "Download CSV" link.
- id: download_trigger-mui-T08
name: Download the roadmap file by matching a visual badge
canonical_type: download_trigger
implementation_source: mui
implementation_variant: card_grid_visual
implementation_component: 'MUI: Card grid + IconButton download (compose)'
task_template: match_reference
secondary_template: null
browsergym_goal: Download the roadmap file that matches the reference badge shown above the grid. Click the download icon
on the matching card. The task will finish automatically when done.
ui_copy: Roadmap downloads — Match the reference badge and download the matching file.
setup_description: |-
Layout: isolated_card centered on the page.
At the top, a small reference badge (a colored shape/pattern) is displayed without text.
Below it is a 3-card grid. Each card contains:
- A small badge preview (different on each card)
- A short label ("Roadmap A", "Roadmap B", "Roadmap C")
- A small download IconButton in the top-right corner of the card
Only one card's badge matches the reference (TARGET is "Roadmap B").
Clicking the matching card's download icon triggers download "roadmap-preview.pptx".
A snackbar confirms the filename.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 3
guidance: visual
clutter: none
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 5
disambiguation_load: 4
justification: Selection depends on visual badge matching rather than text, making observability challenging. Multiple
similar cards and small download icons increase disambiguation and acquisition difficulty.
success_trigger:
human_readable:
- A download is initiated for file_id=ref_thumbnail_pptx with suggested filename "roadmap-preview.pptx".
- The download must be initiated from the matching card (instance "Roadmap B").
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: ref_thumbnail_pptx
filename: roadmap-preview.pptx
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Roadmap B
terminal_condition: true
negative_cases:
- Downloading from a non-matching card (Roadmap A or Roadmap C).
- Clicking on the card body without clicking the download icon (if the card body opens a preview drawer).
- Any download event for a different file_id/filename.
expected_interaction_path: Compare reference badge to the three card badges → click the download icon on the matching card.
- id: download_trigger-mui-T09
name: Open export drawer and download full backup
canonical_type: download_trigger
implementation_source: mui
implementation_variant: drawer_flow
implementation_component: 'MUI: Drawer + Buttons rendered as <a download> (compose)'
task_template: open_overlay
secondary_template: activate
browsergym_goal: Open the "Export Center" drawer and download the "Full backup (.zip)" file. The task will finish automatically
when done.
ui_copy: Export Center — Open the drawer to access download options.
setup_description: |-
Layout: drawer_flow.
At page load, the main view shows a small toolbar with a Button labeled "Open Export Center".
Clicking it opens a MUI Drawer that slides in from the right side (overlaying the page).
Inside the drawer are two clearly labeled download actions (two instances of the download trigger):
- "Quick export (.csv)" (distractor)
- "Full backup (.zip)" (TARGET)
Each action is a MUI Button rendered as an <a> with a download attribute.
Clicking "Full backup (.zip)" triggers download "full-backup.zip" and shows a snackbar.
The drawer can also be closed via an X icon (distractor).
scene_context:
theme: light
spacing: comfortable
layout: drawer_flow
placement: top_right
scale: default
instances: 2
guidance: text
clutter: low
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 4
justification: Requires opening a drawer overlay before the download controls are available and then choosing the correct
download among multiple options. Overlay layering and instance disambiguation increase difficulty.
success_trigger:
human_readable:
- The Export Center drawer is opened (prerequisite) and a download is initiated for file_id=full_backup_zip with suggested
filename "full-backup.zip".
- The download must be triggered via the "Full backup (.zip)" action (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: full_backup_zip
filename: full-backup.zip
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Full backup (.zip)
terminal_condition: true
negative_cases:
- Opening the drawer but downloading the quick export CSV instead.
- Closing the drawer without downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Open Export Center" → drawer opens → click "Full backup (.zip)".
- id: download_trigger-mui-T10
name: Download settings bundle from nested menu (dark, compact)
canonical_type: download_trigger
implementation_source: mui
implementation_variant: nested_menu_icon
implementation_component: 'MUI: IconButton + Menu + nested Popover submenu (composite)'
task_template: open_and_select
secondary_template: null
browsergym_goal: Download the Settings bundle as JSON. Open the overflow menu and choose "Export" → "Settings bundle (.json)".
The task will finish automatically when done.
ui_copy: Settings tools — Use the overflow menu to export settings.
setup_description: |-
Layout: isolated_card centered on the page in dark theme with compact spacing.
A small MUI IconButton with a "more" (three dots) icon opens an overflow Menu.
Menu items include: "Copy", "Share", and "Export".
Choosing "Export" opens a second-layer submenu (implemented as a nested Popover anchored to the Export item).
The submenu contains three download options:
- "Settings bundle (.json)" (TARGET) → downloads settings-bundle.json
- "Theme tokens (.json)" (distractor)
- "Shortcuts (.txt)" (distractor)
Selecting the target option triggers the download immediately and shows a snackbar.
No confirmation dialog beyond the nested submenu.
scene_context:
theme: dark
spacing: compact
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 4
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 2
justification: Small overflow icon plus a two-layer menu/submenu interaction increases depth and misclick risk, especially
in compact dark mode where spacing and contrast cues are reduced.
success_trigger:
human_readable:
- A download is initiated for file_id=settings_bundle_json with suggested filename "settings-bundle.json".
- The selection must come from the nested Export submenu option "Settings bundle (.json)".
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: settings_bundle_json
filename: settings-bundle.json
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting "Theme tokens" or "Shortcuts" (downloads wrong file).
- Opening the overflow menu but not opening the Export submenu.
- Closing menus without initiating a download.
- Any download event for a different file_id/filename.
expected_interaction_path: Click overflow IconButton → menu opens → click/activate "Export" → submenu opens → click "Settings
bundle (.json)".
- id: download_trigger-mantine-T01
name: Download inventory CSV from Mantine button link
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: button_as_anchor
implementation_component: 'Mantine: Button component="a" with download attribute (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the February 2026 inventory CSV by clicking the "Download inventory CSV" button. The task will
finish automatically when done.
ui_copy: Inventory export — Download inventory CSV
setup_description: |-
Layout: isolated_card centered on the page.
Card title: "Inventory export".
A Mantine Button labeled "Download inventory CSV" is rendered as an anchor (component="a") with href to a blob URL and download="inventory-feb-2026.csv".
A secondary subtle Button labeled "Preview" is present as a distractor (opens a preview panel only).
Below the buttons, helper text notes the file size.
On click, an inline notification appears: "Download started: inventory-feb-2026.csv".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 1
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 1
disambiguation_load: 1
justification: Single prominent button triggers the download directly, with clear label and immediate notification.
success_trigger:
human_readable:
- A download is initiated for file_id=inventory_feb_2026_csv with suggested filename "inventory-feb-2026.csv".
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: inventory_feb_2026_csv
filename: inventory-feb-2026.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Preview" instead of downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download inventory CSV" → observe notification.
- id: download_trigger-mantine-T02
name: Download onboarding guide PDF via Mantine Anchor
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: anchor_link
implementation_component: 'Mantine: Anchor (<a download>) (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the onboarding guide PDF by clicking the "Download onboarding guide" link. The task will finish
automatically when done.
ui_copy: Getting started — Download onboarding guide
setup_description: |-
Layout: isolated_card centered on the page.
A short "Getting started" card contains explanatory text and two links.
The first link is a Mantine Anchor labeled "Download onboarding guide" implemented as <a download="onboarding-guide.pdf">.
The second link "Read online" is a distractor that navigates to a documentation page.
Clicking the download link initiates download and shows a notification with the filename.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Small link target but clear labeling and only one download link. Immediate feedback reduces uncertainty.
success_trigger:
human_readable:
- A download is initiated for file_id=onboarding_pdf with suggested filename "onboarding-guide.pdf".
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: onboarding_pdf
filename: onboarding-guide.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Read online" instead of downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download onboarding guide" → observe notification.
- id: download_trigger-mantine-T03
name: Download avatar PNG from icon action
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: action_icon
implementation_component: 'Mantine: ActionIcon component="a" with download attribute (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the avatar image PNG by clicking the download icon next to the avatar preview. The task will finish
automatically when done.
ui_copy: Profile — Avatar preview with a download icon
setup_description: |-
Layout: isolated_card centered on the page.
The card shows a circular avatar preview on the left.
To the right of the avatar is a small Mantine ActionIcon (download glyph) with aria-label "Download avatar"; it is rendered as an anchor and uses download="avatar.png".
A second ActionIcon with an edit pencil (distractor) is placed nearby.
On click of the download icon, a small notification appears: "Download started: avatar.png".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Small icon target with a nearby distractor icon increases acquisition difficulty slightly, but labeling
and immediate feedback keep it in the easy range.
success_trigger:
human_readable:
- A download is initiated for file_id=avatar_png with suggested filename "avatar.png".
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: avatar_png
filename: avatar.png
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking the edit pencil icon instead of the download icon.
- Any download event for a different file_id/filename.
expected_interaction_path: Locate the avatar preview → click the adjacent download ActionIcon.
- id: download_trigger-mantine-T04
name: Download KPI snapshot via Mantine menu
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: menu_download_options
implementation_component: 'Mantine: Menu (Menu.Target + Button) with Menu.Item downloads (compose)'
task_template: open_and_select
secondary_template: null
browsergym_goal: Download the KPI snapshot as a PNG. Open the "Download" menu and choose "PNG". The task will finish automatically
when done.
ui_copy: KPI snapshot — Choose a format from the Download menu.
setup_description: |-
Layout: isolated_card centered on the page.
Card title: "KPI snapshot".
A Mantine Button labeled "Download" is wrapped in a Mantine Menu.Target.
Clicking the button opens a Mantine Menu dropdown with items: "PNG", "PDF", "CSV".
Selecting an item triggers an immediate download with a suggested filename.
The target item is "PNG" which downloads "kpi-snapshot.png".
A disabled menu item "Send by email" appears as a distractor.
A notification appears on successful download start.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Requires opening a menu and selecting the correct format among several options. Labels are clear but an
overlay layer and multiple choices add complexity.
success_trigger:
human_readable:
- A download is initiated for file_id=report_menu_png with suggested filename "kpi-snapshot.png".
- The download must come from selecting "PNG" in the menu.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: report_menu_png
filename: kpi-snapshot.png
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting "PDF" or "CSV" instead of "PNG".
- Opening the menu but not selecting any option.
- Clicking disabled "Send by email".
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download" → menu opens → click "PNG".
- id: download_trigger-mantine-T05
name: Scroll to download the logo pack ZIP
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: attachment_links_scroll
implementation_component: 'Mantine: Anchor download links in attachments section (compose)'
task_template: scroll_find
secondary_template: null
browsergym_goal: Scroll to the Attachments section and download the "Logo pack" ZIP file. The task will finish automatically
when done.
ui_copy: Brand kit — Attachments are below. Scroll to download the Logo pack.
setup_description: |-
Layout: dashboard-style page anchored toward the top-left of the viewport.
The page contains a long "Brand kit" description and examples.
The "Attachments" section appears further down and is not visible initially.
In the Attachments section there are exactly two downloadable items, each with a Mantine Anchor link:
- "Brand guidelines" → downloads brand-guidelines.pdf (distractor)
- "Logo pack" → downloads logo-pack.zip (TARGET)
Clicking the correct link shows a notification: "Download started: logo-pack.zip".
scene_context:
theme: light
spacing: comfortable
layout: dashboard
placement: top_left
scale: default
instances: 2
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Requires scrolling to reveal the attachments and selecting the correct link among multiple downloads. Otherwise
straightforward.
success_trigger:
human_readable:
- A download is initiated for file_id=logo_pack_zip with suggested filename "logo-pack.zip".
- The download must be triggered from the "Logo pack" attachment (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: logo_pack_zip
filename: logo-pack.zip
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Logo pack
terminal_condition: true
negative_cases:
- Downloading the Brand guidelines PDF instead of the Logo pack ZIP.
- Scrolling but not initiating any download.
- Any download event for a different file_id/filename.
expected_interaction_path: Scroll down to Attachments → click "Logo pack" download link.
- id: download_trigger-mantine-T06
name: Confirm GDPR export download in modal
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: modal_confirm
implementation_component: 'Mantine: Button + Modal (confirmation before download)'
task_template: confirm_cancel
secondary_template: null
browsergym_goal: Download the GDPR export CSV. Click "Download GDPR export" and confirm in the modal. The task will finish
automatically when done.
ui_copy: GDPR export — Confirmation required
setup_description: |-
Layout: modal_flow.
A card titled "GDPR export" contains a Mantine Button labeled "Download GDPR export".
Clicking it opens a Mantine Modal with title "Confirm download" and warning text.
Modal footer has two buttons: "Cancel" and "Download".
The download is only initiated after clicking the "Download" button in the modal.
A small checkbox "I understand" is shown but is pre-checked and not required (visual distractor only).
After confirming, a notification appears: "Download started: gdpr-export.csv".
scene_context:
theme: light
spacing: comfortable
layout: modal_flow
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 2
disambiguation_load: 1
justification: Modal confirmation adds an extra layer and a required second click. Clear button labels keep it manageable
but depth/feedback dynamics increase.
success_trigger:
human_readable:
- The confirmation modal is accepted via the "Download" control.
- A download is initiated for file_id=gdpr_export_csv with suggested filename "gdpr-export.csv".
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: gdpr_export_csv
filename: gdpr-export.csv
tolerance: null
require_confirm: true
confirm_control: Download
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Cancel" or dismissing the modal without downloading.
- Any download event for a different file_id/filename.
- Closing the modal via escape or X without confirming.
expected_interaction_path: Click "Download GDPR export" → modal opens → click "Download" in modal.
- id: download_trigger-mantine-T07
name: Download contract PDF from dense Mantine table
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: table_row_icon
implementation_component: 'Mantine: Table + ActionIcon download per row (compose)'
task_template: table_operation
secondary_template: null
browsergym_goal: In the contracts table, download the PDF for "Contract 2026" by clicking its download icon. The task will
finish automatically when done.
ui_copy: Contracts table — Download a PDF per row.
setup_description: |-
Layout: table_cell scene centered on the page with compact spacing.
A Mantine Table lists four rows: "Contract 2024", "Contract 2025", "Contract 2026", "Contract 2027".
Each row has an Actions column with two small ActionIcons: view (distractor) and download (TARGET).
The download ActionIcon is rendered as an anchor with download attribute for that row.
Additional clutter: a toolbar above the table with pagination controls and a search field (not required).
Clicking the download icon for "Contract 2026" triggers download "contract-2026.pdf" and shows a notification.
scene_context:
theme: light
spacing: compact
layout: table_cell
placement: center
scale: default
instances: 4
guidance: text
clutter: high
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: Compact dense table with multiple similar rows and small per-row icons increases both target acquisition
difficulty and disambiguation load.
success_trigger:
human_readable:
- A download is initiated for file_id=table_row_contract_pdf with suggested filename "contract-2026.pdf".
- The download must be triggered from the "Contract 2026" row (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: table_row_contract_pdf
filename: contract-2026.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Contract 2026 row
terminal_condition: true
negative_cases:
- Downloading any other contract year.
- Clicking the view icon instead of the download icon.
- Any download event for a different file_id/filename.
expected_interaction_path: Find row "Contract 2026" → click its download ActionIcon.
- id: download_trigger-mantine-T08
name: Match reference preview and download finance sheet (dark)
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: visual_match_cards
implementation_component: 'Mantine: SimpleGrid cards + Button/ActionIcon download (compose)'
task_template: match_reference
secondary_template: null
browsergym_goal: Download the finance sheet that matches the reference preview shown above the cards. Use the download control
on the matching card. The task will finish automatically when done.
ui_copy: Finance sheets — Match the reference preview and download the correct file.
setup_description: |-
Layout: isolated_card centered on the page.
Theme is dark and component scale is small.
At the top of the card is a small reference preview thumbnail of a spreadsheet-like grid (no text label).
Below it are two file cards side-by-side:
- "Sheet A" with preview A (distractor)
- "Sheet B" with preview B (TARGET matches the reference)
Each card has a small download button/icon rendered as an anchor with download attribute.
Clicking the matching card's download control initiates download "finance-sheet.xlsx" and shows a notification.
scene_context:
theme: dark
spacing: comfortable
layout: isolated_card
placement: center
scale: small
instances: 2
guidance: visual
clutter: none
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 5
disambiguation_load: 4
justification: Visual-only identification in dark mode with small controls reduces observability and increases misclick
risk. Two similar instances require accurate disambiguation.
success_trigger:
human_readable:
- A download is initiated for file_id=ref_badge_xlsx with suggested filename "finance-sheet.xlsx".
- The download must be initiated from the matching card (instance "Sheet B").
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: ref_badge_xlsx
filename: finance-sheet.xlsx
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Sheet B
terminal_condition: true
negative_cases:
- Downloading from Sheet A (non-matching).
- Any download event for a different file_id/filename.
- Interacting with the previews without triggering the download control.
expected_interaction_path: Compare reference preview to the two card previews → click download on the matching card.
- id: download_trigger-mantine-T09
name: Open drawer and download full export CSV
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: drawer_flow
implementation_component: 'Mantine: Drawer + Buttons/Anchors with download (compose)'
task_template: open_overlay
secondary_template: activate
browsergym_goal: Open the Export drawer and download the "Full export (.csv)" file. The task will finish automatically when
done.
ui_copy: Export drawer — Open to download.
setup_description: |-
Layout: drawer_flow with the trigger control near the bottom-right of the viewport.
Initially, the page shows a small toolbar with a Mantine Button labeled "Open export drawer".
Clicking it opens a Mantine Drawer overlay.
Inside the drawer are two download options (two instances):
- "Summary (.csv)" (distractor)
- "Full export (.csv)" (TARGET)
Each option is a Mantine Button rendered as an anchor with download attribute.
Clicking "Full export (.csv)" initiates download "export-center.csv" and shows a notification.
The drawer has a close X icon as a distractor.
scene_context:
theme: light
spacing: comfortable
layout: drawer_flow
placement: bottom_right
scale: default
instances: 2
guidance: text
clutter: low
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 4
justification: Requires opening a drawer overlay and choosing the correct download option among multiple similar actions.
Overlay layering and instance disambiguation raise difficulty.
success_trigger:
human_readable:
- A download is initiated for file_id=export_drawer_csv with suggested filename "export-center.csv".
- The download must be triggered via the "Full export (.csv)" option (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: export_drawer_csv
filename: export-center.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Full export (.csv)
terminal_condition: true
negative_cases:
- Opening the drawer but downloading the summary CSV instead.
- Closing the drawer without downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Open export drawer" → drawer opens → click "Full export (.csv)".
- id: download_trigger-mantine-T10
name: Download YAML config template from a dense menu (small, compact)
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: dense_menu
implementation_component: 'Mantine: ActionIcon Menu.Target + Menu dropdown with many items (compose)'
task_template: open_and_select
secondary_template: null
browsergym_goal: Download the "Config template" as a YAML file. Open the templates menu and select "Config template (.yaml)".
The task will finish automatically when done.
ui_copy: Templates — Open the menu to download a template file.
setup_description: |-
Layout: isolated_card centered on the page.
Spacing is compact and component scale is small (smaller icon and tighter menu rows).
A small ActionIcon (download glyph) opens a Mantine Menu dropdown labeled via tooltip "Download templates".
The menu contains several similarly named items (to increase confusability), including:
- "Config template (.json)" (distractor)
- "Config template (.yaml)" (TARGET)
- "Docker compose (.yaml)" (distractor)
- "Environment sample (.env)" (distractor)
- "Deploy script (.sh)" (distractor)
Selecting an item initiates the corresponding download immediately.
The target selection downloads "config-template.yaml" and shows a notification.
scene_context:
theme: light
spacing: compact
layout: isolated_card
placement: center
scale: small
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 4
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 2
justification: Small trigger and compact, dense menu entries with similar labels increase acquisition difficulty and option
interference. Requires careful selection of the correct file extension.
success_trigger:
human_readable:
- A download is initiated for file_id=nested_menu_yaml with suggested filename "config-template.yaml".
- The download must come from selecting "Config template (.yaml)" in the menu.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: nested_menu_yaml
filename: config-template.yaml
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting "Config template (.json)" or any other menu item.
- Opening the menu but closing it without selecting an item.
- Any download event for a different file_id/filename.
expected_interaction_path: Click the templates ActionIcon → menu opens → click "Config template (.yaml)".
|