File size: 62,525 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 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 | - id: breadcrumb-antd-T01
name: Navigate to Products (basic breadcrumb click)
canonical_type: breadcrumb
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Breadcrumb'
task_template: navigate_to
secondary_template: null
browsergym_goal: Click the "Products" item in the breadcrumb trail to navigate there. The task will finish automatically when done.
ui_copy: 'Breadcrumb: Home > Products > Electronics > Details. Click "Products".'
setup_description: |
Baseline isolated card centered in the viewport titled "Product Details".
At the top of the card there is an Ant Design Breadcrumb showing the path:
Home > Products > Electronics > Details
Each item is clickable. The current page is "Details" (last item, not clickable).
When "Products" is clicked, the card content updates to show "You navigated to: Products".
No other navigation controls are present.
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: 1
disambiguation_load: 2
justification: Simple navigation with clearly labeled breadcrumb items; minimal disambiguation needed.
success_trigger:
human_readable:
- The "Products" breadcrumb item was clicked.
- Navigation is recorded to "Products".
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: antd-breadcrumb-products
navigated_to: Products
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Products
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking "Home" instead of "Products".
- Clicking "Electronics" instead of "Products".
- Clicking the current page "Details" (should not be clickable).
expected_interaction_path: Locate breadcrumb → click "Products" → observe navigation.
notes: 'Instrumentation: data-testid on each breadcrumb item.'
- id: breadcrumb-antd-T02
name: Navigate Home (icon breadcrumb)
canonical_type: breadcrumb
implementation_source: antd
implementation_variant: icon_home
implementation_component: 'AntD: Breadcrumb with icon'
task_template: navigate_to
secondary_template: null
browsergym_goal: Click the Home icon in the breadcrumb to navigate to the home page. The task will finish automatically when done.
ui_copy: 'Breadcrumb: [Home icon] > Files > Documents. Click the home icon.'
setup_description: |
Centered isolated card titled "Documents".
At the top there is an Ant Design Breadcrumb where the first item is a home icon (house icon) without text, followed by:
[Home icon] > Files > Documents
The home icon is clickable. Clicking it updates the card content to show "You navigated to: Home".
There are no other icons or interactive elements on the page.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: visual
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Single icon target; requires recognizing the home icon but is unambiguous.
success_trigger:
human_readable:
- The Home breadcrumb item (icon) was clicked.
- Navigation is recorded to "Home".
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: antd-breadcrumb-home
navigated_to: Home
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Home
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking "Files" instead of Home icon.
- Clicking "Documents" (current page).
expected_interaction_path: Locate home icon in breadcrumb → click it → observe navigation.
notes: 'Instrumentation: home icon has data-testid=antd-breadcrumb-home.'
- id: breadcrumb-antd-T03
name: Select user from breadcrumb dropdown
canonical_type: breadcrumb
implementation_source: antd
implementation_variant: dropdown_menu
implementation_component: 'AntD: Breadcrumb with Dropdown'
task_template: open_and_select
secondary_template: null
browsergym_goal: Click the "Users" breadcrumb item to open its dropdown, then select "Bob" from the menu. The task will finish automatically when done.
ui_copy: 'Breadcrumb dropdown: Click Users, then select Bob.'
setup_description: |
Centered isolated card titled "User Profile".
At the top there is an Ant Design Breadcrumb:
Dashboard > Users (with dropdown arrow) > Profile
The "Users" item has a small dropdown arrow indicating a menu. Clicking it opens a dropdown with options:
- Alice
- Bob
- Charlie
Selecting "Bob" updates the card to show "Selected user: Bob".
The dropdown closes after selection.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Two-step interaction requiring dropdown open then menu item selection.
success_trigger:
human_readable:
- The breadcrumb dropdown was opened.
- '"Bob" was selected from the dropdown menu.'
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_dropdown_select
dropdown_id: antd-breadcrumb-users-dropdown
selected_item: Bob
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Bob
terminal_condition: task ends when predicate holds
negative_cases:
- Selecting "Alice" or "Charlie" instead of "Bob".
- Clicking elsewhere on the breadcrumb without opening the dropdown.
- Opening dropdown but not selecting any item.
expected_interaction_path: Click "Users" dropdown → menu appears → click "Bob".
notes: 'Instrumentation: dropdown trigger has data-testid; menu items have data-testid.'
- id: breadcrumb-antd-T04
name: Expand collapsed breadcrumb (ellipsis)
canonical_type: breadcrumb
implementation_source: antd
implementation_variant: collapsed
implementation_component: 'AntD: Breadcrumb with collapsed items'
task_template: open_overlay
secondary_template: null
browsergym_goal: Click the ellipsis (...) in the collapsed breadcrumb to expand and see the hidden items. The task will finish automatically when done.
ui_copy: 'Collapsed breadcrumb: Click ... to expand hidden items.'
setup_description: |
Centered isolated card titled "Deep Page".
At the top there is an Ant Design Breadcrumb that shows:
Home > ... > Settings > Profile
The ellipsis (...) represents collapsed/hidden items. Clicking it opens a dropdown showing the hidden items:
- Products
- Electronics
- Phones
The dropdown should open and remain visible for the task to complete.
No selection is required - just expanding the collapsed items.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: visual
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 1
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 2
justification: Requires recognizing ellipsis as expandable; single click to open overlay.
success_trigger:
human_readable:
- The collapsed breadcrumb ellipsis was clicked.
- The hidden items dropdown is now visible.
canonical_predicate:
predicate_type: equals
target_state:
overlay_id: antd-breadcrumb-collapsed-dropdown
is_open: true
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking other breadcrumb items instead of ellipsis.
- Not clicking anything.
expected_interaction_path: Locate ellipsis → click it → dropdown opens with hidden items.
notes: 'Instrumentation: ellipsis element has data-testid; dropdown has data-overlay-id.'
- id: breadcrumb-antd-T05
name: Navigate in dark theme settings
canonical_type: breadcrumb
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Breadcrumb'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the dark-themed Settings panel, click "Account" in the breadcrumb. The task will finish automatically when done.
ui_copy: 'Dark settings: Settings > Account > Security. Navigate to Account.'
setup_description: |
Dark theme settings panel centered on the page.
The panel has an Ant Design Breadcrumb at the top:
Settings > Account > Security
"Security" is the current page (last item, not clickable).
Clicking "Account" updates the panel to show "You navigated to: Account".
The entire viewport uses dark theme styling.
scene_context:
theme: dark
spacing: comfortable
layout: settings_panel
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: 2
justification: Simple breadcrumb navigation in dark theme; no additional complexity.
success_trigger:
human_readable:
- The "Account" breadcrumb item was clicked.
- Navigation is recorded to "Account".
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: antd-breadcrumb-account
navigated_to: Account
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Account
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking "Settings" instead of "Account".
- Clicking "Security" (current page).
expected_interaction_path: Locate breadcrumb → click "Account" → observe navigation.
notes: 'Dark theme must be scoped to task viewport only.'
- id: breadcrumb-antd-T06
name: Match breadcrumb separator style
canonical_type: breadcrumb
implementation_source: antd
implementation_variant: custom_separator
implementation_component: 'AntD: Breadcrumb with separator'
task_template: match_reference
secondary_template: null
browsergym_goal: Click the breadcrumb section that uses the same separator style as shown in the Target sample. The task will finish automatically when done.
ui_copy: 'Target sample: Find the breadcrumb with matching separator.'
setup_description: |
Centered isolated card titled "Choose the matching breadcrumb".
At the top is a "Target sample" showing a breadcrumb with arrow (>) separators:
Home > Products > Details
Below are three breadcrumb examples, each with different separators:
1. Home / Products / Details (slash separator)
2. Home > Products > Details (arrow separator)
3. Home → Products → Details (arrow symbol separator)
Clicking any breadcrumb records the selection.
Only the breadcrumb matching the target sample (arrow >) is correct.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 3
guidance: visual
clutter: low
difficulty:
difficulty_bucket: mid
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 4
justification: Requires visual comparison of separator styles across three similar breadcrumbs.
success_trigger:
human_readable:
- The breadcrumb with arrow (>) separator was clicked.
- The selected breadcrumb matches the target sample.
canonical_predicate:
predicate_type: matches_reference
target_state:
reference_id: antd-target-separator
selected_breadcrumb_id: antd-breadcrumb-arrow-sep
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Arrow separator breadcrumb
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking the slash separator breadcrumb.
- Clicking the arrow symbol (→) separator breadcrumb.
expected_interaction_path: Compare target sample → identify matching separator → click correct breadcrumb.
notes: 'Instrumentation: each breadcrumb section has unique data-testid.'
- id: breadcrumb-antd-T07
name: Navigate in compact dashboard
canonical_type: breadcrumb
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Breadcrumb'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the top-left dashboard header, click "Reports" in the breadcrumb. The task will finish automatically when done.
ui_copy: 'Dashboard breadcrumb: Admin > Reports > Q4 Summary'
setup_description: |
Dashboard layout with compact spacing and breadcrumb in the top-left corner.
The Ant Design Breadcrumb shows:
Admin > Reports > Q4 Summary
"Q4 Summary" is the current page.
Clicking "Reports" shows a confirmation message in the main content area.
The breadcrumb items are smaller due to compact spacing.
scene_context:
theme: light
spacing: compact
layout: dashboard
placement: top_left
scale: small
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 2
target_acquisition: 3
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 2
justification: Compact spacing and small scale increase target acquisition difficulty.
success_trigger:
human_readable:
- The "Reports" breadcrumb item was clicked.
- Navigation is recorded to "Reports".
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: antd-breadcrumb-reports
navigated_to: Reports
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Reports
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking "Admin" instead of "Reports".
- Clicking "Q4 Summary" (current page).
expected_interaction_path: Go to top-left → locate breadcrumb → click "Reports".
notes: 'Instrumentation: data-testid on breadcrumb items.'
- id: breadcrumb-antd-T08
name: Navigate to correct folder in cluttered UI
canonical_type: breadcrumb
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Breadcrumb'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the file browser, use the breadcrumb to navigate to the "Projects" folder. The task will finish automatically when done.
ui_copy: 'File browser: Home > Documents > Projects > Work. Navigate to Projects.'
setup_description: |
File browser form section with high clutter (multiple file list items, toolbars, side panels).
At the top there is an Ant Design Breadcrumb:
Home > Documents > Projects > Work
"Work" is the current folder (last item, not clickable).
The file list shows many items with file icons, but these are distractors.
Clicking "Projects" in the breadcrumb navigates to that folder and shows confirmation.
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 1
guidance: text
clutter: high
difficulty:
difficulty_bucket: mid
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: High clutter from file list items increases visual noise; breadcrumb navigation is still straightforward.
success_trigger:
human_readable:
- The "Projects" breadcrumb item was clicked.
- Navigation is recorded to "Projects".
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: antd-breadcrumb-projects
navigated_to: Projects
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Projects
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking file items instead of breadcrumb.
- Clicking other breadcrumb items.
expected_interaction_path: Ignore file list → locate breadcrumb → click "Projects".
notes: 'High clutter layout with distractor elements.'
- id: breadcrumb-antd-T09
name: Select category from dropdown in dark mode
canonical_type: breadcrumb
implementation_source: antd
implementation_variant: dropdown_menu
implementation_component: 'AntD: Breadcrumb with Dropdown'
task_template: open_and_select
secondary_template: null
browsergym_goal: Click the "Categories" breadcrumb dropdown and select "Electronics". The task will finish automatically when done.
ui_copy: 'Dark breadcrumb dropdown: Select Electronics from Categories.'
setup_description: |
Dark theme isolated card titled "Product".
Breadcrumb at top:
Shop > Categories (dropdown) > Product
The "Categories" item has a dropdown with:
- Clothing
- Electronics
- Books
Selecting "Electronics" updates the card content to show the selection.
scene_context:
theme: dark
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Two-step dropdown interaction in dark theme.
success_trigger:
human_readable:
- The "Categories" dropdown was opened.
- '"Electronics" was selected.'
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_dropdown_select
dropdown_id: antd-breadcrumb-categories-dropdown
selected_item: Electronics
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Electronics
terminal_condition: task ends when predicate holds
negative_cases:
- Selecting wrong category.
- Not opening dropdown.
expected_interaction_path: Click Categories → dropdown opens → click Electronics.
notes: 'Dark theme dropdown with proper styling.'
- id: breadcrumb-antd-T10
name: Two-section disambiguation
canonical_type: breadcrumb
implementation_source: antd
implementation_variant: multiple_sections
implementation_component: 'AntD: Multiple Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the "Current Location" section (not the "Example" section), click "Products" in the breadcrumb. The task will finish automatically when done.
ui_copy: 'Two breadcrumb sections: Click Products in Current Location section only.'
setup_description: |
Form section with two labeled breadcrumb areas stacked vertically:
1. "Example" section: Home > Products > Items > Detail
2. "Current Location" section: Dashboard > Products > Overview
Both have a "Products" item, but only the one in "Current Location" should be clicked.
Clicking the correct "Products" shows confirmation.
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 2
guidance: text
clutter: medium
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 4
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 5
justification: Two breadcrumbs with same item labels require section disambiguation.
success_trigger:
human_readable:
- The "Products" item in the "Current Location" section was clicked.
- Navigation recorded from the correct section.
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
section: current_location
item_id: antd-breadcrumb-current-products
navigated_to: Products
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Current Location > Products
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking "Products" in the Example section.
- Clicking other items in either section.
expected_interaction_path: Identify correct section → click Products in Current Location.
notes: 'Multiple breadcrumb sections require disambiguation by section label.'
# MUI Tasks
- id: breadcrumb-mui-T01
name: Navigate to Dashboard (basic MUI breadcrumb)
canonical_type: breadcrumb
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: Click the "Dashboard" item in the breadcrumb trail. The task will finish automatically when done.
ui_copy: 'Breadcrumb: Dashboard > Analytics > Report. Click Dashboard.'
setup_description: |
Baseline isolated card centered in the viewport titled "Report".
At the top there is a MUI Breadcrumbs component showing:
Dashboard > Analytics > Report
"Report" is the current page (last item, rendered as text not link).
Clicking "Dashboard" updates the card content to show "You navigated to: Dashboard".
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: 1
disambiguation_load: 2
justification: Simple navigation with clearly labeled MUI breadcrumb links.
success_trigger:
human_readable:
- The "Dashboard" breadcrumb link was clicked.
- Navigation is recorded to "Dashboard".
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: mui-breadcrumb-dashboard
navigated_to: Dashboard
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Dashboard
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking "Analytics" instead of "Dashboard".
- Clicking "Report" (current page).
expected_interaction_path: Locate breadcrumb → click "Dashboard" → observe navigation.
notes: 'Instrumentation: data-testid on breadcrumb links.'
- id: breadcrumb-mui-T02
name: Navigate Home with icon (MUI)
canonical_type: breadcrumb
implementation_source: mui
implementation_variant: icon_home
implementation_component: 'MUI: Breadcrumbs with icons'
task_template: navigate_to
secondary_template: null
browsergym_goal: Click the Home icon in the MUI breadcrumb to navigate home. The task will finish automatically when done.
ui_copy: 'Breadcrumb: [Home icon] > Users > Profile. Click home.'
setup_description: |
Centered isolated card titled "Profile".
At the top there is a MUI Breadcrumbs component where the first item is a home icon (HomeIcon from MUI), followed by:
[Home icon] > Users > Profile
Clicking the home icon updates the card to show "You navigated to: Home".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: visual
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Single icon target; requires recognizing home icon.
success_trigger:
human_readable:
- The Home breadcrumb icon was clicked.
- Navigation is recorded to "Home".
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: mui-breadcrumb-home
navigated_to: Home
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Home
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking "Users" instead of Home icon.
- Clicking "Profile" (current page).
expected_interaction_path: Locate home icon → click it → observe navigation.
notes: 'MUI HomeIcon used for first breadcrumb item.'
- id: breadcrumb-mui-T03
name: Select project from breadcrumb menu (MUI)
canonical_type: breadcrumb
implementation_source: mui
implementation_variant: menu
implementation_component: 'MUI: Breadcrumbs with Menu'
task_template: open_and_select
secondary_template: null
browsergym_goal: Click the "Projects" breadcrumb to open its menu, then select "Project Beta". The task will finish automatically when done.
ui_copy: 'Breadcrumb menu: Click Projects, select Project Beta.'
setup_description: |
Centered isolated card titled "Task Details".
MUI Breadcrumbs at top:
Home > Projects (with menu arrow) > Tasks > Details
Clicking "Projects" opens a MUI Menu with:
- Project Alpha
- Project Beta
- Project Gamma
Selecting "Project Beta" updates the card.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Two-step interaction with menu open and selection.
success_trigger:
human_readable:
- The Projects breadcrumb was clicked to open menu.
- '"Project Beta" was selected.'
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_menu_select
menu_id: mui-breadcrumb-projects-menu
selected_item: Project Beta
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Project Beta
terminal_condition: task ends when predicate holds
negative_cases:
- Selecting wrong project.
- Not opening menu.
expected_interaction_path: Click Projects → menu opens → click Project Beta.
notes: 'MUI Menu attached to breadcrumb item.'
- id: breadcrumb-mui-T04
name: Expand collapsed breadcrumb (MUI)
canonical_type: breadcrumb
implementation_source: mui
implementation_variant: collapsed
implementation_component: 'MUI: Breadcrumbs with maxItems'
task_template: open_overlay
secondary_template: null
browsergym_goal: Click the ellipsis to expand the collapsed MUI breadcrumb. The task will finish automatically when done.
ui_copy: 'Collapsed breadcrumb: Click ... to expand.'
setup_description: |
Centered isolated card titled "Final Step".
MUI Breadcrumbs at top with maxItems set, showing:
Start > ... > Step 4 > Final Step
The ellipsis (...) is a button. Clicking it expands to show all hidden items:
- Step 1
- Step 2
- Step 3
The expansion is the success condition.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: visual
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 1
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 2
justification: Recognizing and clicking ellipsis expander.
success_trigger:
human_readable:
- The ellipsis was clicked.
- Hidden breadcrumb items are now visible.
canonical_predicate:
predicate_type: equals
target_state:
breadcrumb_id: mui-breadcrumb-collapsed
is_expanded: true
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking other breadcrumb items.
- Not clicking ellipsis.
expected_interaction_path: Locate ellipsis → click it → breadcrumb expands.
notes: 'MUI Breadcrumbs with itemsBeforeCollapse/itemsAfterCollapse.'
- id: breadcrumb-mui-T05
name: Navigate in dark settings panel (MUI)
canonical_type: breadcrumb
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the dark-themed panel, click "Privacy" in the breadcrumb. The task will finish automatically when done.
ui_copy: 'Dark settings: Settings > Privacy > Data. Navigate to Privacy.'
setup_description: |
Dark theme settings panel centered on page.
MUI Breadcrumbs at top:
Settings > Privacy > Data
"Data" is current page. Clicking "Privacy" shows confirmation.
Entire viewport is dark themed.
scene_context:
theme: dark
spacing: comfortable
layout: settings_panel
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: 2
justification: Simple navigation in dark theme.
success_trigger:
human_readable:
- The "Privacy" breadcrumb link was clicked.
- Navigation is recorded to "Privacy".
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: mui-breadcrumb-privacy
navigated_to: Privacy
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Privacy
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking "Settings" instead.
- Clicking "Data" (current page).
expected_interaction_path: Locate breadcrumb → click Privacy.
notes: 'Dark theme scoped to viewport.'
- id: breadcrumb-mui-T06
name: Match custom separator style (MUI)
canonical_type: breadcrumb
implementation_source: mui
implementation_variant: custom_separator
implementation_component: 'MUI: Breadcrumbs with separator'
task_template: match_reference
secondary_template: null
browsergym_goal: Click the breadcrumb that uses the same separator as the Target sample. The task will finish automatically when done.
ui_copy: 'Target sample: Match the breadcrumb separator.'
setup_description: |
Centered card titled "Separator Match".
Target sample shows: Home / Products / Item (slash separator)
Three breadcrumb options below:
1. Home > Products > Item (chevron)
2. Home / Products / Item (slash)
3. Home - Products - Item (dash)
Click the matching one (slash separator).
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 3
guidance: visual
clutter: low
difficulty:
difficulty_bucket: mid
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 4
justification: Visual comparison of separators across three options.
success_trigger:
human_readable:
- The breadcrumb with slash separator was clicked.
- Selection matches target sample.
canonical_predicate:
predicate_type: matches_reference
target_state:
reference_id: mui-target-separator
selected_breadcrumb_id: mui-breadcrumb-slash-sep
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Slash separator breadcrumb
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking chevron separator breadcrumb.
- Clicking dash separator breadcrumb.
expected_interaction_path: Compare separators → click slash separator breadcrumb.
notes: 'MUI Breadcrumbs separator prop variations.'
- id: breadcrumb-mui-T07
name: Navigate in compact top-right header (MUI)
canonical_type: breadcrumb
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the top-right compact breadcrumb, click "Inventory". The task will finish automatically when done.
ui_copy: 'Compact header: Store > Inventory > Item #123'
setup_description: |
Dashboard layout with compact breadcrumb in top-right corner.
MUI Breadcrumbs: Store > Inventory > Item #123
Items are small due to compact spacing.
Clicking "Inventory" shows confirmation in main content.
scene_context:
theme: light
spacing: compact
layout: dashboard
placement: top_right
scale: small
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 2
target_acquisition: 3
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 2
justification: Compact spacing with small targets.
success_trigger:
human_readable:
- The "Inventory" breadcrumb was clicked.
- Navigation recorded.
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: mui-breadcrumb-inventory
navigated_to: Inventory
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Inventory
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking "Store" instead.
- Clicking current item.
expected_interaction_path: Go to top-right → click Inventory.
notes: 'Compact breadcrumb in corner placement.'
- id: breadcrumb-mui-T08
name: Navigate in high-clutter file manager (MUI)
canonical_type: breadcrumb
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the file manager, use the breadcrumb to navigate to "Shared". The task will finish automatically when done.
ui_copy: 'File manager: Root > Shared > Team > Files. Navigate to Shared.'
setup_description: |
Form section file manager with high clutter (file list, toolbar, sidebar icons).
MUI Breadcrumbs at top:
Root > Shared > Team > Files
Many distractor file items below.
Clicking "Shared" in breadcrumb navigates and shows confirmation.
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 1
guidance: text
clutter: high
difficulty:
difficulty_bucket: mid
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: High visual clutter from file list.
success_trigger:
human_readable:
- The "Shared" breadcrumb was clicked.
- Navigation recorded.
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: mui-breadcrumb-shared
navigated_to: Shared
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Shared
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking file items.
- Clicking other breadcrumb items.
expected_interaction_path: Ignore files → click Shared in breadcrumb.
notes: 'High clutter layout.'
- id: breadcrumb-mui-T09
name: Select region from dark menu (MUI)
canonical_type: breadcrumb
implementation_source: mui
implementation_variant: menu
implementation_component: 'MUI: Breadcrumbs with Menu'
task_template: open_and_select
secondary_template: null
browsergym_goal: In the dark-themed breadcrumb, click "Regions" and select "Europe". The task will finish automatically when done.
ui_copy: 'Dark breadcrumb menu: Select Europe from Regions.'
setup_description: |
Dark theme isolated card titled "City Details".
MUI Breadcrumbs:
World > Regions (menu) > Cities > City Details
Clicking Regions opens menu:
- Americas
- Europe
- Asia
Select "Europe".
scene_context:
theme: dark
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Menu interaction in dark theme.
success_trigger:
human_readable:
- Regions menu was opened.
- '"Europe" was selected.'
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_menu_select
menu_id: mui-breadcrumb-regions-menu
selected_item: Europe
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Europe
terminal_condition: task ends when predicate holds
negative_cases:
- Selecting wrong region.
- Not opening menu.
expected_interaction_path: Click Regions → menu opens → click Europe.
notes: 'Dark theme menu.'
- id: breadcrumb-mui-T10
name: Dual breadcrumb section disambiguation (MUI)
canonical_type: breadcrumb
implementation_source: mui
implementation_variant: multiple_sections
implementation_component: 'MUI: Multiple Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the "Primary Navigation" section, click "Sales" in the breadcrumb. Do not click Sales in the "Secondary Navigation" section. The task will finish automatically when done.
ui_copy: 'Two sections: Click Sales in Primary Navigation only.'
setup_description: |
Form section with two labeled breadcrumb areas:
1. "Primary Navigation": Home > Sales > Orders > Order #1
2. "Secondary Navigation": Support > Sales > Tickets > Ticket #1
Both have "Sales" but only the one in Primary Navigation is correct.
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 2
guidance: text
clutter: medium
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 4
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 5
justification: Must distinguish between identical labels in different sections.
success_trigger:
human_readable:
- '"Sales" in Primary Navigation was clicked.'
- Correct section recorded.
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
section: primary_navigation
item_id: mui-breadcrumb-primary-sales
navigated_to: Sales
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Primary Navigation > Sales
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking Sales in Secondary Navigation.
- Clicking other items.
expected_interaction_path: Identify Primary Navigation → click Sales.
notes: 'Section disambiguation required.'
# Mantine Tasks
- id: breadcrumb-mantine-T01
name: Navigate to Gallery (basic Mantine)
canonical_type: breadcrumb
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: Click the "Gallery" item in the Mantine breadcrumb. The task will finish automatically when done.
ui_copy: 'Breadcrumb: Home > Gallery > Photos > Photo. Click Gallery.'
setup_description: |
Centered isolated card titled "Photo Details".
Mantine Breadcrumbs at top:
Home > Gallery > Photos > Photo
"Photo" is current page. Clicking "Gallery" shows navigation confirmation.
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: 1
disambiguation_load: 2
justification: Simple breadcrumb click.
success_trigger:
human_readable:
- '"Gallery" breadcrumb was clicked.'
- Navigation recorded.
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: mantine-breadcrumb-gallery
navigated_to: Gallery
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Gallery
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking other items.
expected_interaction_path: Click Gallery in breadcrumb.
notes: 'Basic Mantine Breadcrumbs.'
- id: breadcrumb-mantine-T02
name: Navigate Home with icon (Mantine)
canonical_type: breadcrumb
implementation_source: mantine
implementation_variant: icon_home
implementation_component: 'Mantine: Breadcrumbs with icon'
task_template: navigate_to
secondary_template: null
browsergym_goal: Click the Home icon in the Mantine breadcrumb. The task will finish automatically when done.
ui_copy: 'Breadcrumb: [Home icon] > Posts > Article. Click home icon.'
setup_description: |
Centered card titled "Article".
Mantine Breadcrumbs:
[Home icon] > Posts > Article
First item is IconHome from Tabler icons.
Clicking shows navigation confirmation.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: visual
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Single icon target.
success_trigger:
human_readable:
- Home icon was clicked.
- Navigation recorded.
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: mantine-breadcrumb-home
navigated_to: Home
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Home
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking text items instead of icon.
expected_interaction_path: Click home icon.
notes: 'Mantine with Tabler icon.'
- id: breadcrumb-mantine-T03
name: Select department from menu (Mantine)
canonical_type: breadcrumb
implementation_source: mantine
implementation_variant: menu
implementation_component: 'Mantine: Breadcrumbs with Menu'
task_template: open_and_select
secondary_template: null
browsergym_goal: Click "Departments" in the breadcrumb to open its menu, then select "Engineering". The task will finish automatically when done.
ui_copy: 'Breadcrumb menu: Select Engineering from Departments.'
setup_description: |
Centered card titled "Team Page".
Mantine Breadcrumbs:
Company > Departments (menu) > Teams > Team Page
Clicking Departments opens Mantine Menu:
- Marketing
- Engineering
- Design
Select "Engineering".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Two-step menu interaction.
success_trigger:
human_readable:
- Departments menu was opened.
- '"Engineering" was selected.'
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_menu_select
menu_id: mantine-breadcrumb-departments-menu
selected_item: Engineering
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Engineering
terminal_condition: task ends when predicate holds
negative_cases:
- Selecting wrong department.
- Not opening menu.
expected_interaction_path: Click Departments → click Engineering.
notes: 'Mantine Menu component.'
- id: breadcrumb-mantine-T04
name: Expand collapsed breadcrumb (Mantine)
canonical_type: breadcrumb
implementation_source: mantine
implementation_variant: collapsed
implementation_component: 'Mantine: Breadcrumbs collapsed'
task_template: open_overlay
secondary_template: null
browsergym_goal: Click the ellipsis (...) to expand the collapsed Mantine breadcrumb. The task will finish automatically when done.
ui_copy: 'Collapsed: Click ... to expand.'
setup_description: |
Centered card titled "Deep Page".
Mantine Breadcrumbs showing:
Home > ... > Section > Deep Page
The ellipsis is clickable. Clicking expands to show:
- Level 1
- Level 2
- Level 3
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: visual
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 1
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 2
justification: Recognizing ellipsis as expandable.
success_trigger:
human_readable:
- Ellipsis was clicked.
- Hidden items are visible.
canonical_predicate:
predicate_type: equals
target_state:
breadcrumb_id: mantine-breadcrumb-collapsed
is_expanded: true
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking other items.
expected_interaction_path: Click ellipsis → breadcrumb expands.
notes: 'Mantine collapsed breadcrumb.'
- id: breadcrumb-mantine-T05
name: Navigate in dark Mantine panel
canonical_type: breadcrumb
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the dark-themed panel, click "Notifications" in the breadcrumb. The task will finish automatically when done.
ui_copy: 'Dark settings: Settings > Notifications > Email. Click Notifications.'
setup_description: |
Dark theme settings panel.
Mantine Breadcrumbs:
Settings > Notifications > Email
"Email" is current. Click "Notifications" to navigate.
scene_context:
theme: dark
spacing: comfortable
layout: settings_panel
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: 2
justification: Simple dark theme navigation.
success_trigger:
human_readable:
- '"Notifications" was clicked.'
- Navigation recorded.
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: mantine-breadcrumb-notifications
navigated_to: Notifications
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Notifications
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking Settings.
- Clicking Email.
expected_interaction_path: Click Notifications.
notes: 'Dark theme scoped.'
- id: breadcrumb-mantine-T06
name: Match separator style (Mantine)
canonical_type: breadcrumb
implementation_source: mantine
implementation_variant: custom_separator
implementation_component: 'Mantine: Breadcrumbs with separator'
task_template: match_reference
secondary_template: null
browsergym_goal: Click the breadcrumb matching the Target sample separator style. The task will finish automatically when done.
ui_copy: 'Match separator: Find the matching breadcrumb.'
setup_description: |
Centered card titled "Separator Match".
Target shows: Home → Gallery → Item (arrow symbol)
Options:
1. Home / Gallery / Item (slash)
2. Home > Gallery > Item (chevron)
3. Home → Gallery → Item (arrow)
Click the arrow one.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 3
guidance: visual
clutter: low
difficulty:
difficulty_bucket: mid
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 4
justification: Visual separator comparison.
success_trigger:
human_readable:
- Arrow separator breadcrumb was clicked.
- Matches target.
canonical_predicate:
predicate_type: matches_reference
target_state:
reference_id: mantine-target-separator
selected_breadcrumb_id: mantine-breadcrumb-arrow-sep
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Arrow separator breadcrumb
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking slash or chevron separator.
expected_interaction_path: Compare → click arrow separator.
notes: 'Mantine separator prop.'
- id: breadcrumb-mantine-T07
name: Navigate in compact bottom-left (Mantine)
canonical_type: breadcrumb
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the bottom-left compact breadcrumb, click "Archive". The task will finish automatically when done.
ui_copy: 'Compact: Library > Archive > 2024 > January'
setup_description: |
Dashboard with compact breadcrumb in bottom-left.
Mantine Breadcrumbs: Library > Archive > 2024 > January
Small scale, compact spacing.
Click "Archive".
scene_context:
theme: light
spacing: compact
layout: dashboard
placement: bottom_left
scale: small
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 2
target_acquisition: 3
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 2
justification: Small targets in corner.
success_trigger:
human_readable:
- '"Archive" was clicked.'
- Navigation recorded.
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: mantine-breadcrumb-archive
navigated_to: Archive
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Archive
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking other items.
expected_interaction_path: Go to bottom-left → click Archive.
notes: 'Compact corner placement.'
- id: breadcrumb-mantine-T08
name: Navigate in cluttered form (Mantine)
canonical_type: breadcrumb
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the form, use the breadcrumb to navigate to "Forms". The task will finish automatically when done.
ui_copy: 'Form page: Admin > Forms > Contact > Edit. Navigate to Forms.'
setup_description: |
Form section with high clutter (form fields, buttons, labels).
Mantine Breadcrumbs at top:
Admin > Forms > Contact > Edit
Many form fields below as distractors.
Click "Forms" to navigate.
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 1
guidance: text
clutter: high
difficulty:
difficulty_bucket: mid
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: High clutter from form elements.
success_trigger:
human_readable:
- '"Forms" breadcrumb was clicked.'
- Navigation recorded.
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
item_id: mantine-breadcrumb-forms
navigated_to: Forms
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Forms
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking form fields.
- Clicking other breadcrumb items.
expected_interaction_path: Ignore form → click Forms.
notes: 'High clutter layout.'
- id: breadcrumb-mantine-T09
name: Select from dark dropdown (Mantine)
canonical_type: breadcrumb
implementation_source: mantine
implementation_variant: menu
implementation_component: 'Mantine: Breadcrumbs with Menu'
task_template: open_and_select
secondary_template: null
browsergym_goal: In the dark breadcrumb, click "Topics" and select "Science". The task will finish automatically when done.
ui_copy: 'Dark menu: Select Science from Topics.'
setup_description: |
Dark theme card titled "Article".
Mantine Breadcrumbs:
Blog > Topics (menu) > Articles > Article
Topics menu contains:
- Technology
- Science
- Arts
Select "Science".
scene_context:
theme: dark
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Menu in dark theme.
success_trigger:
human_readable:
- Topics menu was opened.
- '"Science" was selected.'
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_menu_select
menu_id: mantine-breadcrumb-topics-menu
selected_item: Science
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Science
terminal_condition: task ends when predicate holds
negative_cases:
- Selecting wrong topic.
- Not opening menu.
expected_interaction_path: Click Topics → click Science.
notes: 'Dark theme menu.'
- id: breadcrumb-mantine-T10
name: Two-section disambiguation (Mantine)
canonical_type: breadcrumb
implementation_source: mantine
implementation_variant: multiple_sections
implementation_component: 'Mantine: Multiple Breadcrumbs'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the "Active Path" section, click "Docs" in the breadcrumb. Do not click Docs in the "Recent Path" section. The task will finish automatically when done.
ui_copy: 'Two sections: Click Docs in Active Path only.'
setup_description: |
Form section with two labeled breadcrumb areas:
1. "Active Path": Root > Docs > Guides > Guide
2. "Recent Path": History > Docs > API > Method
Both have "Docs" but only the one in Active Path is correct.
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 2
guidance: text
clutter: medium
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 2
target_acquisition: 2
density_choice_interference: 4
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 5
justification: Must distinguish identical labels by section.
success_trigger:
human_readable:
- '"Docs" in Active Path was clicked.'
- Correct section recorded.
canonical_predicate:
predicate_type: equals
target_state:
event: breadcrumb_navigate
section: active_path
item_id: mantine-breadcrumb-active-docs
navigated_to: Docs
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Active Path > Docs
terminal_condition: task ends when predicate holds
negative_cases:
- Clicking Docs in Recent Path.
- Clicking other items.
expected_interaction_path: Identify Active Path → click Docs.
notes: 'Section disambiguation required.'
|