File size: 94,192 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 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 | - id: link-antd-T01
name: Navigate via Support Center link
canonical_type: link
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Typography.Link'
task_template: navigate_to
secondary_template: null
browsergym_goal: Open the Support Center page by clicking the "Support Center" link. The task will finish automatically when done.
ui_copy: |-
Account Help
Need assistance? Visit the Support Center.
Link: Support Center
setup_description: |-
A single isolated card is centered in the viewport with the heading "Account Help". Inside the card, there is a short paragraph of text and exactly one Ant Design Typography.Link labeled "Support Center". The link is rendered in the default AntD link style (blue text), with normal underline behavior on hover. This is an SPA-style demo: clicking the link updates the in-app route to "/support" and shows a new view title "Support Center" in the card header area; the same link remains visible and is marked active with aria-current="page".
There are no other Link components on the page (instances=1). No modals, drawers, or popovers are involved.
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: 1
semantic_observability: 2
disambiguation_load: 1
justification: Single, clearly labeled link with immediate route/heading feedback and no distractors.
success_trigger:
human_readable:
- The link labeled "Support Center" (data-testid="link-support") was activated (click or keyboard Enter).
- The current route pathname equals "/support".
- The activated link is marked as the current page (aria-current="page").
canonical_predicate:
state_key: link_navigation
predicate_type: equals
target_state:
activated_link_testid: link-support
url:
pathname: /support
link_aria_current: page
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-support
terminal_condition: task ends when predicate holds
negative_cases:
- Navigate to "/support" without activating the requested link (e.g., typing the URL, using browser navigation, or programmatic redirect).
- Activate any other element that changes the route but is not the "Support Center" link.
- Click the link but the route does not change to "/support" (e.g., link is focused but not activated).
- Link becomes focused/hovered only; aria-current is not set to "page".
expected_interaction_path: Click the "Support Center" Typography.Link → observe the card header update to "Support Center" and URL/pathname becomes /support.
notes: 'Instrumentation: set data-testid="link-support" on the Typography.Link; on activation, update router to /support and set aria-current="page" on the active link; expose lastActivatedLinkTestId for checker.'
- id: link-antd-T02
name: Expand details with a "Show tax details" link
canonical_type: link
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Typography.Link'
task_template: disclose
secondary_template: null
browsergym_goal: Expand the Tax Details section by clicking the "Show tax details" link. The task will finish automatically when done.
ui_copy: |-
Invoice Summary
Tax Details: hidden
Link: Show tax details
setup_description: |-
A centered isolated card titled "Invoice Summary" contains a short summary and a collapsed disclosure area labeled "Tax Details". The disclosure control is implemented as a single Ant Design Typography.Link that visually looks like an inline link and is labeled "Show tax details". It has button-like semantics for accessibility: role="button", aria-controls="tax-details-panel", and aria-expanded="false" initially.
When activated, the link toggles the disclosure open: aria-expanded becomes "true", the link text changes to "Hide tax details", and a read-only panel appears directly below showing a few lines (e.g., "State tax", "City tax"). There are no other links on the page (instances=1), and no overlay layers—everything is inline.
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: 1
semantic_observability: 2
disambiguation_load: 1
justification: Single inline disclosure link with immediate expanded-state feedback via aria-expanded and visible panel.
success_trigger:
human_readable:
- The "Show tax details" link (data-testid="link-tax-details") was activated.
- The link's aria-expanded attribute equals "true".
- The controlled panel (id="tax-details-panel") is present and visible.
canonical_predicate:
state_key: link_disclosure
predicate_type: equals
target_state:
activated_link_testid: link-tax-details
link_aria_expanded: true
controlled_panel_visible: true
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-tax-details
terminal_condition: task ends when predicate holds
negative_cases:
- The Tax Details panel becomes visible without activating the requested link.
- The link receives focus but aria-expanded remains false.
- A different disclosure on the page is opened (should not exist in this task).
- Partial disclosure state (panel visible but aria-expanded not updated, or vice versa).
expected_interaction_path: Click the "Show tax details" Typography.Link → panel expands and link updates to "Hide tax details" with aria-expanded=true.
notes: 'Instrumentation: data-testid="link-tax-details"; ensure aria-expanded is updated on the link and the panel visibility is reflected via DOM presence + computed visibility.'
- id: link-antd-T03
name: Open a help popover from an inline link
canonical_type: link
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Typography.Link'
task_template: open_overlay
secondary_template: null
browsergym_goal: Open the Business Day help popover by clicking the "What is a business day?" link. The task will finish automatically when done.
ui_copy: |-
Payout Schedule
Need clarification?
Link: What is a business day?
setup_description: |-
A centered isolated card titled "Payout Schedule" includes a short description and a single Ant Design Typography.Link labeled "What is a business day?". The link is the trigger for an AntD Popover-like overlay.
Initial state: the popover is closed, the link has aria-expanded="false" and aria-haspopup="dialog". On activation, a small popover appears directly under the link with a short definition and a bold title "Business Day". No other links exist (instances=1). The popover has a close "×" icon, but closing is not required for success.
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: 2
feedback_dynamics: 1
semantic_observability: 2
disambiguation_load: 1
justification: One overlay layer triggered by a single link; success is immediately observable via the popover opening.
success_trigger:
human_readable:
- The "What is a business day?" link (data-testid="link-business-day") was activated.
- The link's aria-expanded attribute equals "true".
- The popover element (role="dialog", data-testid="popover-business-day") is visible.
canonical_predicate:
state_key: link_overlay_open
predicate_type: equals
target_state:
activated_link_testid: link-business-day
link_aria_expanded: true
overlay_visible: true
overlay_testid: popover-business-day
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-business-day
terminal_condition: task ends when predicate holds
negative_cases:
- Popover becomes visible without activating the link (e.g., auto-open on load).
- The link is hovered/focused but the popover is not opened.
- A different overlay opens (should not exist in this task).
- Overlay opens but is immediately closed before the terminal check.
expected_interaction_path: Click the "What is a business day?" link → popover appears anchored to the link and aria-expanded flips to true.
notes: 'Instrumentation: data-testid on trigger link and popover container; set aria-expanded on the link while popover is open.'
- id: link-antd-T04
name: Select the Invoices tab link
canonical_type: link
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Typography.Link'
task_template: select_one
secondary_template: null
browsergym_goal: Switch to the "Invoices" tab by clicking the "Invoices" link in the tab row. The task will finish automatically when done.
ui_copy: |-
Account Tabs
Links: Overview | Usage | Invoices
Current tab: Overview
setup_description: |-
A centered isolated card titled "Account Tabs" contains a horizontal row of three Ant Design Typography.Link elements acting as tab links: "Overview", "Usage", and "Invoices". Only one is active at a time.
Initial state: "Overview" is active (aria-current="page" on the Overview link), and the content panel below shows a heading "Overview". The three links are visually similar (same font size), separated by small spacing, with the active one styled slightly bolder/underlined. No additional links exist beyond these three (instances=3).
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 3
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 1
semantic_observability: 3
disambiguation_load: 2
justification: Small set of clearly labeled link-tabs; selecting one updates aria-current and the visible content header.
success_trigger:
human_readable:
- The "Invoices" tab link (data-testid="tab-invoices") was activated.
- The "Invoices" link has aria-current="page".
- The content panel heading reads "Invoices" (data-testid="panel-heading").
canonical_predicate:
state_key: link_tab_select
predicate_type: equals
target_state:
activated_link_testid: tab-invoices
active_link_testid: tab-invoices
active_link_aria_current: page
active_panel: invoices
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: tab-invoices
terminal_condition: task ends when predicate holds
negative_cases:
- A different tab link is activated (Overview or Usage).
- The Invoices panel becomes visible without activating the Invoices link (e.g., via keyboard shortcuts unrelated to the link).
- Invoices link is focused but aria-current is not updated to "page".
- Multiple tabs appear active at once (should not count as success).
expected_interaction_path: Click the "Invoices" link in the tab row → active styling moves to Invoices and the panel heading changes to "Invoices".
notes: 'Instrumentation: data-testid on each tab link; set aria-current="page" on the active link; expose active panel key for checker.'
- id: link-antd-T05
name: Scroll to footer and open Privacy Policy
canonical_type: link
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Typography.Link'
task_template: scroll_find
secondary_template: null
browsergym_goal: Scroll to the bottom of the terms card and click the "Privacy Policy" link. The task will finish automatically when done.
ui_copy: |-
Terms of Service
(Scrollable text)
Footer link: Privacy Policy
setup_description: |-
A centered isolated card titled "Terms of Service" contains a long, scrollable block of placeholder legal text (several screens tall). The scroll container is the main card body (not a separate modal).
Exactly one Ant Design Typography.Link exists on the entire page: a footer-style link labeled "Privacy Policy" placed after the long text, below the initial fold so it is not visible at load. When the link is activated, the SPA navigates to pathname "/privacy" and the card title updates to "Privacy Policy". No other links or overlays exist (instances=1, clutter=none).
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: 1
depth_layering: 3
feedback_dynamics: 1
semantic_observability: 2
disambiguation_load: 1
justification: The main challenge is locating a single link that starts off-screen inside a scrollable container.
success_trigger:
human_readable:
- The "Privacy Policy" link (data-testid="link-privacy") was activated.
- The current route pathname equals "/privacy".
- The card header title reads "Privacy Policy".
canonical_predicate:
state_key: link_scroll_find_navigation
predicate_type: equals
target_state:
activated_link_testid: link-privacy
url:
pathname: /privacy
header_title: Privacy Policy
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-privacy
terminal_condition: task ends when predicate holds
negative_cases:
- Reach "/privacy" without activating the "Privacy Policy" link.
- Activate the link but navigation does not occur (e.g., prevented default).
- Scroll to bottom but click in the footer area without actually activating the link.
- Open a different destination or hash (should not count).
expected_interaction_path: Scroll the card body until the footer is visible → click "Privacy Policy" link → observe route/title update.
notes: 'Checker hint: verify link activation via lastActivatedLinkTestId; ensure the link is initially off-screen so scroll is required.'
- id: link-antd-T06
name: Choose the quick link that matches a reference icon
canonical_type: link
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Typography.Link'
task_template: match_reference
secondary_template: null
browsergym_goal: In the Quick Links section, click the link whose icon matches the reference badge (a shield icon). The task will finish automatically when done.
ui_copy: |-
Quick Links
Reference badge: (shield icon)
Links with icons: Billing, Security Center, Notifications, API Keys
setup_description: |-
A form_section layout titled "Quick Links" appears centered on the page. At the top of the section, a small "Reference badge" is shown: a monochrome shield icon inside a rounded square. Below it is a vertical list of four Ant Design Typography.Link items, each rendered as an inline link row with a left icon and a text label:
1) Billing (credit-card icon)
2) Security Center (shield icon)
3) Notifications (bell icon)
4) API Keys (key icon)
All four are the same font size and spacing. Only the icon is meant to be used to match the reference (guidance=visual). Initial state route is "/home"; clicking a link navigates the SPA to a corresponding pathname (e.g., Security Center → "/security"). No other overlays; clutter is low (a couple of non-interactive helper sentences).
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 4
guidance: visual
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 1
semantic_observability: 2
disambiguation_load: 3
justification: Requires visually matching the target icon among multiple similar link rows; labels are present but not relied on by the instruction.
success_trigger:
human_readable:
- The link row whose icon matches the reference badge was activated (data-testid="quicklink-security").
- The current route pathname equals "/security".
- The activated link is recorded as the last activated link test id.
canonical_predicate:
state_key: link_matches_reference_icon
predicate_type: matches_reference
target_state:
reference: icon:shield
activated_link_testid: quicklink-security
url:
pathname: /security
tolerance:
reference_match: exact_icon_id
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: quicklink-security
terminal_condition: task ends when predicate holds
negative_cases:
- Click a different link (even if you later reach "/security" through other navigation).
- Reach "/security" without activating the icon-matched link (e.g., typing URL).
- Click the correct text label but wrong icon row (if duplicated labels exist; should not in this task).
- Open the correct route but the checker cannot confirm the reference-icon match (missing icon id instrumentation).
expected_interaction_path: Visually compare the reference badge icon to the icons in the link list → click the row with the shield icon.
notes: 'Instrumentation: assign stable icon ids (e.g., data-icon="shield") and link testids per row; checker uses (reference icon id) + lastActivatedLinkTestId + pathname.'
- id: link-antd-T07
name: Reset Billing Preferences using the correct reset link
canonical_type: link
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Typography.Link'
task_template: clear_reset
secondary_template: null
browsergym_goal: In the Billing Preferences section, click the "Reset to defaults" link to reset Billing Preferences. The task will finish automatically when done.
ui_copy: |-
Settings
Section: Billing Preferences (has applied settings)
Link: Reset to defaults
Section: Shipping Preferences
Link: Reset to defaults
setup_description: |-
A settings_panel layout shows two stacked sections with bordered headers:
- "Billing Preferences"
- "Shipping Preferences"
Each section contains a few read-only setting rows (not interactive for this task) and an Ant Design Typography.Link on the right side of the section header labeled "Reset to defaults". Both reset links have identical text and styling.
Initial state: Billing Preferences are marked as "Customized" with a small status pill. Shipping Preferences are already at default. Therefore, the Billing reset link is enabled (aria-disabled="false"), while the Shipping reset link is disabled (aria-disabled="true") and visually muted.
When the correct Billing reset link is activated, Billing Preferences switch to "Default" and that same link becomes disabled (aria-disabled="true") to indicate there is nothing left to reset. No modals or confirmations are used.
scene_context:
theme: light
spacing: comfortable
layout: settings_panel
placement: center
scale: default
instances: 2
guidance: text
clutter: medium
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: 3
disambiguation_load: 4
justification: Two visually similar reset links require selecting the correct instance based on section context and verifying state change via disabled styling.
success_trigger:
human_readable:
- The Billing Preferences reset link (data-testid="reset-billing") was activated.
- After activation, the Billing reset link has aria-disabled="true" (disabled).
- The Billing section status reads "Default".
canonical_predicate:
state_key: link_reset_section
predicate_type: equals
target_state:
activated_link_testid: reset-billing
billing_reset_link_aria_disabled: true
billing_status: Default
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: reset-billing
terminal_condition: task ends when predicate holds
negative_cases:
- Click the Shipping reset link (should remain disabled and should not count as success).
- Billing status becomes Default without activating the Billing reset link.
- Billing reset link is clicked but remains enabled (reset did not apply).
- Activate a different control (button/keyboard shortcut) that resets settings without using the link.
expected_interaction_path: Locate the Billing Preferences header → click its "Reset to defaults" link → verify Billing status becomes Default and the same link becomes disabled.
notes: 'Instrumentation: data-testid on each reset link (reset-billing, reset-shipping); expose per-section status text; use aria-disabled on Typography.Link wrappers for consistent checking.'
- id: link-antd-T08
name: Navigate to Security via the sidebar link (dark dashboard)
canonical_type: link
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Typography.Link'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the left sidebar under "Account navigation", click the "Security" link to open Security Settings. The task will finish automatically when done.
ui_copy: |-
Account Dashboard (dark)
Sidebar: Profile | Billing | Security
Main card contains an article with an inline "Security" link
setup_description: |-
A dashboard layout in dark theme fills the viewport. On the left, a vertical sidebar labeled "Account navigation" contains three Ant Design Typography.Link items: "Profile", "Billing", and "Security". The main content area shows a card titled "Getting started" with a short help article that also includes an inline Typography.Link labeled "Security" inside a sentence (a distractor link).
Initial route: "/settings/profile" with the sidebar "Profile" link marked active (aria-current="page"). Goal requires clicking the sidebar instance of the "Security" link—not the inline article link. When the correct sidebar link is activated, the route changes to "/settings/security" and the sidebar "Security" link becomes active (aria-current="page"). The inline article link remains non-active and does not carry aria-current.
Clutter is medium due to the presence of a header bar (non-interactive text), the sidebar, and the article content, but only the Link components determine success.
scene_context:
theme: dark
spacing: comfortable
layout: dashboard
placement: center
scale: default
instances: 4
guidance: text
clutter: medium
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: Requires disambiguating between same-label links in different regions under dark theme and dashboard clutter; success must confirm the sidebar instance was used.
success_trigger:
human_readable:
- The sidebar "Security" link (data-testid="nav-security") was activated.
- The current route pathname equals "/settings/security".
- The sidebar "Security" link has aria-current="page".
canonical_predicate:
state_key: link_navigation_with_instance
predicate_type: equals
target_state:
activated_link_testid: nav-security
url:
pathname: /settings/security
active_link_testid: nav-security
active_link_aria_current: page
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: nav-security
terminal_condition: task ends when predicate holds
negative_cases:
- Click the inline article "Security" link (data-testid="article-security") even if it navigates to the same route.
- Reach "/settings/security" without activating the sidebar link (typing URL, browser back/forward).
- Activate a different sidebar item (Profile or Billing).
- Route changes but aria-current is not set correctly on the sidebar link.
expected_interaction_path: Locate the left sidebar labeled "Account navigation" → click the "Security" link there → confirm the Security Settings view and active sidebar state.
notes: 'Instrumentation: distinct data-testid for nav-security vs article-security; checker must rely on lastActivatedLinkTestId to enforce correct instance.'
- id: link-antd-T09
name: Open a specific report from a dense table of View links
canonical_type: link
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Typography.Link'
task_template: select_one
secondary_template: null
browsergym_goal: In the Reports table, click the "View" link for the row named "Q4 Finance". The task will finish automatically when done.
ui_copy: |-
Reports
Table rows: Q1 Summary, Q2 Summary, Q3 Summary, Q4 Finance, Annual Review
Each row has a "View" link
setup_description: |-
The link component is embedded in a realistic table_cell layout: a compact Reports table is centered in the viewport. The table has 5 rows and 3 columns: "Report", "Updated", and "Action".
In the "Action" column, each row contains an Ant Design Typography.Link labeled exactly "View" (identical text across rows). Row labels in the first column differentiate the target ("Q4 Finance"). Spacing mode is compact, making row height smaller and targets closer together.
Initial route: "/reports". Activating a row's View link navigates to a report detail route (e.g., Q4 Finance → "/reports/q4-finance") and shows the report title in the header above the table. There are no other links on the page besides these row action links (instances=5).
scene_context:
theme: light
spacing: compact
layout: table_cell
placement: center
scale: default
instances: 5
guidance: text
clutter: medium
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 4
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: Many identical "View" links in a compact table require precise target acquisition and correct row-based disambiguation.
success_trigger:
human_readable:
- The "View" link in the "Q4 Finance" row (data-testid="report-q4-view") was activated.
- The current route pathname equals "/reports/q4-finance".
- The report detail header shows "Q4 Finance".
canonical_predicate:
state_key: table_row_link_activation
predicate_type: equals
target_state:
activated_link_testid: report-q4-view
url:
pathname: /reports/q4-finance
detail_title: Q4 Finance
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: report-q4-view
terminal_condition: task ends when predicate holds
negative_cases:
- Click "View" in any other row (Q1/Q2/Q3/Annual Review).
- Reach "/reports/q4-finance" without clicking the correct row's View link.
- Click the correct row label but not the View link (no activation recorded).
- Open the report view but the checker cannot confirm the specific link instance was activated.
expected_interaction_path: Scan the table for the "Q4 Finance" row → click the corresponding "View" link in the Action column → observe navigation to the Q4 Finance detail view.
notes: 'Instrumentation: add data-testid per row action link (report-q4-view, report-q1-view, etc.); ensure compact mode reduces row height to stress acquisition.'
- id: link-antd-T10
name: Open Audit Log from a More actions link popover
canonical_type: link
implementation_source: antd
implementation_variant: null
implementation_component: 'AntD: Typography.Link'
task_template: open_and_select
secondary_template: null
browsergym_goal: Open the Audit Log drawer by first opening "More actions" and then clicking "Audit log". The task will finish automatically when done.
ui_copy: |-
User Access
Link: More actions
Popover links: Role assignments, Audit log
setup_description: |-
A modal_flow scene anchored near the bottom-right of the viewport shows a small card titled "User Access". In the card header, there is an Ant Design Typography.Link labeled "More actions" that triggers a popover menu.
Initial state: popover closed. Activating "More actions" opens a small popover containing two link-style actions implemented as Typography.Link rows:
- "Role assignments"
- "Audit log"
Clicking "Audit log" opens a right-side Drawer overlay titled "Audit Log". The "Audit log" link acts as the drawer control and sets aria-expanded="true" while the drawer is open. The drawer includes read-only content; no additional confirmation is required.
Instances of the canonical link on the page: 3 (More actions trigger + two popover links). Other UI elements (drawer content, headers) are not part of success.
scene_context:
theme: light
spacing: comfortable
layout: modal_flow
placement: bottom_right
scale: default
instances: 3
guidance: text
clutter: low
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 2
depth_layering: 4
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 3
justification: Requires two-step interaction across overlay layers (popover then drawer) and verifying the correct link inside the popover was selected.
success_trigger:
human_readable:
- The "Audit log" link inside the More actions popover (data-testid="action-audit-log") was activated.
- The Audit Log drawer is visible (data-testid="drawer-audit-log").
- The "Audit log" link reflects the open state (aria-expanded="true").
canonical_predicate:
state_key: nested_overlay_link_flow
predicate_type: equals
target_state:
activated_link_testid: action-audit-log
drawer_visible: true
drawer_testid: drawer-audit-log
link_aria_expanded: true
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: action-audit-log
terminal_condition: task ends when predicate holds
negative_cases:
- Open the More actions popover but click "Role assignments" instead of "Audit log".
- Open the Audit Log drawer through any other mechanism that does not activate the "Audit log" link instance.
- Drawer becomes visible but aria-expanded is not updated on the controlling link.
- Only the popover opens (drawer remains closed).
expected_interaction_path: Click "More actions" → popover opens → click "Audit log" → drawer slides in and link indicates expanded/open.
notes: 'Instrumentation: ensure each link has a stable data-testid; expose drawer visibility via data-testid; set aria-expanded on the controlling link while the drawer is open.'
- id: link-mui-T01
name: Navigate via Support Center link (MUI)
canonical_type: link
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Link'
task_template: navigate_to
secondary_template: null
browsergym_goal: Open the Support Center page by clicking the "Support Center" link. The task will finish automatically when done.
ui_copy: |-
Help
Link: Support Center
setup_description: |-
A centered isolated card titled "Help" contains exactly one Material UI Link component labeled "Support Center". The Link uses MUI defaults (inherits typography variant and uses the theme primary color; underline visible by default).
Initial route is "/home". Activating the link performs client-side navigation to pathname "/support" and updates the card title to "Support Center". The link remains visible at the top of the card and is marked active with aria-current="page" to make state observable.
No other Link components exist (instances=1), and there are no modals/popovers/drawers.
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: 1
semantic_observability: 2
disambiguation_load: 1
justification: Single MUI Link with clear label and immediate navigation feedback.
success_trigger:
human_readable:
- The "Support Center" MUI Link (data-testid="link-support") was activated.
- The current route pathname equals "/support".
- The activated link is marked as current (aria-current="page").
canonical_predicate:
state_key: link_navigation
predicate_type: equals
target_state:
activated_link_testid: link-support
url:
pathname: /support
link_aria_current: page
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-support
terminal_condition: task ends when predicate holds
negative_cases:
- Reach "/support" without activating the link (typing URL, browser history).
- Activate a different element (should not exist) that navigates to "/support".
- Link is focused but not activated (no navigation).
- aria-current is not set on the active link.
expected_interaction_path: Click the "Support Center" MUI Link → observe navigation to /support and active state.
notes: MUI Link is built on Typography and supports keyboard Enter activation; ensure data-testid and aria-current are exposed for the checker.
- id: link-mui-T02
name: Expand Shipping Details with a button-style Link
canonical_type: link
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Link'
task_template: disclose
secondary_template: null
browsergym_goal: Expand Shipping Details by clicking the "Show shipping details" link. The task will finish automatically when done.
ui_copy: |-
Order Summary
Shipping Details: hidden
Link: Show shipping details
setup_description: |-
A centered isolated card titled "Order Summary" contains a collapsed section labeled "Shipping Details". The disclosure control is implemented using the Material UI Link component rendered as a button-style link (Link with component="button") so it behaves like a link visually but acts like a button semantically.
Initial state: the Link label is "Show shipping details", aria-expanded="false", aria-controls="shipping-details". On activation, the details panel becomes visible and the Link toggles to "Hide shipping details" with aria-expanded="true".
There are no other links on the page (instances=1) and no overlays.
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: 1
semantic_observability: 3
disambiguation_load: 1
justification: Single disclosure link with clear expanded-state feedback via aria-expanded and visible panel.
success_trigger:
human_readable:
- The "Show shipping details" link (data-testid="link-shipping-details") was activated.
- The link's aria-expanded attribute equals "true".
- The Shipping Details panel (id="shipping-details") is visible.
canonical_predicate:
state_key: link_disclosure
predicate_type: equals
target_state:
activated_link_testid: link-shipping-details
link_aria_expanded: true
controlled_panel_visible: true
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-shipping-details
terminal_condition: task ends when predicate holds
negative_cases:
- Panel becomes visible without activating the link.
- Link is focused but aria-expanded remains false.
- Panel visible but aria-expanded not updated (or vice versa).
- Any other control toggles the panel (should not exist).
expected_interaction_path: Click the MUI Link labeled "Show shipping details" → details expand and aria-expanded becomes true.
notes: Use MUI Link component="button" for accessibility when there is no meaningful href; ensure aria-expanded/controls are set and data-testid is stable.
- id: link-mui-T03
name: Open a refund info popover from a Link
canonical_type: link
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Link'
task_template: open_overlay
secondary_template: null
browsergym_goal: Open the Refund Policy popover by clicking the "Refund policy" link. The task will finish automatically when done.
ui_copy: |-
Payments
Need info?
Link: Refund policy
setup_description: |-
A centered isolated card titled "Payments" contains a short sentence and a single Material UI Link labeled "Refund policy". The Link is the trigger for a small Popover overlay anchored to the link.
Initial state: popover closed, link has aria-expanded="false" and aria-haspopup="dialog". On activation, the popover opens below the link with title "Refund Policy" and a few lines of read-only text.
There are no other links on the page (instances=1). Closing the popover is not required.
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: 2
feedback_dynamics: 1
semantic_observability: 2
disambiguation_load: 1
justification: Single overlay opened from one link with immediate visible feedback.
success_trigger:
human_readable:
- The "Refund policy" link (data-testid="link-refund") was activated.
- The link's aria-expanded equals "true".
- The popover element (data-testid="popover-refund") is visible.
canonical_predicate:
state_key: link_overlay_open
predicate_type: equals
target_state:
activated_link_testid: link-refund
link_aria_expanded: true
overlay_visible: true
overlay_testid: popover-refund
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-refund
terminal_condition: task ends when predicate holds
negative_cases:
- Popover opens without activating the link.
- Link is hovered/focused only (no activation).
- Different overlay opens (should not exist).
- Popover opens then immediately closes before evaluation.
expected_interaction_path: Click "Refund policy" link → popover opens and aria-expanded toggles to true.
notes: 'Instrumentation: data-testid on link and popover; set aria-expanded on the Link while the popover is open.'
- id: link-mui-T04
name: Select the Security section link from a 4-link nav row
canonical_type: link
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Link'
task_template: select_one
secondary_template: null
browsergym_goal: Switch to the "Security" section by clicking the "Security" link in the navigation row. The task will finish automatically when done.
ui_copy: |-
Account Navigation
Links: Overview | Billing | Security | Notifications
Current section: Overview
setup_description: |-
A centered isolated card titled "Account Navigation" contains a horizontal navigation row of four Material UI Link components: "Overview", "Billing", "Security", and "Notifications". The links are placed close together and share the same typography style.
Initial state: "Overview" is active (aria-current="page" on the Overview link) and the content panel below shows "Overview". Activating a different link updates the active styling and sets aria-current="page" on the selected link. No other links exist beyond these four (instances=4).
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 4
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 1
semantic_observability: 3
disambiguation_load: 2
justification: Selecting one among multiple similar links requires correct choice; state is observable via aria-current and the panel header.
success_trigger:
human_readable:
- The "Security" link (data-testid="nav-security") was activated.
- The "Security" link has aria-current="page".
- The active panel key equals "security".
canonical_predicate:
state_key: link_tab_select
predicate_type: equals
target_state:
activated_link_testid: nav-security
active_link_testid: nav-security
active_link_aria_current: page
active_panel: security
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: nav-security
terminal_condition: task ends when predicate holds
negative_cases:
- Activate Overview, Billing, or Notifications instead of Security.
- Security panel becomes active without activating the Security link.
- Link is focused but aria-current does not update to page.
- Multiple links marked aria-current=page simultaneously.
expected_interaction_path: Click the "Security" link in the nav row → active state moves to Security and panel updates.
notes: 'Instrumentation: data-testid per nav link; enforce single aria-current=page.'
- id: link-mui-T05
name: Scroll to footer and open Cookie settings (bottom-left placement)
canonical_type: link
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Link'
task_template: scroll_find
secondary_template: null
browsergym_goal: Scroll to the bottom of the policy card and click the "Cookie settings" link. The task will finish automatically when done.
ui_copy: |-
Privacy Notice
(Scrollable text)
Footer link: Cookie settings
setup_description: |-
A single isolated card is anchored to the bottom-left of the viewport (placement=bottom_left). The card title is "Privacy Notice" and the body contains a long scrollable text block.
Only one Material UI Link exists on the page: a footer link labeled "Cookie settings" placed at the end of the scrollable content, initially off-screen. Activating the link navigates the SPA to pathname "/cookies" and updates the card title to "Cookie settings".
No other links, no popovers/modals, and no additional clutter.
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: 1
depth_layering: 3
feedback_dynamics: 1
semantic_observability: 2
disambiguation_load: 1
justification: Requires scrolling within a card to locate an off-screen link; non-central placement can affect acquisition and attention.
success_trigger:
human_readable:
- The "Cookie settings" link (data-testid="link-cookies") was activated.
- The current route pathname equals "/cookies".
- The card header title reads "Cookie settings".
canonical_predicate:
state_key: link_scroll_find_navigation
predicate_type: equals
target_state:
activated_link_testid: link-cookies
url:
pathname: /cookies
header_title: Cookie settings
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-cookies
terminal_condition: task ends when predicate holds
negative_cases:
- Reach "/cookies" without activating the footer link.
- Scroll but click outside the link area (no activation).
- Activate the link but the route/title does not update.
- Open a different policy destination.
expected_interaction_path: Scroll down the card content → reveal "Cookie settings" link → click it → observe /cookies state and header change.
notes: Ensure the link is initially below the fold. Placement bottom_left is intended to test viewport anchoring effects.
- id: link-mui-T06
name: Match a reference chip to choose the correct API link
canonical_type: link
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Link'
task_template: match_reference
secondary_template: null
browsergym_goal: Click the link that matches the reference chip ("API Playground" with a "BETA" badge). The task will finish automatically when done.
ui_copy: |-
Developer Dashboard
Reference chip: API Playground [BETA]
Link list includes two "API Playground" links with different badges
setup_description: |-
A lightweight dashboard card titled "Developer Dashboard" shows a small reference chip at the top reading "API Playground" with a distinct "BETA" badge. Below is a list of five Material UI Link rows, each with a left icon, a main label, and an optional badge chip on the right:
- API Playground (badge: BETA) ← target
- API Playground (badge: LEGACY)
- API Reference (no badge)
- API Status (no badge)
- API Changelog (badge: NEW)
The two "API Playground" options share the same main label, so the badge is necessary to choose the correct one (guidance=mixed). Activating a link navigates within the SPA to a route (target: "/api/playground"). Clutter is low: aside from the reference chip and list header, there are no other interactables.
scene_context:
theme: light
spacing: comfortable
layout: dashboard
placement: center
scale: default
instances: 5
guidance: mixed
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 4
depth_layering: 1
feedback_dynamics: 1
semantic_observability: 3
disambiguation_load: 4
justification: Two links share the same label; the agent must incorporate the badge shown in the reference chip to select the correct instance.
success_trigger:
human_readable:
- The link matching the reference chip (API Playground with BETA badge) was activated (data-testid="link-api-playground-beta").
- The current route pathname equals "/api/playground".
- The activated link id equals the target link id (not the LEGACY variant).
canonical_predicate:
state_key: link_matches_reference_chip
predicate_type: matches_reference
target_state:
reference: label:API Playground + badge:BETA
activated_link_testid: link-api-playground-beta
url:
pathname: /api/playground
tolerance:
badge_match: exact_text
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-api-playground-beta
terminal_condition: task ends when predicate holds
negative_cases:
- Click the "API Playground" link with the LEGACY badge.
- Reach "/api/playground" without activating the correct BETA link.
- Click a different API link (Reference/Status/Changelog).
- Select the correct row but the accessible name/badge text is not captured (missing instrumentation).
expected_interaction_path: Compare the reference chip (API Playground + BETA) to the list → click the API Playground row with the BETA badge → route updates to /api/playground.
notes: 'Instrumentation: ensure badge text is included in an accessible label or adjacent text node; assign distinct data-testid for beta vs legacy rows.'
- id: link-mui-T07
name: Reset Email Notifications using the correct reset link (compact settings panel)
canonical_type: link
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Link'
task_template: clear_reset
secondary_template: null
browsergym_goal: In the Email notifications section, click the "Reset" link to restore defaults. The task will finish automatically when done.
ui_copy: |-
Notification Settings
Section: Email notifications (Customized) — Link: Reset
Section: Push notifications — Link: Reset
setup_description: |-
A settings_panel layout titled "Notification Settings" contains two stacked sections with compact spacing (denser row heights and tighter padding): "Email notifications" and "Push notifications".
Each section header includes a right-aligned Material UI Link labeled "Reset". The two links look identical and are close together vertically due to compact spacing. Initial state: Email notifications are marked "Customized" and its Reset link is enabled; Push notifications are already default and its Reset link is disabled.
When the Email Reset link is activated, the Email section status flips to "Default" and that same Reset link becomes disabled (aria-disabled="true"). No confirmation dialog is used; feedback is immediate and persistent in the section header.
scene_context:
theme: light
spacing: compact
layout: settings_panel
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: 3
disambiguation_load: 4
justification: Compact layout increases risk of clicking the wrong identical Reset link; success requires correct section-based disambiguation.
success_trigger:
human_readable:
- The Email notifications Reset link (data-testid="reset-email") was activated.
- After activation, the Email Reset link has aria-disabled="true".
- The Email section status reads "Default".
canonical_predicate:
state_key: link_reset_section
predicate_type: equals
target_state:
activated_link_testid: reset-email
email_reset_link_aria_disabled: true
email_status: Default
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: reset-email
terminal_condition: task ends when predicate holds
negative_cases:
- Click the Push notifications Reset link.
- Email becomes Default without activating the Email Reset link.
- Reset link is activated but remains enabled (reset did not apply).
- Any other control resets the section without using the link.
expected_interaction_path: Find the Email notifications header → click its "Reset" link → verify Email shows Default and link becomes disabled.
notes: 'Instrumentation: data-testid reset-email/reset-push; use aria-disabled consistently on MUI Link rendered as button or anchor.'
- id: link-mui-T08
name: Navigate to Security from sidebar in a dark dashboard (MUI)
canonical_type: link
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Link'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the sidebar labeled "Navigation", click the "Security" link to open Security Settings. The task will finish automatically when done.
ui_copy: |-
Dashboard (dark)
Sidebar "Navigation": Profile | Billing | Security
Main content includes an inline "Security" help link and a footer "Security" link
setup_description: |-
A dark-themed dashboard layout fills the screen. A left sidebar titled "Navigation" contains three Material UI Link items: "Profile", "Billing", and "Security". The main content card includes a paragraph with an inline link also labeled "Security" (help-article link), and the footer contains a small "Security" link as well.
Initial route: "/settings/profile" with the sidebar Profile link active (aria-current="page"). The task requires using the sidebar instance of the Security link (data-testid="sidebar-security"). Activating it navigates to "/settings/security" and sets aria-current="page" on the sidebar Security link.
Clutter is medium due to multiple regions (sidebar, content, footer) and repeated labels.
scene_context:
theme: dark
spacing: comfortable
layout: dashboard
placement: center
scale: default
instances: 5
guidance: text
clutter: medium
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: Multiple same-label links across regions under dark theme require correct-instance selection and robust observability.
success_trigger:
human_readable:
- The sidebar Security link (data-testid="sidebar-security") was activated.
- The current route pathname equals "/settings/security".
- The sidebar Security link has aria-current="page".
canonical_predicate:
state_key: link_navigation_with_instance
predicate_type: equals
target_state:
activated_link_testid: sidebar-security
url:
pathname: /settings/security
active_link_testid: sidebar-security
active_link_aria_current: page
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: sidebar-security
terminal_condition: task ends when predicate holds
negative_cases:
- Click the inline article Security link or the footer Security link (even if it navigates to the same route).
- Reach "/settings/security" without activating the sidebar link.
- Activate the wrong sidebar item (Profile/Billing).
- Route changes but active state is not reflected on the sidebar Security link.
expected_interaction_path: Locate sidebar titled "Navigation" → click Security link in sidebar → observe navigation and aria-current update.
notes: Use distinct data-testid for sidebar vs inline vs footer instances; rely on lastActivatedLinkTestId to enforce correct instance.
- id: link-mui-T09
name: Open the correct user from a small-scale table of Details links
canonical_type: link
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Link'
task_template: select_one
secondary_template: null
browsergym_goal: In the Users table, click the "Details" link for "Alicia Keys". The task will finish automatically when done.
ui_copy: |-
Users
Table rows include: Alicia Keys, Albert King, Alice Johnson, Alina Chen...
Each row has a "Details" link
setup_description: |-
A table_cell scene presents a compact Users table rendered at small scale (smaller typography and tighter column widths). The table has 8 rows; the first column shows the user name, and the last column contains a Material UI Link labeled "Details" for each row.
All action links have the same visible label ("Details"), making row-based selection necessary. Initial route is "/users". Activating the Details link for a row navigates to a detail view route (target: "/users/alicia-keys") and shows the user name in a header above the table.
No other links exist beyond the 8 Details links (instances=8).
scene_context:
theme: light
spacing: comfortable
layout: table_cell
placement: center
scale: small
instances: 8
guidance: text
clutter: medium
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 5
density_choice_interference: 4
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: Small-scale table increases pointing difficulty; many identical action links require accurate row disambiguation.
success_trigger:
human_readable:
- The "Details" link in the "Alicia Keys" row (data-testid="user-alicia-details") was activated.
- The current route pathname equals "/users/alicia-keys".
- The detail header displays "Alicia Keys".
canonical_predicate:
state_key: table_row_link_activation
predicate_type: equals
target_state:
activated_link_testid: user-alicia-details
url:
pathname: /users/alicia-keys
detail_title: Alicia Keys
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: user-alicia-details
terminal_condition: task ends when predicate holds
negative_cases:
- Click the Details link for any other user.
- Reach "/users/alicia-keys" without clicking the correct row's Details link.
- Click the Alicia Keys row text but not the Details link.
- Open a user detail view but cannot verify the exact link instance (missing testids).
expected_interaction_path: Find the row labeled "Alicia Keys" → click its "Details" link → observe navigation to /users/alicia-keys and header update.
notes: 'Instrumentation: stable data-testid for each row action link; small scale intended to stress target acquisition.'
- id: link-mui-T10
name: Open Changelog from a resources popover (top-left modal flow)
canonical_type: link
implementation_source: mui
implementation_variant: null
implementation_component: 'MUI: Link'
task_template: open_and_select
secondary_template: null
browsergym_goal: Open the Changelog panel by clicking "More resources" and then clicking "Changelog". The task will finish automatically when done.
ui_copy: |-
Resources
Link: More resources
Popover links: Documentation, Changelog, Status
setup_description: |-
A modal_flow scene is anchored near the top-left of the viewport (placement=top_left). A small card titled "Resources" contains a Material UI Link labeled "More resources" that opens a Popover menu.
Initial state: menu closed. Activating "More resources" reveals a popover containing three Link items: "Documentation", "Changelog", and "Status". Selecting "Changelog" opens a right-side panel (drawer) titled "Changelog". The selected link indicates expanded/open state with aria-expanded="true" while the drawer is visible.
Instances of Link on the page: 4 (trigger + 3 menu links). Clutter is low; all other content is read-only.
scene_context:
theme: light
spacing: comfortable
layout: modal_flow
placement: top_left
scale: default
instances: 4
guidance: text
clutter: low
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 3
depth_layering: 4
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 3
justification: Two-step selection across an overlay menu and a drawer, with multiple adjacent link options in the popover.
success_trigger:
human_readable:
- The "Changelog" link inside the resources popover (data-testid="resource-changelog") was activated.
- The Changelog drawer/panel (data-testid="drawer-changelog") is visible.
- The controlling "Changelog" link has aria-expanded="true".
canonical_predicate:
state_key: nested_overlay_link_flow
predicate_type: equals
target_state:
activated_link_testid: resource-changelog
drawer_visible: true
drawer_testid: drawer-changelog
link_aria_expanded: true
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: resource-changelog
terminal_condition: task ends when predicate holds
negative_cases:
- Open the popover but click Documentation or Status instead of Changelog.
- Drawer becomes visible via any other mechanism that does not activate the Changelog link instance.
- Popover opens but drawer remains closed.
- aria-expanded is not updated on the controlling link while the drawer is open.
expected_interaction_path: Click "More resources" → popover opens → click "Changelog" → drawer opens and link reflects expanded/open.
notes: 'Instrumentation: data-testid for trigger and each menu link; expose drawer visibility; placement=top_left tests non-central anchoring.'
- id: link-mantine-T01
name: Navigate via Support Center anchor (Mantine)
canonical_type: link
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Anchor'
task_template: navigate_to
secondary_template: null
browsergym_goal: Open the Support Center page by clicking the "Support Center" link. The task will finish automatically when done.
ui_copy: |-
Help
Link: Support Center
setup_description: |-
A centered isolated card titled "Help" contains exactly one Mantine Anchor component labeled "Support Center". The Anchor uses default Mantine styling (text link with hover underline).
Initial route is "/home". Activating the Anchor performs client-side navigation to "/support" and updates the card title to "Support Center". The Anchor remains visible and is marked active via aria-current="page" for observability.
No other links exist (instances=1) and there are no overlays.
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: 1
semantic_observability: 2
disambiguation_load: 1
justification: Single clearly labeled Anchor with immediate navigation feedback.
success_trigger:
human_readable:
- The "Support Center" Anchor (data-testid="link-support") was activated.
- The current route pathname equals "/support".
- The activated link has aria-current="page".
canonical_predicate:
state_key: link_navigation
predicate_type: equals
target_state:
activated_link_testid: link-support
url:
pathname: /support
link_aria_current: page
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-support
terminal_condition: task ends when predicate holds
negative_cases:
- Navigate to /support without activating the Anchor (typing URL, history).
- Activate a different element that causes navigation (should not exist).
- Link is focused but not activated.
- aria-current not applied on the active link.
expected_interaction_path: Click "Support Center" Anchor → observe route/title update and active state.
notes: Mantine Anchor is polymorphic; ensure the default root is <a> with stable data-testid and aria-current on active state.
- id: link-mantine-T02
name: Expand Plan Details with a button-style Anchor
canonical_type: link
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Anchor'
task_template: disclose
secondary_template: null
browsergym_goal: Expand Plan Details by clicking the "Show plan details" link. The task will finish automatically when done.
ui_copy: |-
Subscription
Plan Details: hidden
Link: Show plan details
setup_description: |-
A centered isolated card titled "Subscription" contains a collapsed section labeled "Plan Details". The disclosure control is a Mantine Anchor rendered as a button-like control (Anchor with component="button") so it is focusable and activates like a button while keeping link styling.
Initial state: aria-expanded="false" and aria-controls="plan-details" on the Anchor; the details panel is hidden. On activation, the panel becomes visible and aria-expanded becomes "true"; the Anchor text changes to "Hide plan details".
Only one link exists (instances=1), no overlays.
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: 1
semantic_observability: 3
disambiguation_load: 1
justification: Single disclosure Anchor with explicit aria-expanded state and visible panel feedback.
success_trigger:
human_readable:
- The "Show plan details" Anchor (data-testid="link-plan-details") was activated.
- The Anchor's aria-expanded equals "true".
- The Plan Details panel (id="plan-details") is visible.
canonical_predicate:
state_key: link_disclosure
predicate_type: equals
target_state:
activated_link_testid: link-plan-details
link_aria_expanded: true
controlled_panel_visible: true
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-plan-details
terminal_condition: task ends when predicate holds
negative_cases:
- Panel becomes visible without activating the Anchor.
- Anchor is focused but aria-expanded stays false.
- Panel visible but aria-expanded not updated (or vice versa).
- Any other UI toggles the panel (should not exist).
expected_interaction_path: Click "Show plan details" → panel expands and aria-expanded becomes true.
notes: Mantine Anchor supports component prop; ensure aria-expanded/controls are present for the checker.
- id: link-mantine-T03
name: Open a seat definition popover from an Anchor
canonical_type: link
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Anchor'
task_template: open_overlay
secondary_template: null
browsergym_goal: Open the "Seat" info popover by clicking the "What is a seat?" link. The task will finish automatically when done.
ui_copy: |-
Pricing
Link: What is a seat?
setup_description: |-
A centered isolated card titled "Pricing" includes one Mantine Anchor labeled "What is a seat?". The Anchor triggers a small popover overlay (Mantine Popover/Tooltip-style) anchored to the link.
Initial state: popover closed; the Anchor has aria-expanded="false" and aria-haspopup="dialog". On activation, a popover appears below the link with a short definition and a title "Seat".
No other links exist (instances=1). Closing the popover is not required.
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: 2
feedback_dynamics: 1
semantic_observability: 2
disambiguation_load: 1
justification: Single Anchor triggers a single overlay with clear visible open-state feedback.
success_trigger:
human_readable:
- The "What is a seat?" Anchor (data-testid="link-seat") was activated.
- The Anchor's aria-expanded equals "true".
- The popover (data-testid="popover-seat") is visible.
canonical_predicate:
state_key: link_overlay_open
predicate_type: equals
target_state:
activated_link_testid: link-seat
link_aria_expanded: true
overlay_visible: true
overlay_testid: popover-seat
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-seat
terminal_condition: task ends when predicate holds
negative_cases:
- Popover opens without activating the Anchor.
- Anchor is hovered/focused only (no activation).
- Different overlay opens (should not exist).
- Popover opens then closes before terminal condition.
expected_interaction_path: Click "What is a seat?" → popover opens anchored to the link and aria-expanded becomes true.
notes: 'Instrumentation: data-testid on Anchor and popover; ensure aria-expanded updates while popover is open.'
- id: link-mantine-T04
name: Select the Invoices section from a 5-link row (Mantine)
canonical_type: link
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Anchor'
task_template: select_one
secondary_template: null
browsergym_goal: Switch to the "Invoices" section by clicking the "Invoices" link in the navigation row. The task will finish automatically when done.
ui_copy: |-
Account Sections
Links: Overview | Usage | Invoices | Payments | Team
Current section: Overview
setup_description: |-
A centered isolated card titled "Account Sections" contains a horizontal row of five Mantine Anchor links used as in-card navigation: "Overview", "Usage", "Invoices", "Payments", and "Team".
Initial state: Overview is active (aria-current="page" on the Overview Anchor) and the panel below shows "Overview". Selecting another Anchor updates aria-current="page" and the visible panel heading.
No other links are present (instances=5).
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 5
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 1
semantic_observability: 3
disambiguation_load: 3
justification: More link options in a tight row increases choice interference; state remains observable via aria-current and panel heading.
success_trigger:
human_readable:
- The "Invoices" Anchor (data-testid="nav-invoices") was activated.
- The "Invoices" Anchor has aria-current="page".
- The active panel key equals "invoices".
canonical_predicate:
state_key: link_tab_select
predicate_type: equals
target_state:
activated_link_testid: nav-invoices
active_link_testid: nav-invoices
active_link_aria_current: page
active_panel: invoices
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: nav-invoices
terminal_condition: task ends when predicate holds
negative_cases:
- Activate any other section link (Overview/Usage/Payments/Team).
- Invoices panel becomes active without activating the Invoices link.
- Invoices link focused but aria-current not set to page.
- Multiple links marked as current simultaneously.
expected_interaction_path: Click the "Invoices" link in the row → panel heading switches to Invoices and aria-current updates.
notes: 'Instrumentation: data-testid per nav Anchor; enforce a single active aria-current=page at any time.'
- id: link-mantine-T05
name: Pick the link that matches a reference color dot
canonical_type: link
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Anchor'
task_template: match_reference
secondary_template: null
browsergym_goal: In the link list, click the link with the same color dot as the reference swatch (green). The task will finish automatically when done.
ui_copy: |-
Quick Access
Reference swatch: green dot
Links each have a colored dot: red, blue, green, orange
setup_description: |-
A form_section titled "Quick Access" is centered on the page. At the top of the section is a small reference swatch: a solid green circular dot with the label "Reference".
Below is a vertical list of four Mantine Anchor rows. Each row starts with a small colored dot (visual indicator) followed by a text label:
- Red dot — "Billing"
- Blue dot — "Usage"
- Green dot — "Status"
- Orange dot — "Changelog"
The task instruction relies on the color dot (guidance=visual), not the text label. Activating the target row navigates to pathname "/status".
Clutter is low: there is only the section title, the reference swatch, and the link list.
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 4
guidance: visual
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 1
semantic_observability: 2
disambiguation_load: 3
justification: Requires visual matching (color dot) across multiple similar link rows; labels exist but are not used by the instruction.
success_trigger:
human_readable:
- The link row whose dot color matches the reference swatch (green) was activated (data-testid="link-status-green").
- The current route pathname equals "/status".
canonical_predicate:
state_key: link_matches_reference_color
predicate_type: matches_reference
target_state:
reference: dot_color:green
activated_link_testid: link-status-green
url:
pathname: /status
tolerance:
color_match: exact_token
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-status-green
terminal_condition: task ends when predicate holds
negative_cases:
- Click any non-green dot link (Billing/Usage/Changelog).
- Navigate to /status without activating the green-dot link (typing URL).
- Click the correct text label but the wrong dot row (if duplicated labels appear; should not).
- Reference color swatch missing from DOM (checker cannot verify match).
expected_interaction_path: Look at the reference green dot → find the link row with the same green dot → click it.
notes: 'Instrumentation: represent dot color as a stable token (e.g., data-dot="green") so the checker can verify reference matching without pixel thresholds.'
- id: link-mantine-T06
name: Scroll to bottom and open Contact support
canonical_type: link
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Anchor'
task_template: scroll_find
secondary_template: null
browsergym_goal: Scroll to the bottom of the FAQ card and click the "Contact support" link. The task will finish automatically when done.
ui_copy: |-
FAQ
(Scrollable list of questions)
Footer link: Contact support
setup_description: |-
A centered isolated card titled "FAQ" contains a long scrollable list of Q&A items (several screens). At the very bottom, after the last item, there is exactly one Mantine Anchor labeled "Contact support".
The link is initially off-screen. Activating it navigates the SPA to pathname "/contact" and updates the card title to "Contact support".
No other Anchor/Link components exist (instances=1). No overlays and no extra clutter.
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: 1
depth_layering: 3
feedback_dynamics: 1
semantic_observability: 2
disambiguation_load: 1
justification: Single off-screen link inside a long scroll container; the primary challenge is search/scroll rather than choice.
success_trigger:
human_readable:
- The "Contact support" Anchor (data-testid="link-contact") was activated.
- The current route pathname equals "/contact".
- The card header title reads "Contact support".
canonical_predicate:
state_key: link_scroll_find_navigation
predicate_type: equals
target_state:
activated_link_testid: link-contact
url:
pathname: /contact
header_title: Contact support
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: link-contact
terminal_condition: task ends when predicate holds
negative_cases:
- Reach /contact without activating the Contact support link.
- Scroll but click outside the link (no activation).
- Activate the link but route/title does not update.
- Open a different destination.
expected_interaction_path: Scroll down through the FAQ list → reveal footer "Contact support" link → click it → observe navigation.
notes: Ensure the scroll container is the card body; link should not be visible on initial load.
- id: link-mantine-T07
name: Navigate to Security via settings nav in dark theme (Mantine)
canonical_type: link
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Anchor'
task_template: navigate_to
secondary_template: null
browsergym_goal: In the "Settings navigation" list, click the "Security" link to open Security Settings. The task will finish automatically when done.
ui_copy: |-
Settings (dark)
Settings navigation: Profile | Billing | Security
Main panel contains a help sentence with an inline "Security" link
setup_description: |-
A dark-themed settings_panel fills the center of the screen. On the left side of the panel, a vertical list titled "Settings navigation" contains three Mantine Anchor links: "Profile", "Billing", and "Security". On the right, the main content area shows a small help paragraph that includes an inline Anchor also labeled "Security" (distractor instance).
Initial route: "/settings/profile" with the Profile nav link marked active (aria-current="page"). The task requires activating the "Security" link from the Settings navigation list (data-testid="settings-nav-security"), not the inline help link.
Activating the correct nav link navigates to "/settings/security" and sets aria-current="page" on the nav Security link.
scene_context:
theme: dark
spacing: comfortable
layout: settings_panel
placement: center
scale: default
instances: 4
guidance: text
clutter: medium
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: Same-label links in different regions under dark theme require correct-instance selection and robust state verification.
success_trigger:
human_readable:
- The Settings navigation Security link (data-testid="settings-nav-security") was activated.
- The current route pathname equals "/settings/security".
- The nav Security link has aria-current="page".
canonical_predicate:
state_key: link_navigation_with_instance
predicate_type: equals
target_state:
activated_link_testid: settings-nav-security
url:
pathname: /settings/security
active_link_testid: settings-nav-security
active_link_aria_current: page
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: settings-nav-security
terminal_condition: task ends when predicate holds
negative_cases:
- Click the inline help "Security" link (data-testid="help-security") even if it navigates to the same route.
- Reach /settings/security without activating the navigation link (typing URL, history).
- Activate the wrong nav link (Profile/Billing).
- Route changes but aria-current is not set correctly on the nav link.
expected_interaction_path: Find the left list labeled "Settings navigation" → click "Security" there → observe navigation and active nav state.
notes: 'Instrumentation: distinct testids for settings-nav-security vs help-security; use aria-current on the active nav Anchor.'
- id: link-mantine-T08
name: Reset the GitHub integration in a cluttered integrations form
canonical_type: link
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Anchor'
task_template: clear_reset
secondary_template: null
browsergym_goal: In the GitHub integration section, click the "Restore defaults" link to reset that integration. The task will finish automatically when done.
ui_copy: |-
Integrations
Sections: Slack | GitHub | Jira
Each section has a "Restore defaults" link
setup_description: |-
A form_section layout titled "Integrations" presents three stacked integration panels: "Slack", "GitHub", and "Jira". Each panel contains several read-only fields (e.g., "Webhook URL", "Connected workspace") and toggle-like status indicators (not interactive in this task), plus a right-aligned Mantine Anchor link in the panel header labeled "Restore defaults".
Spacing is compact, so the three panels and their header links appear close together. Clutter is high due to many labeled rows and status chips in each panel.
Initial state: GitHub is "Customized" and its Restore defaults link is enabled. Slack and Jira are already at default and their Restore defaults links are disabled (aria-disabled="true"). When the GitHub link is activated, GitHub flips to "Default" and its Restore defaults link becomes disabled.
scene_context:
theme: light
spacing: compact
layout: form_section
placement: center
scale: default
instances: 3
guidance: text
clutter: high
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: High clutter and multiple similar reset links require robust section identification and correct instance activation under compact spacing.
success_trigger:
human_readable:
- The GitHub Restore defaults link (data-testid="reset-github") was activated.
- After activation, the GitHub reset link has aria-disabled="true".
- The GitHub section status reads "Default".
canonical_predicate:
state_key: link_reset_section
predicate_type: equals
target_state:
activated_link_testid: reset-github
github_reset_link_aria_disabled: true
github_status: Default
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: reset-github
terminal_condition: task ends when predicate holds
negative_cases:
- Click Slack or Jira Restore defaults links (should be disabled and not count).
- GitHub becomes Default without activating the GitHub link.
- Activate the GitHub link but it remains enabled (reset did not apply).
- Use any other non-link control to reset integration state.
expected_interaction_path: Locate the GitHub integration panel → click its "Restore defaults" link → verify GitHub status becomes Default and the link becomes disabled.
notes: 'Instrumentation: data-testid per reset link (reset-slack/reset-github/reset-jira); expose per-panel status strings; use aria-disabled to reflect disabled state.'
- id: link-mantine-T09
name: Download the correct invoice from a small-scale table (top-right placement)
canonical_type: link
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Anchor'
task_template: select_one
secondary_template: null
browsergym_goal: In the invoices table, click the "Download" link for invoice "INV-1042". The task will finish automatically when done.
ui_copy: |-
Invoices
Table includes invoice IDs like INV-1039, INV-1040, INV-1041, INV-1042...
Each row has a "Download" link
setup_description: |-
A table_cell scene is anchored near the top-right of the viewport (placement=top_right). The table is rendered at small scale (smaller text and tighter columns) and lists 10 invoices. Columns include "Invoice ID", "Date", "Total", and "Action".
In the Action column, each row contains a Mantine Anchor link labeled "Download" (identical label across rows). The row is uniquely identified by the Invoice ID in the first column.
When a row's Download link is activated, it simulates a successful download by changing that link's label to "Downloaded" and disabling it (aria-disabled="true"). No actual file download is initiated; feedback is immediate on the link itself.
No other links exist beyond the 10 action links (instances=10).
scene_context:
theme: light
spacing: comfortable
layout: table_cell
placement: top_right
scale: small
instances: 10
guidance: text
clutter: medium
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 5
density_choice_interference: 4
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: Many identical action links in a small-scale table require precise clicking and correct row selection, compounded by non-central placement.
success_trigger:
human_readable:
- The "Download" link in the "INV-1042" row (data-testid="inv-1042-download") was activated.
- That same link becomes disabled (aria-disabled="true").
- That same link's visible label changes to "Downloaded".
canonical_predicate:
state_key: table_row_link_activation_with_state_change
predicate_type: equals
target_state:
activated_link_testid: inv-1042-download
link_aria_disabled: true
link_label: Downloaded
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: inv-1042-download
terminal_condition: task ends when predicate holds
negative_cases:
- Click Download for any other invoice row.
- INV-1042 row is selected but the link is not activated.
- The link is activated but does not change to disabled/Downloaded state.
- Any other non-link control marks the invoice as downloaded.
expected_interaction_path: Scan invoice IDs to find INV-1042 → click the Download link in that row → verify it changes to "Downloaded" and becomes disabled.
notes: 'Instrumentation: data-testid per row action link; implement deterministic link-state change (label + aria-disabled) so success depends on the link component state.'
- id: link-mantine-T10
name: Open API Status from a resources popover using a reference icon
canonical_type: link
implementation_source: mantine
implementation_variant: null
implementation_component: 'Mantine: Anchor'
task_template: open_and_select
secondary_template: null
browsergym_goal: Open the API Status page by clicking "More resources" and then selecting the link that matches the reference icon (heartbeat line). The task will finish automatically when done.
ui_copy: |-
Developer Resources
Reference icon: heartbeat line
Link: More resources
Popover contains several resource links including two "status" options
setup_description: |-
A modal_flow scene shows a small card titled "Developer Resources" centered in the viewport. At the top of the card, a reference icon is displayed: a heartbeat line glyph. Below it is a Mantine Anchor labeled "More resources" that opens a popover menu.
When the popover is open, it lists five Anchor links, each with a left icon and a text label:
- API Status (heartbeat line icon) ← target
- System Status (signal bars icon)
- Rate limits (gauge icon)
- SDK download (download icon)
- Changelog (list icon)
Two options include the word "Status"; the instruction requires using the reference icon to choose the correct one (guidance=mixed). Activating the target navigates to pathname "/api/status" and updates the card title to "API Status".
Instances of Link on the page: 6 (trigger + 5 menu links).
scene_context:
theme: light
spacing: comfortable
layout: modal_flow
placement: center
scale: default
instances: 6
guidance: mixed
clutter: low
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 4
depth_layering: 4
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 4
justification: Combines a two-step overlay flow with reference-based disambiguation among multiple similar menu links.
success_trigger:
human_readable:
- The "API Status" link inside the resources popover (data-testid="resource-api-status") was activated.
- The current route pathname equals "/api/status".
- The page/card title reads "API Status".
canonical_predicate:
state_key: nested_overlay_reference_select
predicate_type: matches_reference
target_state:
reference: icon:heartbeat
activated_link_testid: resource-api-status
url:
pathname: /api/status
header_title: API Status
tolerance:
reference_match: exact_icon_id
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: resource-api-status
terminal_condition: task ends when predicate holds
negative_cases:
- Click "System Status" instead of "API Status".
- Navigate to /api/status without activating the API Status link instance.
- Open the popover but do not make a selection.
- Activate a different resource link (Rate limits/SDK download/Changelog).
expected_interaction_path: Click "More resources" → popover opens → match the reference heartbeat icon to the menu item → click "API Status" → observe navigation/title update.
notes: 'Instrumentation: stable icon ids (e.g., data-icon="heartbeat"); data-testid for each menu link; checker uses lastActivatedLinkTestId + pathname + reference icon id.'
|