File size: 198,195 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 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 | - id: inline_editable_text-antd-v2-T01
name: Billing alias among four icon-only rows
canonical_type: inline_editable_text
implementation_source: antd
implementation_variant: typography_editable_icon_only
implementation_component: 'AntD: Typography.Text (editable, triggerType=["icon"])'
task_template: enter_text
secondary_template: null
browsergym_goal: In the “Billing identities” panel, change the inline editable text labeled “Billing alias” to “North Division”. Do not edit “Legal alias”, “Invoice label”, or “Receipt footer”. Then click Save for the Billing alias row. The task will finish automatically when done.
ui_copy: In the “Billing identities” panel, change the inline editable text labeled “Billing alias” to “North Division”. Do not edit “Legal alias”, “Invoice label”, or “Receipt footer”. Then click Save for the Billing alias row. The task will finish automatically when done.
setup_description: |-
The page uses a compact settings_panel anchored near the bottom-right of the viewport. A dense “Billing identities” section sits between unrelated toggles, select boxes, and status chips. It contains four same-type inline editable rows: “Legal alias”, “Billing alias”, “Invoice label”, and “Receipt footer”. All four use Ant Design Typography.Text with `editable={{ triggerType: ['icon'] }}`, so only a small pencil icon at the right edge enters edit mode.
The initial values are “Northwind LLC”, “Northwind Billing”, “Invoice”, and “Thanks for your order”. When one row enters edit mode, the text swaps into a one-line input with two tiny inline controls: a check icon labeled Save and a close icon labeled Cancel. Other rows remain read-only. There is no global submit button; only the target row should change.
scene_context:
theme: light
spacing: compact
layout: settings_panel
placement: bottom_right
scale: small
instances: 4_plus
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- instances
- scale
- clutter
factor_rationale: The row semantics are easy, but the section packs four nearly identical inline editors into a compact cluttered panel so the hard part is finding the correct pencil/save pair and not drifting into a sibling row.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 5
justification: This is hard because the row-local affordances are icon-sized, the panel is visually busy, and four same-type rows make wrong-instance edits plausible even though the target string is simple.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Billing alias' is the one that must be checked.
- The committed value equals 'North Division' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: North Division
non_target_instances_must_remain:
Legal alias: Northwind LLC
Invoice label: Invoice
Receipt footer: Thanks for your order
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Billing alias
terminal_condition: task ends when predicate holds
negative_cases:
- Editing “Invoice label”, “Legal alias”, or “Receipt footer” instead of “Billing alias”.
- Typing the correct value into Billing alias but leaving the row in edit mode without clicking Save.
- Saving a close variant such as “North division” or “NorthDivision”.
- Changing Billing alias correctly but also modifying any non-target row.
expected_interaction_path:
- Locate the Billing identities panel and the “Billing alias” row.
- Click that row’s pencil icon to enter edit mode.
- Replace the value with “North Division”.
- Click the row-local Save control and verify the row returns to display mode.
notes: Uses a native AntD editable-text trigger-type variation; the implementation should expose the correct row label and committed display value for checking.
- id: inline_editable_text-antd-v2-T02
name: Gateway public code in table with Enter-only commit
canonical_type: inline_editable_text
implementation_source: antd
implementation_variant: typography_editable_text_trigger_enter_only
implementation_component: 'AntD: Typography.Text (editable, triggerType=["text"], enterIcon=null)'
task_template: table_operation
secondary_template: null
browsergym_goal: In the “Service aliases” table, edit the “Public code” cell for the “Gateway” row so it becomes “AP-137”. The table uses Enter to commit this inline edit, so press Enter to save the change. Do not edit the Billing row. The task will finish automatically when done.
ui_copy: In the “Service aliases” table, edit the “Public code” cell for the “Gateway” row so it becomes “AP-137”. The table uses Enter to commit this inline edit, so press Enter to save the change. Do not edit the Billing row. The task will finish automatically when done.
setup_description: |-
The layout is a compact table_cell scene near the top-right of the viewport. A small Ant Design table titled “Service aliases” has two rows, “Gateway” and “Billing”, and columns “Service”, “Public code”, and “Owner”. Only the two Public code cells are inline editable.
Each editable cell uses Ant Design Typography.Text with `editable={{ triggerType: ['text'], enterIcon: null }}`. There is no visible pencil trigger and no inline checkmark: clicking the text itself opens a compact input, and pressing Enter commits the edit while Escape cancels it. The Gateway cell starts as “AP-042”; Billing starts as “AP-550”.
Dense neighboring cells, row hover styling, and the lack of a visible Save icon make the edit/commit transition easy for humans but brittle for agents that expect the usual pencil-plus-check idiom.
scene_context:
theme: light
spacing: compact
layout: table_cell
placement: top_right
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: table
design_intent:
active_factors:
- layout
- scale
- instances
factor_rationale: The task replaces the familiar save icon with keyboard-only commit inside a dense table, so it pressures row acquisition and interaction knowledge without introducing irrelevant workflow steps.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 4
semantic_observability: 2
disambiguation_load: 4
justification: Small table targets, text-only entry into edit mode, and Enter-only commit combine to make this a hard but still realistic inline-edit table task.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Gateway/Public code' is the one that must be checked.
- The committed value equals 'AP-137' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Enter'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: AP-137
mode: display
non_target_instances_must_remain:
Billing/Public code: AP-550
tolerance: null
require_confirm: true
confirm_control: Enter
require_correct_instance: true
target_instance_label_or_id: Gateway/Public code
terminal_condition: task ends when predicate holds
negative_cases:
- Editing the Billing row instead of Gateway.
- Typing AP-137 but not pressing Enter, leaving the cell in editing mode.
- Clicking elsewhere and discarding the draft instead of committing with Enter.
- Changing any other table cell or saving a close value such as “AP137”.
expected_interaction_path:
- Click the Public code text in the Gateway row.
- Replace AP-042 with AP-137.
- Press Enter to commit the inline edit.
- Verify the Gateway cell shows AP-137 in read-only mode and Billing remains AP-550.
notes: 'This task intentionally relies on documented AntD editable props: text-trigger editing and enterIcon removal. The checker should treat Enter as the required commit action.'
- id: inline_editable_text-antd-v2-T03
name: Approval tag at max-length boundary inside drawer
canonical_type: inline_editable_text
implementation_source: antd
implementation_variant: typography_editable_max_length_drawer
implementation_component: 'AntD: Drawer + Typography.Text (editable with maxLength)'
task_template: enter_formatted
secondary_template: null
browsergym_goal: Open the “Edit approval tags” drawer. Change only the inline editable text labeled “Approval tag” to “needs-review”, which is the longest valid value for this field, and then click Save on that row. Do not edit “Queue tag” or “Escalation tag”. The task will finish automatically when done.
ui_copy: Open the “Edit approval tags” drawer. Change only the inline editable text labeled “Approval tag” to “needs-review”, which is the longest valid value for this field, and then click Save on that row. Do not edit “Queue tag” or “Escalation tag”. The task will finish automatically when done.
setup_description: |-
The page uses drawer_flow with compact spacing and medium clutter. A small “Edit approval tags” button opens a left-side Ant Design Drawer containing three inline editable rows: “Approval tag”, “Queue tag”, and “Escalation tag”. The drawer also contains unrelated static metadata such as “Owner: Risk Ops” and “Updated 2h ago”.
The target row uses Ant Design Typography.Text with `editable={{ maxLength: 12, triggerType: ['icon'] }}`. Its initial value is “pending”; Queue tag is “triage”; Escalation tag is “manual”. When the row enters edit mode, the input shows a small character count and disables commit if the draft exceeds 12 characters.
The required value “needs-review” fits exactly within the boundary. The other two rows remain unchanged, and there is no drawer-level submit; the row-local Save icon commits the change.
scene_context:
theme: dark
spacing: compact
layout: drawer_flow
placement: top_left
scale: small
instances: 3
guidance: text
clutter: medium
component_context:
overlay_model: single_overlay
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: drawer
design_intent:
active_factors:
- overlay_model
- instances
- scale
factor_rationale: The drawer creates an extra layer, the rows are compact and similar, and the max-length boundary adds visible validation pressure without turning the task into a toy form check.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 4
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 4
semantic_observability: 3
disambiguation_load: 4
justification: The task is hard because the target sits in a compact drawer, three same-type rows compete for attention, and the exact boundary-valid string must be committed through a tiny row-local icon.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Approval tag' is the one that must be checked.
- The committed value equals 'needs-review' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: needs-review
non_target_instances_must_remain:
Queue tag: triage
Escalation tag: manual
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Approval tag
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Queue tag or Escalation tag instead of Approval tag.
- Entering a longer invalid value that leaves the row in an error state.
- Typing “needs-review” correctly but not clicking the row-local Save control.
- Saving the correct Approval tag while also changing any non-target row.
expected_interaction_path:
- Open the drawer.
- Click the Approval tag pencil icon.
- Replace the text with “needs-review” and verify the row is valid.
- Click the Approval tag Save icon, leaving the other two rows untouched.
notes: AntD editable maxLength is library-grounded here; the checker should read the committed display value, not the transient counter.
- id: inline_editable_text-antd-v2-T04
name: Match the blue reference chip in a three-row dashboard card
canonical_type: inline_editable_text
implementation_source: antd
implementation_variant: typography_editable_visual_match
implementation_component: 'AntD: Card + Typography.Text (editable) + static Tag reference'
task_template: match_reference
secondary_template: null
browsergym_goal: In the “Incident labels” card, set only the inline editable text labeled “Pager label” so it matches the text shown on the blue reference chip, then click Save on that row. Do not edit “Email label” or “Slack label”. The task will finish automatically when done.
ui_copy: In the “Incident labels” card, set only the inline editable text labeled “Pager label” so it matches the text shown on the blue reference chip, then click Save on that row. Do not edit “Email label” or “Slack label”. The task will finish automatically when done.
setup_description: |-
The scene is a compact dashboard_panel placed off-center. KPI counters, a recent-events list, and a compact alert table surround the target card. Inside the card are three inline editable rows — “Pager label”, “Email label”, and “Slack label” — each built with Ant Design Typography.Text editable and small row-local Save/Cancel controls.
To the right of the rows is a non-interactive blue Tag component labeled “Reference”. The only way to know the target string is to read the chip text, which is rendered as `SEV-2 / Router`. The current values are “On-call”, “Incidents”, and “sev2-router”. Only Pager label should change.
scene_context:
theme: light
spacing: compact
layout: dashboard_panel
placement: off_center
scale: default
instances: 3
guidance: visual
clutter: high
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- guidance
- instances
- clutter
factor_rationale: The target content is visually obvious once acquired, but the card still pressures the agent to pick the correct row, preserve siblings, and commit through small inline controls in a cluttered dashboard.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 3
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 5
justification: Exact punctuation and case from the reference chip matter, and three similar rows plus dashboard clutter raise disambiguation and verification demands.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Pager label' is the one that must be checked.
- The committed value equals 'SEV-2 / Router' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: SEV-2 / Router
non_target_instances_must_remain:
Email label: Incidents
Slack label: sev2-router
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Pager label
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Email label or Slack label instead of Pager label.
- Using a close variant such as “SEV-2/Router” or “sev-2 / router”.
- Copying the chip text correctly but not saving the Pager label row.
- Saving the correct Pager label while altering a sibling row.
expected_interaction_path:
- Read the text shown on the blue Reference chip.
- Enter edit mode for Pager label.
- Type the chip text exactly.
- Click the Pager label Save icon and verify only that row changed.
notes: This is intentionally a visual-reference task, but success is still defined by the committed inline value, not by the reference element itself.
- id: inline_editable_text-antd-v2-T05
name: Nested-scroll footer stamp offscreen in branding panel
canonical_type: inline_editable_text
implementation_source: antd
implementation_variant: typography_editable_nested_scroll
implementation_component: 'AntD: Typography.Text (editable) inside nested scroll settings panel'
task_template: scroll_find
secondary_template: null
browsergym_goal: In the “Branding” settings panel, scroll within the panel until the inline editable text labeled “Footer stamp” is visible, change it to “Managed by Platform”, and click Save on that row. The task will finish automatically when done.
ui_copy: In the “Branding” settings panel, scroll within the panel until the inline editable text labeled “Footer stamp” is visible, change it to “Managed by Platform”, and click Save on that row. The task will finish automatically when done.
setup_description: |-
The layout is nested_scroll with compact spacing and high clutter. The page has a general settings shell with its own outer scroll, while the right-side Branding panel is a separately scrollable container. Within the Branding panel are many rows — uploads, toggles, select menus, and four inline editable text rows — but only “Footer stamp” is offscreen at load.
The target row starts as “© 2026 Northwind”. Two other inline editable rows above it are “Portal title” and “Navigation label”, and a fourth below is “Help footer”. All four use Ant Design Typography editable with small pencil and Save/Cancel icons.
The task is complete only when the Footer stamp row has the new committed value and the other inline rows remain unchanged.
scene_context:
theme: light
spacing: compact
layout: nested_scroll
placement: off_center
scale: small
instances: 4_plus
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: true
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- internal_scroll_region
- layout
- instances
factor_rationale: The key pressure is distinguishing the panel’s own scrollable region from the page shell, then finding and committing the correct row among multiple inline-edit siblings.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 5
justification: A nested-scroll container plus four same-type rows produces strong grounding and recovery pressure before the actual text edit even begins.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Footer stamp' is the one that must be checked.
- The committed value equals 'Managed by Platform' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: Managed by Platform
non_target_instances_must_remain:
Portal title: Northwind Portal
Navigation label: Home
Help footer: Need help?
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Footer stamp
terminal_condition: task ends when predicate holds
negative_cases:
- Scrolling the page shell instead of the Branding panel and never revealing Footer stamp.
- Editing Portal title, Navigation label, or Help footer instead of Footer stamp.
- Typing the correct value but not clicking Save on the Footer stamp row.
- Changing Footer stamp correctly while also altering another inline row.
expected_interaction_path:
- Scroll inside the Branding panel until Footer stamp is visible.
- Click Footer stamp’s pencil icon.
- Replace the value with “Managed by Platform”.
- Click the row-local Save icon and verify the row leaves edit mode.
notes: The checker should bind to the committed row value, not to scroll position. This task is intended to preserve the nested-scroll failure mode seen in the prior evidence while moving it into a denser scene.
- id: inline_editable_text-antd-v2-T06
name: Region label with inline save followed by Popconfirm
canonical_type: inline_editable_text
implementation_source: antd
implementation_variant: typography_editable_popconfirm_commit
implementation_component: 'AntD: Typography.Text (editable) + Popconfirm'
task_template: confirm_cancel
secondary_template: null
browsergym_goal: Change the inline editable text labeled “Region label” to “APAC / Core”, click Save on that row, and then choose Confirm in the “Apply label change?” popover. Do not edit “Region note”. The task will finish automatically when done.
ui_copy: Change the inline editable text labeled “Region label” to “APAC / Core”, click Save on that row, and then choose Confirm in the “Apply label change?” popover. Do not edit “Region note”. The task will finish automatically when done.
setup_description: |-
The task lives in an inline_surface card placed near the bottom-left of the viewport. The card shows two inline editable rows, “Region label” and “Region note”, and a compact audit trail below them. Both rows use Ant Design Typography editable with tiny Save/Cancel icons after entering edit mode.
Region label starts as “Asia Pacific”; Region note starts as “Ops only”. When the user clicks Save on Region label, an Ant Design Popconfirm appears anchored to that row with the message “Apply label change?” and buttons “Confirm” and “Cancel”. Only clicking Confirm commits the row and clears the “Unsaved” chip beside it.
The row-local save icon is therefore not sufficient; the edit must survive the second confirmation step.
scene_context:
theme: dark
spacing: compact
layout: inline_surface
placement: bottom_left
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: nested_overlay
internal_scroll_region: false
confirmation_model: explicit_confirm
precision_surface: discrete
secondary_supporting_primitive: popover
design_intent:
active_factors:
- overlay_model
- confirmation_model
- scale
factor_rationale: 'The task deliberately keeps the text semantics easy so the signal stays on the two-step commit path: tiny inline save first, then a nested confirmation popover.'
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 4
feedback_dynamics: 4
semantic_observability: 3
disambiguation_load: 4
justification: Nested confirmation makes this hard even though the target string is short, because the correct edit can still be lost after the first save if the popover is mishandled.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Region label' is the one that must be checked.
- The committed value equals 'APAC / Core' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Confirm'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: APAC / Core
mode: display
saved: true
non_target_instances_must_remain:
Region note: Ops only
tolerance: null
require_confirm: true
confirm_control: Confirm
require_correct_instance: true
target_instance_label_or_id: Region label
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Region note instead of Region label.
- Clicking the Region label Save icon but Canceling or dismissing the follow-up popover.
- Entering a close variant such as “APAC/Core” or “APAC - Core”.
- Confirming the popover after also changing Region note.
expected_interaction_path:
- Enter edit mode for Region label.
- Replace the value with “APAC / Core”.
- Click the row-local Save icon.
- In the Popconfirm, click Confirm and verify Region note stays unchanged.
notes: Model the second popover as the required confirmation boundary. Success should depend on the final committed display value after Confirm, not after the first Save icon.
- id: inline_editable_text-antd-v2-T07
name: Autosize support note localized two-line edit
canonical_type: inline_editable_text
implementation_source: antd
implementation_variant: typography_paragraph_editable_autosize
implementation_component: 'AntD: Typography.Paragraph (editable, autoSize)'
task_template: enter_text
secondary_template: null
browsergym_goal: 'In the “Support note” card, edit only the inline editable paragraph labeled “Escalation note” so that the second line becomes “Escalate: Sev2 queue” while the first line stays “Owner: support”. Then click Save for that paragraph. Do not edit the “Customer note” paragraph. The task will finish automatically when done.'
ui_copy: 'In the “Support note” card, edit only the inline editable paragraph labeled “Escalation note” so that the second line becomes “Escalate: Sev2 queue” while the first line stays “Owner: support”. Then click Save for that paragraph. Do not edit the “Customer note” paragraph. The task will finish automatically when done.'
setup_description: |-
The scene uses dashboard_panel with compact spacing and medium clutter. A card titled “Support note” sits beside ticket counters and a recent-incidents list. Inside the card are two Ant Design Typography.Paragraph editable blocks: “Customer note” and “Escalation note”.
Escalation note starts as two lines:
Owner: support
Escalate: none
It uses `editable={{ autoSize: { minRows: 2, maxRows: 4 } }}`, so edit mode opens a compact autosizing textarea with small Save/Cancel icons. Customer note is another editable paragraph and must remain unchanged.
The task is about a localized multiline replacement inside an inline-edit idiom, not about rewriting the whole paragraph.
scene_context:
theme: light
spacing: compact
layout: dashboard_panel
placement: off_center
scale: default
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- instances
- precision_surface
- confirmation_model
factor_rationale: A multiline autosizing paragraph increases state-swap complexity without leaving the inline-edit family, and the sibling paragraph preserves wrong-instance pressure.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 3
density_choice_interference: 1
depth_layering: 2
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 4
justification: The task is hard because a local two-line change must be made exactly inside an autosizing inline editor while a sibling editable paragraph remains untouched.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Escalation note' is the one that must be checked.
- |-
The committed value equals 'Owner: support
Escalate: Sev2 queue' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: |-
Owner: support
Escalate: Sev2 queue
non_target_instances_must_remain:
Customer note: Thank the customer before closing.
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Escalation note
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Customer note instead of Escalation note.
- 'Rewriting or deleting the first line “Owner: support”.'
- 'Adding the new second line but leaving the old “Escalate: none” line in place.'
- Typing the correct two-line value but not clicking Save.
expected_interaction_path:
- Locate the Escalation note paragraph.
- Enter edit mode for that paragraph.
- 'Change only the second line to “Escalate: Sev2 queue”.'
- Click Save and verify Customer note is unchanged.
notes: The checker should compare normalized two-line committed text for the target paragraph and ensure the sibling paragraph stays at its initial content.
- id: inline_editable_text-antd-v2-T08
name: High-contrast reviewer alias with ambiguous sibling rows
canonical_type: inline_editable_text
implementation_source: antd
implementation_variant: typography_editable_ambiguous_commit_verification
implementation_component: 'AntD: Typography.Text (editable) in compact profile card'
task_template: enter_formatted
secondary_template: null
browsergym_goal: In the “Reviewer aliases” card, change only the inline editable text labeled “Secondary reviewer” to “J. Carter / APAC”, then click Save on that row. Leave “Primary reviewer” and “Backup reviewer” unchanged. The task will finish automatically when done.
ui_copy: In the “Reviewer aliases” card, change only the inline editable text labeled “Secondary reviewer” to “J. Carter / APAC”, then click Save on that row. Leave “Primary reviewer” and “Backup reviewer” unchanged. The task will finish automatically when done.
setup_description: |-
The scene is a high_contrast compact profile card placed off-center, surrounded by approval badges, timestamps, and a small comments list. Inside the card are three inline editable rows of the same type: “Primary reviewer”, “Secondary reviewer”, and “Backup reviewer”.
All three are Ant Design Typography.Text editable rows with icon-only triggers and tiny Save/Cancel icons after activation. Their initial values are “J. Carter”, “J. Carter / US”, and “L. Singh”. The target value differs from the current Secondary reviewer value by only the trailing region code.
Because two rows start with the same person name, simply finding “J. Carter” is not enough; the correct row must be committed and visibly return to read-only mode.
scene_context:
theme: high_contrast
spacing: compact
layout: inline_surface
placement: off_center
scale: small
instances: 3
guidance: mixed
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- instances
- placement
- scale
factor_rationale: The task intentionally uses near-duplicate sibling values so the agent must track both the row label and the post-save state change instead of matching on a person name alone.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 5
justification: Near-duplicate visible values plus icon-sized controls make this a strong ambiguous-row commit-verification task even though the final string is short.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Secondary reviewer' is the one that must be checked.
- The committed value equals 'J. Carter / APAC' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: J. Carter / APAC
non_target_instances_must_remain:
Primary reviewer: J. Carter
Backup reviewer: L. Singh
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Secondary reviewer
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Primary reviewer because it also contains “J. Carter”.
- Saving a close variant such as “J Carter / APAC” or “J. Carter/APAC”.
- Typing the correct value but leaving Secondary reviewer in edit mode.
- Changing Secondary reviewer correctly while also touching either sibling row.
expected_interaction_path:
- Identify the Secondary reviewer row, not just the matching person name.
- Enter edit mode for that row.
- Replace the region suffix so the row reads “J. Carter / APAC”.
- Click Save and verify only Secondary reviewer changed.
notes: This task is meant to sharpen the ambiguous-row commit-verification pattern recommended by the v1 inline-edit evidence.
- id: inline_editable_text-mui-v2-T01
name: Fallback alias in right drawer with end-adornment save
canonical_type: inline_editable_text
implementation_source: mui
implementation_variant: composite_textfield_end_adornment
implementation_component: 'MUI: Typography + TextField + InputAdornment IconButtons inline-edit composite inside Drawer'
task_template: enter_text
secondary_template: open_overlay
browsergym_goal: Open the “Aliases” drawer. Change only the inline editable text labeled “Fallback alias” to “Router East”. Leave “Primary alias” and “Billing alias” unchanged, then click the Save check icon in the Fallback alias row. The task will finish automatically when done.
ui_copy: Open the “Aliases” drawer. Change only the inline editable text labeled “Fallback alias” to “Router East”. Leave “Primary alias” and “Billing alias” unchanged, then click the Save check icon in the Fallback alias row. The task will finish automatically when done.
setup_description: |-
The page uses a compact drawer_flow layout with the drawer opening from the right side. The background dashboard remains visible with alert chips, a small activity list, and a read-only profile card.
Inside the drawer is an “Aliases” section with three same-type inline editable rows: “Primary alias”, “Fallback alias”, and “Billing alias”. In read-only mode each row shows Typography text and a small pencil IconButton. When a row enters edit mode, the value swaps into an MUI TextField whose end adornment contains two tiny IconButtons: a checkmark labeled Save and an X labeled Cancel.
Initial values are “Router Core”, “Router Backup”, and “Billing North”. Only the Fallback alias row should change, and there is no global submit button.
scene_context:
theme: light
spacing: compact
layout: drawer_flow
placement: off_center
scale: small
instances: 3
guidance: text
clutter: medium
component_context:
overlay_model: single_overlay
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: drawer
design_intent:
active_factors:
- instances
- scale
- layout
factor_rationale: The drawer adds a layer boundary, the row actions are packed into small end-adornment icons, and three sibling inline editors create strong wrong-row pressure.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 5
justification: This is hard because the target row sits inside a right-side drawer with tiny end-adornment controls, and the other two rows look almost identical.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Fallback alias' is the one that must be checked.
- The committed value equals 'Router East' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: Router East
non_target_instances_must_remain:
Primary alias: Router Core
Billing alias: Billing North
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Fallback alias
terminal_condition: task ends when predicate holds
negative_cases:
- Editing “Primary alias” or “Billing alias” instead of “Fallback alias”.
- Typing “Router East” correctly but leaving the row in edit mode without clicking the row-local Save check icon.
- Saving a close variant such as “router east” or “Router-East”.
- Changing the Fallback alias correctly but also modifying any non-target row.
expected_interaction_path:
- Open the Aliases drawer.
- Find the Fallback alias row and enter edit mode there.
- Replace the value with “Router East”.
- Click the Save check icon inside that row and verify the row returns to read-only mode.
notes: Ground this in MUI TextField end adornments; the correct row label and committed display value should be exposed for checking.
- id: inline_editable_text-mui-v2-T02
name: API audience code with Enter-only commit in compact table
canonical_type: inline_editable_text
implementation_source: mui
implementation_variant: composite_enter_commit
implementation_component: 'MUI: Table cell + Typography/TextField inline-edit composite with Enter commit'
task_template: table_operation
secondary_template: null
browsergym_goal: In the “API audiences” table, change the inline editable text in the “Audience code” cell for the “Public API” row to “PUB-42”. Save that cell by pressing Enter. Do not edit the “Internal API” row. The task will finish automatically when done.
ui_copy: In the “API audiences” table, change the inline editable text in the “Audience code” cell for the “Public API” row to “PUB-42”. Save that cell by pressing Enter. Do not edit the “Internal API” row. The task will finish automatically when done.
setup_description: |-
The UI is a compact table_cell layout anchored near the top-right of the viewport. A dense MUI Table shows two rows, “Public API” and “Internal API”, with columns “Audience”, “Audience code”, and “State”.
Only the Audience code cells are inline editable. In read-only mode they render Typography text with a small edit IconButton. Entering edit mode swaps the cell into a narrow TextField. A helper line below the table states “Press Enter to save a code; Esc cancels”.
Initial values are “PUB-01” for Public API and “INT-90” for Internal API. Saving occurs only when Enter is pressed while the edited cell is focused.
scene_context:
theme: light
spacing: compact
layout: table_cell
placement: top_right
scale: small
instances: 2
guidance: mixed
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: table
design_intent:
active_factors:
- layout
- instances
- guidance
factor_rationale: The dense table layout makes the cell small, the helper text changes the commit idiom from click-save to Enter-save, and the sibling row must stay untouched.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 4
semantic_observability: 3
disambiguation_load: 5
justification: The target string is simple, but the hard part is selecting the correct compact table cell and using the Enter-only commit path instead of drifting to the wrong row.
success_trigger:
human_readable:
- The inline editable text instance labeled 'API audiences/Public API/Audience code' is the one that must be checked.
- The committed value equals 'PUB-42' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Enter'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: PUB-42
saved: true
non_target_instances_must_remain:
API audiences/Internal API/Audience code: INT-90
mode: display
tolerance: null
require_confirm: true
confirm_control: Enter
require_correct_instance: true
target_instance_label_or_id: API audiences/Public API/Audience code
terminal_condition: task ends when predicate holds
negative_cases:
- Editing the Audience code for “Internal API” instead of “Public API”.
- Typing “PUB-42” but clicking away so the edit is not committed via Enter.
- Saving a close variant such as “Pub-42” or “PUB42”.
- Changing any non-target table cell.
expected_interaction_path:
- Locate the Public API row and Audience code cell.
- Enter edit mode for that cell.
- Replace the value with “PUB-42”.
- Press Enter to commit and verify the cell exits edit mode.
notes: Implementation should expose row/column identity and commit-on-Enter state for the checker.
- id: inline_editable_text-mui-v2-T03
name: Service slug with helper-text validation among three rows
canonical_type: inline_editable_text
implementation_source: mui
implementation_variant: composite_textfield_helper_error
implementation_component: 'MUI: Typography + TextField inline-edit composite with helperText/error'
task_template: enter_formatted
secondary_template: null
browsergym_goal: In the “Routing labels” settings panel, change only the inline editable text labeled “Service slug” to “svc-payments-02”. Leave “Region tag” and “Escalation tag” unchanged, then click Save for the Service slug row. The task will finish automatically when done.
ui_copy: In the “Routing labels” settings panel, change only the inline editable text labeled “Service slug” to “svc-payments-02”. Leave “Region tag” and “Escalation tag” unchanged, then click Save for the Service slug row. The task will finish automatically when done.
setup_description: |-
The page uses a dark settings_panel near the bottom-right of the viewport with compact spacing and medium clutter from nearby toggles, selects, and status badges.
The “Routing labels” section contains three inline editable rows: “Region tag”, “Service slug”, and “Escalation tag”. Each row renders Typography text with a pencil IconButton. In edit mode the row swaps into an MUI TextField with helper text “lowercase letters, digits, and hyphens only” and Save/Cancel IconButtons.
Initial values are “apac”, “svc-payments-01”, and “sev2”. If uppercase letters, spaces, or underscores are entered, the TextField shows error state and the Save icon is disabled until valid. Only Service slug should change.
scene_context:
theme: dark
spacing: compact
layout: settings_panel
placement: bottom_right
scale: small
instances: 3
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- instances
- clutter
- theme
factor_rationale: The formatting rule itself is simple, but dark compact UI and three sibling rows make row selection and save-state verification the real pressure.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 4
semantic_observability: 3
disambiguation_load: 5
justification: This is hard because the text must satisfy a strict visible format rule, and the target row is embedded in a busy dark settings panel with two near-identical siblings.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Service slug' is the one that must be checked.
- The committed value equals 'svc-payments-02' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: svc-payments-02
non_target_instances_must_remain:
Region tag: apac
Escalation tag: sev2
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Service slug
terminal_condition: task ends when predicate holds
negative_cases:
- Editing “Region tag” or “Escalation tag” instead of “Service slug”.
- Using an invalid slug such as “svc_payments_02” or “Svc-payments-02”.
- Typing the correct slug but leaving the row in edit mode without saving.
- Changing the target row correctly but also modifying either sibling row.
expected_interaction_path:
- Find the Service slug row within Routing labels.
- Enter edit mode for that row.
- Replace the value with “svc-payments-02”.
- Click the row-local Save control once the helper text no longer indicates an error.
notes: Ground this in TextField helperText and error state so the save affordance can be visibly disabled when invalid.
- id: inline_editable_text-mui-v2-T04
name: Reference chip exact match for banner tag
canonical_type: inline_editable_text
implementation_source: mui
implementation_variant: composite_visual_reference_card
implementation_component: 'MUI: Typography/TextField inline-edit composite with reference chip card'
task_template: match_reference
secondary_template: null
browsergym_goal: In the “Banner tags” dashboard card, set only the inline editable text labeled “Banner tag” to exactly match the bold text shown in the blue reference chip. Leave “Internal tag” unchanged, then click “Apply tags”. The task will finish automatically when done.
ui_copy: In the “Banner tags” dashboard card, set only the inline editable text labeled “Banner tag” to exactly match the bold text shown in the blue reference chip. Leave “Internal tag” unchanged, then click “Apply tags”. The task will finish automatically when done.
setup_description: |-
The page uses a dashboard_panel layout placed off-center near the upper-left. A “Banner tags” card contains two inline editable rows, “Banner tag” and “Internal tag”, each using the same Typography/TextField inline-edit composite with Save/Cancel icon controls.
To the right of the rows is a read-only reference card containing a bold blue chip with the target text `LATENCY / APAC`. The text is not repeated elsewhere. A card-level button labeled “Apply tags” commits both rows together.
Initial values are “PENDING” and “ops-only”. Only Banner tag should change; Internal tag must remain `ops-only`.
scene_context:
theme: light
spacing: compact
layout: dashboard_panel
placement: top_left
scale: default
instances: 2
guidance: visual
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- guidance
- instances
- placement
factor_rationale: The target is visually specified rather than quoted in text, and the off-center dashboard card still requires choosing the correct one of two inline editors before a card-level apply.
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 5
target_acquisition: 3
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 4
justification: The formatting is exact and visually grounded, while the card-level apply step means the agent must preserve the non-target row and verify the right row changed before committing.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Banner tag' is the one that must be checked.
- The committed value equals 'LATENCY / APAC' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Apply tags'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: LATENCY / APAC
non_target_instances_must_remain:
Internal tag: ops-only
mode: display
tolerance: null
require_confirm: true
confirm_control: Apply tags
require_correct_instance: true
target_instance_label_or_id: Banner tag
terminal_condition: task ends when predicate holds
negative_cases:
- Editing “Internal tag” instead of “Banner tag”.
- Saving a close variant like “LATENCY/APAC” or “Latency / APAC”.
- Typing the right text into Banner tag but not clicking “Apply tags”.
- Changing Internal tag in addition to Banner tag.
expected_interaction_path:
- Read the text shown inside the blue reference chip.
- Enter edit mode for Banner tag.
- Replace its value with the exact chip text.
- Click “Apply tags” and verify Internal tag remains unchanged.
notes: The reference chip should be static and legible; success is based on the committed Banner tag text, not on the chip itself.
- id: inline_editable_text-mui-v2-T05
name: Footer disclaimer offscreen inside nested scroll
canonical_type: inline_editable_text
implementation_source: mui
implementation_variant: composite_nested_scroll
implementation_component: 'MUI: Typography + multiline TextField inline-edit composite inside nested scroll panel'
task_template: scroll_find
secondary_template: null
browsergym_goal: In the scrollable “Brand copy” panel, scroll until the inline editable text labeled “Footer disclaimer” is visible. Change it to “Support hours vary by region.” and click Save for that row. Do not edit the other text rows. The task will finish automatically when done.
ui_copy: In the scrollable “Brand copy” panel, scroll until the inline editable text labeled “Footer disclaimer” is visible. Change it to “Support hours vary by region.” and click Save for that row. Do not edit the other text rows. The task will finish automatically when done.
setup_description: |-
The layout is nested_scroll with compact spacing. The page contains an outer scroll area with navigation chips and filters, while the main “Brand copy” panel itself is independently scrollable.
Inside the panel are four inline editable text rows separated by read-only notes: “Hero line”, “Sidebar note”, “Footer disclaimer”, and “Legal footer”. Each row uses the same MUI Typography/TextField inline-edit composite with row-local Save/Cancel IconButtons.
At load, only the first two rows are visible; “Footer disclaimer” sits below the fold inside the panel. Initial values are “Fast setup”, “Internal only”, “Hours may change”, and “© 2026 Company”. Only Footer disclaimer should change.
scene_context:
theme: light
spacing: compact
layout: nested_scroll
placement: off_center
scale: default
instances: 4_plus
guidance: text
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: true
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- internal_scroll_region
- instances
- layout
factor_rationale: The agent must manage two scrollable contexts, find the correct offscreen row among several sibling editors, and then use the row-local save path without touching the others.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 5
justification: This task is hard because the target row is initially offscreen inside the inner panel, and four similar rows make wrong-instance edits plausible after the scroll step.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Footer disclaimer' is the one that must be checked.
- The committed value equals 'Support hours vary by region.' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: Support hours vary by region.
non_target_instances_must_remain:
Hero line: Fast setup
Sidebar note: Internal only
Legal footer: © 2026 Company
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Footer disclaimer
terminal_condition: task ends when predicate holds
negative_cases:
- Scrolling the page but not the panel, leaving Footer disclaimer unchanged.
- Editing Hero line, Sidebar note, or Legal footer instead of Footer disclaimer.
- Typing the correct sentence but not saving the Footer disclaimer row.
- Saving a close variant such as “Support hours vary by region” without the period.
expected_interaction_path:
- Scroll inside the Brand copy panel until Footer disclaimer is visible.
- Enter edit mode for the Footer disclaimer row.
- Replace the text with “Support hours vary by region.”
- Click Save for that row and verify the row returns to read-only mode.
notes: The checker should identify the correct scroll container and the committed value for the labeled row rather than relying on scroll position.
- id: inline_editable_text-mui-v2-T06
name: Two-line escalation note with confirm dialog
canonical_type: inline_editable_text
implementation_source: mui
implementation_variant: composite_multiline_confirm_dialog
implementation_component: 'MUI: Typography + multiline TextField inline-edit composite with confirm dialog'
task_template: editor_operation
secondary_template: confirm_cancel
browsergym_goal: 'In the “Escalation note” card, edit only the inline editable text labeled “Primary note” so that it becomes exactly two lines: `Owner: support` on the first line and `Queue: sev2-eu` on the second line. Leave “Secondary note” unchanged. Then click Save for Primary note and choose Confirm in the dialog. The task will finish automatically when done.'
ui_copy: 'In the “Escalation note” card, edit only the inline editable text labeled “Primary note” so that it becomes exactly two lines: `Owner: support` on the first line and `Queue: sev2-eu` on the second line. Leave “Secondary note” unchanged. Then click Save for Primary note and choose Confirm in the dialog. The task will finish automatically when done.'
setup_description: |-
The UI uses a modal_flow-like inline_surface anchored near the center with medium clutter from status chips and audit text. Two inline editable text rows appear inside the “Escalation note” card: “Primary note” and “Secondary note”.
In read-only mode each row shows Typography text. Editing a row swaps it into an MUI multiline TextField with two small IconButtons for Save and Cancel. Clicking Save opens a small confirmation dialog titled “Apply text change?” with buttons “Cancel” and “Confirm”.
Initial values are `Owner: ops` for Primary note and `Owner: finance` for Secondary note. Only Primary note should change.
scene_context:
theme: light
spacing: compact
layout: inline_surface
placement: center
scale: default
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: nested_overlay
internal_scroll_region: false
confirmation_model: explicit_confirm
precision_surface: discrete
secondary_supporting_primitive: dialog
design_intent:
active_factors:
- overlay_model
- instances
- confirmation_model
factor_rationale: The two-line content is exact but short; the real pressure comes from preserving the sibling row while handling a second explicit confirmation layer after the inline Save.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 3
density_choice_interference: 2
depth_layering: 4
feedback_dynamics: 4
semantic_observability: 3
disambiguation_load: 4
justification: This is hard because the row edit is immediately followed by a confirmation dialog, and the agent must still preserve the sibling row and exact line breaks.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Primary note' is the one that must be checked.
- |-
The committed value equals 'Owner: support
Queue: sev2-eu' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Confirm'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
- Any required overlay state equals False.
canonical_predicate:
predicate_type: equals
target_state:
text: |-
Owner: support
Queue: sev2-eu
saved: true
overlay_open: false
non_target_instances_must_remain:
Secondary note: 'Owner: finance'
mode: display
tolerance: null
require_confirm: true
confirm_control: Confirm
require_correct_instance: true
target_instance_label_or_id: Primary note
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Secondary note instead of Primary note.
- Entering the two lines correctly but dismissing the confirmation dialog with Cancel or close.
- Saving a one-line variant or swapping the line order.
- Changing Primary note correctly but also modifying Secondary note.
expected_interaction_path:
- Enter edit mode for Primary note.
- Replace the value with the exact two-line text.
- Click Save in the row.
- Choose Confirm in the dialog and verify the dialog closes.
notes: The implementation should expose both the committed multiline text and the confirmation-dialog resolution state.
- id: inline_editable_text-mui-v2-T07
name: High-contrast owner label in compact ops strip
canonical_type: inline_editable_text
implementation_source: mui
implementation_variant: composite_dense_inline_surface
implementation_component: 'MUI: Typography/TextField inline-edit composite in high-contrast strip'
task_template: enter_formatted
secondary_template: null
browsergym_goal: In the high-contrast ops strip, change only the inline editable text labeled “Owner label” to “OPS / EMEA-2”. Leave “Queue label” and “Pager label” unchanged, then click the Save check icon for Owner label. The task will finish automatically when done.
ui_copy: In the high-contrast ops strip, change only the inline editable text labeled “Owner label” to “OPS / EMEA-2”. Leave “Queue label” and “Pager label” unchanged, then click the Save check icon for Owner label. The task will finish automatically when done.
setup_description: |-
The page is rendered in high_contrast theme with compact spacing and small controls. A horizontal “Ops strip” inline surface near the bottom-left contains three same-type inline editable rows packed closely together: “Owner label”, “Queue label”, and “Pager label”.
Each row shows Typography text and a tiny pencil IconButton. In edit mode the row becomes a narrow TextField with end-adornment Save and Cancel icons. Initial values are “OPS / US-1”, “Q / sev2”, and “pager-main”.
Nearby are unrelated chips and two icon-only buttons that add visual noise, but only Owner label should change.
scene_context:
theme: high_contrast
spacing: compact
layout: inline_surface
placement: bottom_left
scale: small
instances: 3
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- theme
- scale
- instances
factor_rationale: This uses dense small controls in a high-contrast strip so that acquisition pressure comes from tight packing and row adjacency rather than from semantic ambiguity in the string itself.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 5
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 5
justification: The target string is not conceptually hard, but the strip compresses three inline editors and their tiny controls into a small high-contrast surface near the viewport edge.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Owner label' is the one that must be checked.
- The committed value equals 'OPS / EMEA-2' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: OPS / EMEA-2
non_target_instances_must_remain:
Queue label: Q / sev2
Pager label: pager-main
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Owner label
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Queue label or Pager label instead of Owner label.
- Saving a close variant such as “OPS/EMEA-2” or “Ops / EMEA-2”.
- Typing the correct value but clicking the wrong row’s Save icon.
- Changing any non-target row.
expected_interaction_path:
- Locate the Owner label row within the ops strip.
- Enter edit mode there.
- Replace the value with “OPS / EMEA-2”.
- Click the Save check icon for that same row.
notes: Use stable row labels in the checker; do not rely on horizontal position alone.
- id: inline_editable_text-mui-v2-T08
name: Customer badge exact match inside left drawer
canonical_type: inline_editable_text
implementation_source: mui
implementation_variant: composite_reference_in_drawer
implementation_component: 'MUI: Drawer + Typography/TextField inline-edit composite with reference badge'
task_template: match_reference
secondary_template: open_overlay
browsergym_goal: Open the “Customer badge” drawer. Set only the inline editable text labeled “Display badge” to exactly match the text shown on the reference badge, leave “Internal badge” unchanged, and then click “Apply badge”. The task will finish automatically when done.
ui_copy: Open the “Customer badge” drawer. Set only the inline editable text labeled “Display badge” to exactly match the text shown on the reference badge, leave “Internal badge” unchanged, and then click “Apply badge”. The task will finish automatically when done.
setup_description: |-
The UI uses a left-anchored MUI Drawer opened by a small “Edit badge” button. The drawer contains two inline editable rows, “Display badge” and “Internal badge”, plus a read-only reference badge at the top showing the target text `ON-CALL / APAC`.
Both rows use the same inline-edit composite pattern: Typography text with pencil icon, then TextField with Save/Cancel icon buttons when editing. A drawer-level button labeled “Apply badge” commits the current badge labels.
Initial values are “PENDING” and “staff-only”. Only Display badge should change.
scene_context:
theme: light
spacing: compact
layout: drawer_flow
placement: off_center
scale: default
instances: 2
guidance: visual
clutter: medium
component_context:
overlay_model: single_overlay
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: drawer
design_intent:
active_factors:
- layout
- guidance
- instances
factor_rationale: The target is visually specified inside a drawer, and the card-level apply means the agent must both read the badge and preserve the non-target row before committing.
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 5
target_acquisition: 3
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 4
justification: This is hard because the exact punctuation comes from a visual badge, while the drawer adds layering and the sibling row must stay unchanged through the apply step.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Display badge' is the one that must be checked.
- The committed value equals 'ON-CALL / APAC' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Apply badge'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: ON-CALL / APAC
non_target_instances_must_remain:
Internal badge: staff-only
mode: display
tolerance: null
require_confirm: true
confirm_control: Apply badge
require_correct_instance: true
target_instance_label_or_id: Display badge
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Internal badge instead of Display badge.
- Using a close variant such as “ON CALL / APAC” or “On-call / APAC”.
- Matching the reference in the row but forgetting to click “Apply badge”.
- Changing Internal badge in addition to Display badge.
expected_interaction_path:
- Open the Customer badge drawer.
- Read the text in the reference badge.
- Edit Display badge to match it exactly.
- Click “Apply badge” and verify Internal badge remains unchanged.
notes: The reference badge should be static and readable; success is based on the committed Display badge text.
- id: inline_editable_text-mantine-v2-T01
name: Workspace alias in offset drawer with sibling preserved
canonical_type: inline_editable_text
implementation_source: mantine
implementation_variant: composite_drawer_right_section
implementation_component: 'Mantine: Drawer + Text/TextInput inline-edit composite with rightSection ActionIcons'
task_template: enter_text
secondary_template: open_overlay
browsergym_goal: Open the “Workspace aliases” drawer. Change only the inline editable text labeled “Workspace alias” to “Northwind Labs / EU”. Leave “Billing alias” unchanged, then click the Save check icon in the Workspace alias row. The task will finish automatically when done.
ui_copy: Open the “Workspace aliases” drawer. Change only the inline editable text labeled “Workspace alias” to “Northwind Labs / EU”. Leave “Billing alias” unchanged, then click the Save check icon in the Workspace alias row. The task will finish automatically when done.
setup_description: |-
The page uses a drawer_flow layout with a Mantine Drawer opening from the right with a small viewport offset. Background content includes summary badges and a read-only workspace card.
Inside the drawer are two inline editable rows, “Workspace alias” and “Billing alias”. In read-only mode each row shows Mantine Text with a pencil ActionIcon in the right section. When a row is edited, it swaps to a TextInput with Save and Cancel ActionIcons rendered in the right section.
Initial values are “Northwind Lab” and “Northwind Billing”. Only Workspace alias should change, and there is no global submit button.
scene_context:
theme: light
spacing: compact
layout: drawer_flow
placement: off_center
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: single_overlay
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: drawer
design_intent:
active_factors:
- layout
- instances
- placement
factor_rationale: The drawer offset and right-section icon controls create acquisition pressure, while the sibling row makes wrong-instance editing visibly plausible.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 4
justification: This is hard because the row-level controls are compact and the target sits inside an offset drawer beside a near-identical sibling row.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Workspace alias' is the one that must be checked.
- The committed value equals 'Northwind Labs / EU' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: Northwind Labs / EU
non_target_instances_must_remain:
Billing alias: Northwind Billing
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Workspace alias
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Billing alias instead of Workspace alias.
- Saving a close variant such as “Northwind Labs/EU” or “northwind labs / EU”.
- Typing the correct value but leaving the row in edit mode without clicking the row-local Save check icon.
- Changing both rows.
expected_interaction_path:
- Open the Workspace aliases drawer.
- Enter edit mode for Workspace alias.
- Replace its value with “Northwind Labs / EU”.
- Click the Save check icon for that row and verify Billing alias remains unchanged.
notes: This should use Mantine TextInput rightSection ActionIcons so the correct row and committed value are exposed for checking.
- id: inline_editable_text-mantine-v2-T02
name: Support footer offscreen in ScrollArea
canonical_type: inline_editable_text
implementation_source: mantine
implementation_variant: composite_scrollarea_row_edit
implementation_component: 'Mantine: ScrollArea + Text/TextInput inline-edit composite'
task_template: scroll_find
secondary_template: null
browsergym_goal: In the scrollable “Brand settings” list, scroll until the inline editable text labeled “Support footer” is visible. Change it to “Reply time varies by queue.” and click Save for that row. Do not edit any other inline text row. The task will finish automatically when done.
ui_copy: In the scrollable “Brand settings” list, scroll until the inline editable text labeled “Support footer” is visible. Change it to “Reply time varies by queue.” and click Save for that row. Do not edit any other inline text row. The task will finish automatically when done.
setup_description: |-
The layout is nested_scroll with compact spacing and medium clutter. The page contains an outer panel with tabs and filter controls, while the main “Brand settings” region is a Mantine ScrollArea containing four inline editable text rows mixed with switches and select controls.
The inline editable rows are “Hero line”, “Sidebar label”, “Support footer”, and “Legal line”. Each row uses a Mantine Text to TextInput composite with pencil, Save, and Cancel ActionIcons. At load, the Support footer row is below the fold inside the ScrollArea.
Initial values are “Fast setup”, “Internal”, “Hours may change”, and “© 2026”. Only Support footer should change.
scene_context:
theme: light
spacing: compact
layout: nested_scroll
placement: off_center
scale: default
instances: 4_plus
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: true
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- internal_scroll_region
- instances
- clutter
factor_rationale: The task combines a real inner-scroll acquisition burden with multiple same-type rows embedded among other settings controls, so wrong-row and wrong-scroll errors are likely.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 3
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 5
justification: This is hard because the agent must use the ScrollArea rather than the outer page scroll, then edit the correct offscreen row among several same-type rows and surrounding clutter.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Support footer' is the one that must be checked.
- The committed value equals 'Reply time varies by queue.' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: Reply time varies by queue.
non_target_instances_must_remain:
Hero line: Fast setup
Sidebar label: Internal
Legal line: © 2026
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Support footer
terminal_condition: task ends when predicate holds
negative_cases:
- Scrolling the page instead of the ScrollArea and never reaching Support footer.
- Editing Hero line, Sidebar label, or Legal line instead of Support footer.
- Typing the correct sentence but not saving the Support footer row.
- Changing any non-target row.
expected_interaction_path:
- Scroll inside the Brand settings ScrollArea until Support footer is visible.
- Enter edit mode for the Support footer row.
- Replace the text with “Reply time varies by queue.”
- Click Save for that row and verify the other inline text rows remain unchanged.
notes: Use ScrollArea-specific instrumentation for the inner container and committed row values.
- id: inline_editable_text-mantine-v2-T03
name: Service slug validation in dark compact panel
canonical_type: inline_editable_text
implementation_source: mantine
implementation_variant: composite_textinput_error
implementation_component: 'Mantine: Text/TextInput inline-edit composite with error message'
task_template: enter_formatted
secondary_template: null
browsergym_goal: In the dark “Routing labels” panel, change only the inline editable text labeled “Service slug” to “svc-queue-apac”. Leave “Region slug” and “Escalation slug” unchanged, then click Save for the Service slug row. The task will finish automatically when done.
ui_copy: In the dark “Routing labels” panel, change only the inline editable text labeled “Service slug” to “svc-queue-apac”. Leave “Region slug” and “Escalation slug” unchanged, then click Save for the Service slug row. The task will finish automatically when done.
setup_description: |-
The page uses a dark settings_panel in the bottom-right with compact spacing and small controls. Three inline editable rows appear under “Routing labels”: “Region slug”, “Service slug”, and “Escalation slug”.
Each row uses a Mantine Text to TextInput inline-edit composite. The TextInput is rendered at size="xs" and shows an error message “lowercase letters, digits, and hyphens only” whenever the value contains spaces, underscores, or uppercase letters; the Save ActionIcon is disabled while invalid.
Initial values are “apac”, “svc-queue-01”, and “sev2”. Only Service slug should change.
scene_context:
theme: dark
spacing: compact
layout: settings_panel
placement: bottom_right
scale: small
instances: 3
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- theme
- scale
- instances
factor_rationale: The visible validation rule is simple, but compact dark UI and three sibling rows make acquisition and save-state verification harder than the text format alone suggests.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 4
semantic_observability: 3
disambiguation_load: 5
justification: This is hard because the agent must satisfy a visible format constraint while selecting the correct row in a dark compact settings panel and preserving two siblings.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Service slug' is the one that must be checked.
- The committed value equals 'svc-queue-apac' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: svc-queue-apac
non_target_instances_must_remain:
Region slug: apac
Escalation slug: sev2
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Service slug
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Region slug or Escalation slug instead of Service slug.
- Entering an invalid slug such as “svc_queue_apac” or “Svc-queue-apac”.
- Typing the correct slug but not clicking Save for the Service slug row.
- Changing any sibling row.
expected_interaction_path:
- Find the Service slug row inside Routing labels.
- Enter edit mode there.
- Replace the value with “svc-queue-apac”.
- Click Save once the error state clears and verify the other rows remain unchanged.
notes: Use Mantine error prop and size="xs" so the validation and small-control pressure are visible.
- id: inline_editable_text-mantine-v2-T04
name: Reference badge exact match for internal label
canonical_type: inline_editable_text
implementation_source: mantine
implementation_variant: composite_visual_reference
implementation_component: 'Mantine: Text/TextInput inline-edit composite with reference badge card'
task_template: match_reference
secondary_template: null
browsergym_goal: Set only the inline editable text labeled “Internal label” to exactly match the bold text shown in the reference badge. Leave “Public label” unchanged, then click “Apply labels”. The task will finish automatically when done.
ui_copy: Set only the inline editable text labeled “Internal label” to exactly match the bold text shown in the reference badge. Leave “Public label” unchanged, then click “Apply labels”. The task will finish automatically when done.
setup_description: |-
The page uses a dashboard_panel placed off-center near the upper-right. A “Labels” card contains two inline editable rows: “Public label” and “Internal label”, each using the Mantine Text to TextInput inline-edit composite with Save/Cancel ActionIcons.
To the side is a reference card showing the target text inside a bold badge: `BACK OFFICE / APAC`. The instructions do not repeat the target string. A card-level button labeled “Apply labels” commits both row values together.
Initial values are “Customer” and “Ops”. Only Internal label should change.
scene_context:
theme: light
spacing: compact
layout: dashboard_panel
placement: top_right
scale: default
instances: 2
guidance: visual
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- guidance
- instances
- placement
factor_rationale: The target comes from a visual badge rather than quoted text, and the off-center dashboard card forces the agent to ground the correct row before a card-level apply.
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 5
target_acquisition: 3
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 4
justification: The exact punctuation and spacing come from a visual reference, while the sibling row and card-level apply step create additional disambiguation and verification pressure.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Internal label' is the one that must be checked.
- The committed value equals 'BACK OFFICE / APAC' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Apply labels'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: BACK OFFICE / APAC
non_target_instances_must_remain:
Public label: Customer
mode: display
tolerance: null
require_confirm: true
confirm_control: Apply labels
require_correct_instance: true
target_instance_label_or_id: Internal label
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Public label instead of Internal label.
- Saving a close variant such as “BACK OFFICE/APAC” or “Back Office / APAC”.
- Matching the reference text but not clicking “Apply labels”.
- Changing Public label in addition to Internal label.
expected_interaction_path:
- Read the text shown on the reference badge.
- Enter edit mode for Internal label.
- Replace its value with the exact badge text.
- Click “Apply labels” and verify Public label remains unchanged.
notes: The checker should use the committed Internal label value; the reference badge itself is only guidance.
- id: inline_editable_text-mantine-v2-T05
name: Owner tag in compact table strip
canonical_type: inline_editable_text
implementation_source: mantine
implementation_variant: composite_table_row
implementation_component: 'Mantine: Table + Text/TextInput inline-edit composite'
task_template: table_operation
secondary_template: null
browsergym_goal: In the compact “Incident tags” table, change the inline editable text in the “Owner tag” cell for the “Gateway” row to “SRE / EU-1”. Do not edit the “Billing” row. Then click Save in the Gateway row. The task will finish automatically when done.
ui_copy: In the compact “Incident tags” table, change the inline editable text in the “Owner tag” cell for the “Gateway” row to “SRE / EU-1”. Do not edit the “Billing” row. Then click Save in the Gateway row. The task will finish automatically when done.
setup_description: |-
The page uses a table_cell layout in high_contrast theme near the bottom-left. A compact Mantine table shows two rows, “Gateway” and “Billing”, with columns “Service”, “Owner tag”, and “State”.
The Owner tag cells use a Text-to-TextInput inline-edit composite with small ActionIcons for edit, Save, and Cancel. Row-level Save buttons sit at the far right and only commit the row they belong to.
Initial Owner tag values are “ops-main” for Gateway and “finops” for Billing. Only the Gateway row should change.
scene_context:
theme: high_contrast
spacing: compact
layout: table_cell
placement: bottom_left
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: table
design_intent:
active_factors:
- layout
- scale
- instances
factor_rationale: The compact high-contrast table makes the cell and row-level controls small, and the sibling row means the agent must bind the edit and save to the same row.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 5
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 5
justification: This is hard because the controls are tiny and row-scoped in a dense table, so wrong-row edit/save sequences are easy to make.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Incident tags/Gateway/Owner tag' is the one that must be checked.
- The committed value equals 'SRE / EU-1' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: SRE / EU-1
non_target_instances_must_remain:
Incident tags/Billing/Owner tag: finops
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Incident tags/Gateway/Owner tag
terminal_condition: task ends when predicate holds
negative_cases:
- Editing the Billing row instead of Gateway.
- Saving “SRE/EU-1” or another close variant.
- Typing the correct value but clicking Save in the wrong row or not saving at all.
- Changing any non-target cell.
expected_interaction_path:
- Locate the Gateway row and Owner tag cell.
- Enter edit mode for that cell.
- Replace the value with “SRE / EU-1”.
- Click Save in the Gateway row.
notes: Checker should key on row and column identity, not just on a matching value somewhere in the table.
- id: inline_editable_text-mantine-v2-T06
name: Autosize partner note with confirm popover
canonical_type: inline_editable_text
implementation_source: mantine
implementation_variant: composite_textarea_confirm
implementation_component: 'Mantine: Text + Textarea autosize inline-edit composite with Popover confirm'
task_template: editor_operation
secondary_template: confirm_cancel
browsergym_goal: 'In the “Partner notes” card, change only the inline editable text labeled “External note” so that it becomes exactly two lines: `Owner: success` on the first line and `Route: queue-eu` on the second line. Leave “Internal note” unchanged. Then click Save for External note and choose Confirm in the popover. The task will finish automatically when done.'
ui_copy: 'In the “Partner notes” card, change only the inline editable text labeled “External note” so that it becomes exactly two lines: `Owner: success` on the first line and `Route: queue-eu` on the second line. Leave “Internal note” unchanged. Then click Save for External note and choose Confirm in the popover. The task will finish automatically when done.'
setup_description: |-
The page uses an inline_surface layout centered on the viewport with medium clutter from badges and small filters. Two inline editable rows appear: “External note” and “Internal note”.
In read-only mode each row shows Mantine Text. Entering edit mode swaps the row into a Textarea autosize field with Save and Cancel ActionIcons. Clicking Save opens a small Popover anchored to the row with message “Apply note change?” and two controls, Confirm and Cancel.
Initial values are `Owner: success` for External note and `Owner: ops` for Internal note. Only External note should change.
scene_context:
theme: light
spacing: compact
layout: inline_surface
placement: center
scale: default
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: nested_overlay
internal_scroll_region: false
confirmation_model: explicit_confirm
precision_surface: discrete
secondary_supporting_primitive: popover
design_intent:
active_factors:
- overlay_model
- instances
- confirmation_model
factor_rationale: The task couples exact two-line formatting with a second anchored confirmation layer, so the agent must preserve the sibling row and still complete the popover sequence.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 3
density_choice_interference: 2
depth_layering: 4
feedback_dynamics: 4
semantic_observability: 3
disambiguation_load: 4
justification: This is hard because the exact multiline content is followed by a popover confirmation, and the nearby sibling row makes wrong-row edits possible.
success_trigger:
human_readable:
- The inline editable text instance labeled 'External note' is the one that must be checked.
- |-
The committed value equals 'Owner: success
Route: queue-eu' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Confirm'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
- Any required overlay state equals False.
canonical_predicate:
predicate_type: equals
target_state:
text: |-
Owner: success
Route: queue-eu
saved: true
overlay_open: false
non_target_instances_must_remain:
Internal note: 'Owner: ops'
mode: display
tolerance: null
require_confirm: true
confirm_control: Confirm
require_correct_instance: true
target_instance_label_or_id: External note
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Internal note instead of External note.
- Saving only one line or swapping the line order.
- Clicking Save but dismissing the confirmation popover with Cancel or close.
- Changing both notes.
expected_interaction_path:
- Enter edit mode for External note.
- Replace the value with the exact two-line text.
- Click Save in that row.
- Choose Confirm in the popover.
notes: Implementation should expose both the committed multiline text and the popover confirmation result.
- id: inline_editable_text-mantine-v2-T07
name: Release badge exact casing in dark strip
canonical_type: inline_editable_text
implementation_source: mantine
implementation_variant: composite_dark_strip
implementation_component: 'Mantine: Text/TextInput inline-edit composite in dark compact strip'
task_template: enter_formatted
secondary_template: null
browsergym_goal: In the dark release strip, change only the inline editable text labeled “Release badge” to “SEV-2 / Router”. Leave “Audience badge” and “Pager badge” unchanged, then click Save for the Release badge row. The task will finish automatically when done.
ui_copy: In the dark release strip, change only the inline editable text labeled “Release badge” to “SEV-2 / Router”. Leave “Audience badge” and “Pager badge” unchanged, then click Save for the Release badge row. The task will finish automatically when done.
setup_description: |-
The page uses a dark inline_surface near the top-left with compact spacing and small controls. Three inline editable text rows are packed into a narrow strip: “Release badge”, “Audience badge”, and “Pager badge”.
Each row uses the Mantine Text/TextInput inline-edit composite with right-section ActionIcons for edit, Save, and Cancel. Initial values are “pending”, “public”, and “on-call”.
Nearby icon buttons and chips add visual clutter, but only Release badge should change.
scene_context:
theme: dark
spacing: compact
layout: inline_surface
placement: top_left
scale: small
instances: 3
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- theme
- scale
- instances
factor_rationale: The compact dark strip makes the controls tiny and adjacent, so the agent has to bind the correct row label to the correct pencil/save pair and preserve the other two rows.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 5
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 5
justification: The main pressure is grounded interaction in a dense dark strip rather than understanding the target string itself.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Release badge' is the one that must be checked.
- The committed value equals 'SEV-2 / Router' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Save'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: SEV-2 / Router
non_target_instances_must_remain:
Audience badge: public
Pager badge: on-call
mode: display
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Release badge
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Audience badge or Pager badge instead of Release badge.
- Saving “SEV2 / Router” or “sev-2 / Router” instead of the exact target.
- Typing the correct value but clicking the wrong Save icon.
- Changing any non-target row.
expected_interaction_path:
- Locate the Release badge row within the strip.
- Enter edit mode for that row.
- Replace its value with “SEV-2 / Router”.
- Click the Save check icon for the same row.
notes: The checker should rely on row labels and committed values, not on horizontal position alone.
- id: inline_editable_text-mantine-v2-T08
name: Display badge from reference chip inside left drawer
canonical_type: inline_editable_text
implementation_source: mantine
implementation_variant: composite_drawer_reference_chip
implementation_component: 'Mantine: Drawer + Text/TextInput inline-edit composite with reference chip'
task_template: match_reference
secondary_template: open_overlay
browsergym_goal: Open the “Badge labels” drawer. Set only the inline editable text labeled “Display badge” to exactly match the text shown in the blue reference chip. Leave “Internal badge” unchanged, then click “Apply badge labels”. The task will finish automatically when done.
ui_copy: Open the “Badge labels” drawer. Set only the inline editable text labeled “Display badge” to exactly match the text shown in the blue reference chip. Leave “Internal badge” unchanged, then click “Apply badge labels”. The task will finish automatically when done.
setup_description: |-
The page uses a left-anchored Mantine Drawer with a small offset from the viewport edge. A button labeled “Edit badges” opens the drawer.
Inside the drawer are two inline editable rows, “Display badge” and “Internal badge”, each using the Text/TextInput inline-edit composite with row-local Save/Cancel icons. A blue reference chip above the rows shows the target text `ON-CALL / APAC`.
Initial row values are “PENDING” and “ops-only”. A drawer-level button labeled “Apply badge labels” commits both rows together. Only Display badge should change.
scene_context:
theme: light
spacing: compact
layout: drawer_flow
placement: off_center
scale: default
instances: 2
guidance: visual
clutter: medium
component_context:
overlay_model: single_overlay
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: drawer
design_intent:
active_factors:
- guidance
- layout
- instances
factor_rationale: The target is only given visually on the chip, while the drawer and sibling row add enough layering and disambiguation to keep the task hard.
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 5
target_acquisition: 3
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 4
justification: This is hard because the exact string must be recovered from the reference chip and then committed inside a drawer without changing the sibling badge row.
success_trigger:
human_readable:
- The inline editable text instance labeled 'Display badge' is the one that must be checked.
- The committed value equals 'ON-CALL / APAC' exactly.
- The component ends in display mode.
- The value is committed via the required control 'Apply badge labels'.
- All non-target inline-editable text instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: ON-CALL / APAC
non_target_instances_must_remain:
Internal badge: ops-only
mode: display
tolerance: null
require_confirm: true
confirm_control: Apply badge labels
require_correct_instance: true
target_instance_label_or_id: Display badge
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Internal badge instead of Display badge.
- Using a close variant such as “ON CALL / APAC” or “On-call / APAC”.
- Typing the correct text but not clicking “Apply badge labels”.
- Changing both badge rows.
expected_interaction_path:
- Open the Badge labels drawer.
- Read the text from the blue reference chip.
- Enter edit mode for Display badge and replace its value with the exact chip text.
- Click “Apply badge labels”.
notes: The implementation should keep the reference chip static and expose committed row values for checking.
- id: masked_input-antd-v2-T01
name: Backup phone among three rows with row-local apply
canonical_type: masked_input
implementation_source: antd
implementation_variant: composite_masked_input_row_apply
implementation_component: 'AntD: Input (masked phone via react-imask) with row-local Apply inside settings panel'
task_template: enter_formatted
secondary_template: null
browsergym_goal: In the “Contact routing” panel, set only the masked input labeled “Backup phone” to (646) 555-0110. Do not change “Primary phone” or “Escalation phone”. Then click Apply for the Backup phone row. The task will finish automatically when done.
ui_copy: In the “Contact routing” panel, set only the masked input labeled “Backup phone” to (646) 555-0110. Do not change “Primary phone” or “Escalation phone”. Then click Apply for the Backup phone row. The task will finish automatically when done.
setup_description: |-
The page uses a compact settings_panel anchored near the bottom-right with high clutter from toggles, selects, and warning chips. Three visually similar masked US phone inputs appear under “Contact routing”: “Primary phone”, “Backup phone”, and “Escalation phone”.
Each row uses an Ant Design Input with phone mask `(###) ###-####` and a row-local Apply button. Primary phone starts as `(212) 555-0147`, Backup phone starts empty, and Escalation phone starts as `(917) 555-0199`.
Typing in a row updates only that row’s draft value; the displayed row status remains “Not applied” until the corresponding Apply button is clicked. Only Backup phone should change.
scene_context:
theme: light
spacing: compact
layout: settings_panel
placement: bottom_right
scale: small
instances: 3
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- instances
- clutter
- placement
factor_rationale: The task turns a normally easy phone mask into a grounded row-selection problem by pairing three similar fields with row-local apply semantics in a dense off-center panel.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 3
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 5
justification: The phone syntax is easy; the hard part is focusing the right row, preserving the two siblings, and using the matching row-local Apply control.
success_trigger:
human_readable:
- The masked input instance labeled 'Backup phone' is the one that must be checked.
- The final formatted value equals '(646) 555-0110' exactly.
- The value is committed via the required control 'Apply'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: (646) 555-0110
saved: true
non_target_instances_must_remain:
Primary phone: (212) 555-0147
Escalation phone: (917) 555-0199
tolerance: null
require_confirm: true
confirm_control: Apply
require_correct_instance: true
target_instance_label_or_id: Backup phone
terminal_condition: task ends when predicate holds
negative_cases:
- Entering the target number into Primary phone or Escalation phone instead of Backup phone.
- Typing the correct number into Backup phone but clicking the wrong row’s Apply button.
- Leaving Backup phone incomplete with placeholders still visible.
- Changing any non-target phone row.
expected_interaction_path:
- Locate the Backup phone row.
- Focus its masked input and enter 6465550110.
- Verify the displayed formatted value is (646) 555-0110.
- Click Apply for the Backup phone row.
notes: Expose per-row committed/applied state so the checker can distinguish a draft value from an applied value.
- id: masked_input-antd-v2-T02
name: EIN inside right drawer with in-field Apply
canonical_type: masked_input
implementation_source: antd
implementation_variant: composite_drawer_inline_apply
implementation_component: 'AntD: Drawer + Input (masked EIN) with in-field Apply/Cancel icons'
task_template: confirm_cancel
secondary_template: open_overlay
browsergym_goal: Open the “Tax details” drawer. In the masked input labeled “Backup EIN”, enter 58-3947201 and click the Apply checkmark inside that field. Do not change “Primary EIN”. The task will finish automatically when done.
ui_copy: Open the “Tax details” drawer. In the masked input labeled “Backup EIN”, enter 58-3947201 and click the Apply checkmark inside that field. Do not change “Primary EIN”. The task will finish automatically when done.
setup_description: |-
The UI uses a drawer_flow layout with a right-side Ant Design Drawer. Inside the drawer are two masked EIN inputs under “Tax details”: “Primary EIN” and “Backup EIN”.
Both inputs use the pattern `##-#######` and show tiny in-field checkmark and X icons for Apply and Cancel. Primary EIN starts as `12-3456789`; Backup EIN starts empty. A small helper note below the field says “Applied value will show status: Saved”.
Clicking the checkmark on a field commits only that field; drafts are not committed otherwise. Only Backup EIN should change.
scene_context:
theme: dark
spacing: compact
layout: drawer_flow
placement: off_center
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: single_overlay
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: drawer
design_intent:
active_factors:
- layout
- instances
- scale
factor_rationale: The drawer adds a layer boundary, the in-field Apply checkmark is tiny, and the sibling field creates wrong-instance risk even though the final mask is simple.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 4
justification: This is hard because the agent must not just type a valid EIN, but type it into the right field in a drawer and activate the correct tiny in-field Apply control.
success_trigger:
human_readable:
- The masked input instance labeled 'Backup EIN' is the one that must be checked.
- The final formatted value equals '58-3947201' exactly.
- The value is committed via the required control 'Apply'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: 58-3947201
saved: true
non_target_instances_must_remain:
Primary EIN: 12-3456789
tolerance: null
require_confirm: true
confirm_control: Apply
require_correct_instance: true
target_instance_label_or_id: Backup EIN
terminal_condition: task ends when predicate holds
negative_cases:
- Changing Primary EIN instead of Backup EIN.
- Typing the correct EIN into Backup EIN but not clicking the in-field Apply icon.
- Clicking Cancel after typing, which leaves Backup EIN uncommitted.
- Saving a malformed value such as 583947201 or 58-394720.
expected_interaction_path:
- Open the Tax details drawer.
- Focus Backup EIN and enter 583947201.
- Verify the formatted value is 58-3947201.
- Click the checkmark inside Backup EIN.
notes: Expose per-field applied state and ensure the drawer remains the active interaction layer until the field is committed.
- id: masked_input-antd-v2-T03
name: Server IPv4 offscreen inside nested network panel
canonical_type: masked_input
implementation_source: antd
implementation_variant: composite_nested_scroll_ipv4
implementation_component: 'AntD: Input (masked fixed-width IPv4) inside nested scroll network panel'
task_template: scroll_find
secondary_template: null
browsergym_goal: In the nested “Network addresses” panel, scroll until the masked input labeled “Backup IPv4” is visible. Set it to 192.168.001.010 and click “Save network”. Leave “Primary IPv4” unchanged. The task will finish automatically when done.
ui_copy: In the nested “Network addresses” panel, scroll until the masked input labeled “Backup IPv4” is visible. Set it to 192.168.001.010 and click “Save network”. Leave “Primary IPv4” unchanged. The task will finish automatically when done.
setup_description: |-
The layout is nested_scroll with compact spacing and medium clutter. The page has an outer scroll region with tabs and charts, while the main “Network addresses” card is itself a scrollable panel.
Inside the inner panel are two masked fixed-width IPv4 inputs labeled “Primary IPv4” and “Backup IPv4”, plus several unrelated toggles and helper blocks. Primary IPv4 starts as `010.000.010.200`. Backup IPv4 is initially below the fold and starts empty.
The IPv4 mask enforces `___.___.___.___` with three digits per octet. A card-level button labeled “Save network” commits the card state. Only Backup IPv4 should change.
scene_context:
theme: light
spacing: compact
layout: nested_scroll
placement: off_center
scale: default
instances: 2
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: true
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- internal_scroll_region
- clutter
- instances
factor_rationale: The field is offscreen inside the inner panel rather than the outer page, and the fixed-width mask plus sibling preservation create a combined scroll, focus, and verification burden.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 4
justification: This is hard because the agent must use the correct scroll container, then target the correct masked field and preserve the primary address before applying the card save.
success_trigger:
human_readable:
- The masked input instance labeled 'Backup IPv4' is the one that must be checked.
- The final formatted value equals '192.168.001.010' exactly.
- The value is committed via the required control 'Save network'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: 192.168.001.010
saved: true
non_target_instances_must_remain:
Primary IPv4: 010.000.010.200
tolerance: null
require_confirm: true
confirm_control: Save network
require_correct_instance: true
target_instance_label_or_id: Backup IPv4
terminal_condition: task ends when predicate holds
negative_cases:
- Scrolling the page instead of the inner network panel so Backup IPv4 never changes.
- Editing Primary IPv4 instead of Backup IPv4.
- Typing a non-fixed-width address such as 192.168.1.10 when the mask expects 192.168.001.010.
- Entering the correct value but not clicking “Save network”.
expected_interaction_path:
- Scroll inside the Network addresses panel until Backup IPv4 is visible.
- Focus Backup IPv4 and enter 192168001010.
- Verify the rendered value is 192.168.001.010.
- Click “Save network”.
notes: Instrument the inner scroll region and committed card state; do not rely on outer-page scroll position.
- id: masked_input-antd-v2-T04
name: Gateway serial code in compact asset table
canonical_type: masked_input
implementation_source: antd
implementation_variant: composite_table_serial_save
implementation_component: 'AntD: Table + Input size="small" (masked serial) with row Save'
task_template: table_operation
secondary_template: null
browsergym_goal: In the “Asset registry” table, change the masked input in the “Serial code” cell for the “Gateway” row to SN-1024-8896. Do not edit the “Billing” row. Then click Save in the Gateway row. The task will finish automatically when done.
ui_copy: In the “Asset registry” table, change the masked input in the “Serial code” cell for the “Gateway” row to SN-1024-8896. Do not edit the “Billing” row. Then click Save in the Gateway row. The task will finish automatically when done.
setup_description: |-
The UI is a compact table_cell layout near the bottom-right with medium clutter from filter chips and legend pills. A small Ant Design Table shows two rows, “Gateway” and “Billing”, with columns “Asset”, “Serial code”, and “Status”.
The Serial code cells are editable masked inputs rendered at size="small" with pattern `SN-####-####`. Gateway starts as `SN-1024-8890`; Billing starts as `SN-5550-1001`. Each row has its own Save button at the far right.
Only the Gateway row should change, and the row save is required for commit.
scene_context:
theme: light
spacing: compact
layout: table_cell
placement: bottom_right
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: table
design_intent:
active_factors:
- layout
- scale
- instances
factor_rationale: The compact table makes the masked cell and row Save small, and the sibling row means the edit and the save must be grounded to the same row.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 5
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 5
justification: This is hard because small table controls create acquisition pressure, and the agent must bind the edit to the correct row-local Save to avoid silently updating the wrong asset.
success_trigger:
human_readable:
- The masked input instance labeled 'Asset registry/Gateway/Serial code' is the one that must be checked.
- The final formatted value equals 'SN-1024-8896' exactly.
- The value is committed via the required control 'Save'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: SN-1024-8896
saved: true
non_target_instances_must_remain:
Asset registry/Billing/Serial code: SN-5550-1001
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Asset registry/Gateway/Serial code
terminal_condition: task ends when predicate holds
negative_cases:
- Editing the Billing row instead of Gateway.
- Saving the correct serial in Gateway but clicking Save in the Billing row.
- Breaking the mask pattern by omitting the SN- prefix or dashes.
- Changing any non-target row.
expected_interaction_path:
- Locate the Gateway row and Serial code cell.
- Edit the cell value to SN-1024-8896.
- Verify the Billing row remains unchanged.
- Click Save in the Gateway row.
notes: Expose row identity and committed row-level values for checking.
- id: masked_input-antd-v2-T05
name: Reference badge copied into secondary member ID
canonical_type: masked_input
implementation_source: antd
implementation_variant: composite_reference_badge
implementation_component: 'AntD: Input (masked member ID) with reference badge and card Apply'
task_template: match_reference
secondary_template: null
browsergym_goal: In the “Member badges” card, copy the ID shown on the reference badge into the masked input labeled “Secondary member ID”. Do not change “Primary member ID”. Then click “Apply IDs”. The task will finish automatically when done.
ui_copy: In the “Member badges” card, copy the ID shown on the reference badge into the masked input labeled “Secondary member ID”. Do not change “Primary member ID”. Then click “Apply IDs”. The task will finish automatically when done.
setup_description: |-
The page uses a dashboard_panel located near the upper-left with compact spacing and medium clutter. A card titled “Member badges” contains two masked member-ID inputs, “Primary member ID” and “Secondary member ID”, both using the pattern `AB-####-XZ`.
A bold reference badge at the top of the card shows the target ID `AB-5731-XZ`. Primary member ID starts as `AB-1000-XZ`, and Secondary member ID starts empty. A button labeled “Apply IDs” commits the card values.
Only Secondary member ID should change.
scene_context:
theme: dark
spacing: compact
layout: dashboard_panel
placement: top_left
scale: default
instances: 2
guidance: visual
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- guidance
- instances
- placement
factor_rationale: The target comes from a visual badge rather than the instruction, and the card-level apply forces the agent to preserve the prefilled sibling field while copying the masked value exactly.
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 4
target_acquisition: 3
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 4
justification: This is hard because the correct value must be read visually and entered into the correct one of two same-pattern fields before the card-level Apply step.
success_trigger:
human_readable:
- The masked input instance labeled 'Secondary member ID' is the one that must be checked.
- The final formatted value equals 'AB-5731-XZ' exactly.
- The value is committed via the required control 'Apply IDs'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: AB-5731-XZ
saved: true
non_target_instances_must_remain:
Primary member ID: AB-1000-XZ
tolerance: null
require_confirm: true
confirm_control: Apply IDs
require_correct_instance: true
target_instance_label_or_id: Secondary member ID
terminal_condition: task ends when predicate holds
negative_cases:
- Entering the reference ID into Primary member ID instead of Secondary member ID.
- Typing the right characters with misplaced dashes.
- Copying the reference ID correctly but not clicking “Apply IDs”.
- Changing Primary member ID in addition to Secondary member ID.
expected_interaction_path:
- Read the ID from the reference badge.
- Focus Secondary member ID and enter the masked value.
- Verify Primary member ID remains unchanged.
- Click “Apply IDs”.
notes: The reference badge should be static; success depends on the committed Secondary member ID after apply.
- id: masked_input-antd-v2-T06
name: Raw mode account number inside modal with apply
canonical_type: masked_input
implementation_source: antd
implementation_variant: composite_modal_raw_toggle
implementation_component: 'AntD: Modal + Input (masked account number) with Formatted/Raw toggle and Apply'
task_template: toggle_state
secondary_template: open_overlay
browsergym_goal: Open the “Payout account” dialog. Turn on Raw mode for the masked input labeled “Account number”, enter 000012345678, and click Apply for that field. The task will finish automatically when done.
ui_copy: Open the “Payout account” dialog. Turn on Raw mode for the masked input labeled “Account number”, enter 000012345678, and click Apply for that field. The task will finish automatically when done.
setup_description: |-
The page uses modal_flow with medium clutter on the background. A button labeled “Edit payout account” opens an Ant Design Modal containing one masked account-number input and a two-state toggle labeled “Formatted” and “Raw”.
In Formatted mode, the field groups digits as `0000 1234 5678`. In Raw mode, the same field shows digits only with no spaces while still enforcing a 12-digit numeric mask. The field starts empty in Formatted mode.
A small Apply button under the field commits the modal value; closing the modal without Apply does not commit. The task requires ending in Raw mode with the exact 12-digit raw value visible.
scene_context:
theme: light
spacing: compact
layout: modal_flow
placement: center
scale: default
instances: 1
guidance: text
clutter: medium
component_context:
overlay_model: single_overlay
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: dialog
design_intent:
active_factors:
- overlay_model
- confirmation_model
- precision_surface
factor_rationale: The mask itself is simple, but the task couples a mode state with a modal commit boundary so the agent must not stop after only entering the digits.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 3
density_choice_interference: 1
depth_layering: 3
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 1
justification: This is hard because the correct final state is a combination of raw-mode visibility, exact digits, and an explicit modal Apply action.
success_trigger:
human_readable:
- The masked input instance labeled 'Account number' is the one that must be checked.
- The final formatted value equals '000012345678' exactly.
- The value is committed via the required control 'Apply'.
- '`raw_mode` equals True.'
- Any required overlay state equals False.
canonical_predicate:
predicate_type: equals
target_state:
text: 000012345678
raw_mode: true
saved: true
overlay_open: false
tolerance: null
require_confirm: true
confirm_control: Apply
require_correct_instance: true
target_instance_label_or_id: Account number
terminal_condition: task ends when predicate holds
negative_cases:
- Entering the digits while leaving the field in Formatted mode.
- Switching to Raw mode but failing to click Apply.
- Entering fewer than 12 digits or adding spaces in Raw mode.
- Closing the modal without committing the field.
expected_interaction_path:
- Open the Payout account dialog.
- Switch the field to Raw mode.
- Enter 000012345678.
- Click Apply and verify the modal closes or the committed state updates.
notes: Expose both the committed value and raw_mode state for checking.
- id: masked_input-antd-v2-T07
name: Backup VAT ID with visible validation in dark panel
canonical_type: masked_input
implementation_source: antd
implementation_variant: composite_validation_status
implementation_component: 'AntD: Input (masked VAT ID) with status/error and row Save'
task_template: enter_formatted
secondary_template: null
browsergym_goal: In the dark “Tax IDs” settings panel, change only the masked input labeled “Backup VAT ID” to EU-2048-77. Leave “Primary VAT ID” and “Legacy VAT ID” unchanged, then click Save for the Backup VAT ID row. The task will finish automatically when done.
ui_copy: In the dark “Tax IDs” settings panel, change only the masked input labeled “Backup VAT ID” to EU-2048-77. Leave “Primary VAT ID” and “Legacy VAT ID” unchanged, then click Save for the Backup VAT ID row. The task will finish automatically when done.
setup_description: |-
The page uses a dark settings_panel in the lower-right with compact spacing and high clutter from toggles, helper text, and status chips. Three masked VAT-ID rows are shown: “Primary VAT ID”, “Backup VAT ID”, and “Legacy VAT ID”.
Each uses an Ant Design Input with mask `AA-####-##` and a row-local Save button. Primary starts as `EU-1024-11`, Backup starts empty, and Legacy starts as `US-9000-00`. If the entry is incomplete or contains the wrong letter/digit count, the row shows error status and its Save button stays disabled.
Only Backup VAT ID should change.
scene_context:
theme: dark
spacing: compact
layout: settings_panel
placement: bottom_right
scale: small
instances: 3
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- theme
- instances
- clutter
factor_rationale: The visible validation rule is simple, but the hard part is grounding the right row and using the matching Save control in a dense dark settings panel.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 5
justification: This is hard because the field must satisfy a visible format rule inside a dark cluttered panel with three very similar rows and local saves.
success_trigger:
human_readable:
- The masked input instance labeled 'Backup VAT ID' is the one that must be checked.
- The final formatted value equals 'EU-2048-77' exactly.
- The value is committed via the required control 'Save'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: EU-2048-77
saved: true
non_target_instances_must_remain:
Primary VAT ID: EU-1024-11
Legacy VAT ID: US-9000-00
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Backup VAT ID
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Primary VAT ID or Legacy VAT ID instead of Backup VAT ID.
- Entering an incomplete or malformed value such as E-2048-77 or EU-2048-7.
- Typing the correct value but not clicking Save for the Backup VAT ID row.
- Changing any non-target VAT row.
expected_interaction_path:
- Locate the Backup VAT ID row.
- Focus its masked input and enter EU204877.
- Wait for the row to clear error state and show the formatted value EU-2048-77.
- Click Save for the Backup VAT ID row.
notes: Implementation should expose per-row validation status and applied value.
- id: masked_input-antd-v2-T08
name: Vehicle plate in inline surface with confirm popconfirm
canonical_type: masked_input
implementation_source: antd
implementation_variant: composite_inline_surface_popconfirm
implementation_component: 'AntD: Input size="small" (masked vehicle plate) with Save then Popconfirm Confirm'
task_template: confirm_cancel
secondary_template: null
browsergym_goal: In the “Fleet aliases” strip, change only the masked input labeled “Backup vehicle plate” to QPX-0471. Leave “Primary vehicle plate” unchanged. Click Save for the Backup vehicle plate row and then choose Confirm in the popconfirm. The task will finish automatically when done.
ui_copy: In the “Fleet aliases” strip, change only the masked input labeled “Backup vehicle plate” to QPX-0471. Leave “Primary vehicle plate” unchanged. Click Save for the Backup vehicle plate row and then choose Confirm in the popconfirm. The task will finish automatically when done.
setup_description: |-
The UI is an inline_surface near the top-left with compact spacing and medium clutter from chips and icon-only buttons. Two masked vehicle-plate rows are packed into the strip: “Primary vehicle plate” and “Backup vehicle plate”.
Each row uses an Ant Design Input at size="small" with pattern `AAA-####`. Primary starts as `QPX-0421`; Backup starts as `QPX-0401`. After a row-local Save button is clicked, an Ant Design Popconfirm appears anchored to that row with buttons “Confirm” and “Cancel”. Only Confirm commits the change.
Only Backup vehicle plate should change.
scene_context:
theme: high_contrast
spacing: compact
layout: inline_surface
placement: top_left
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: nested_overlay
internal_scroll_region: false
confirmation_model: explicit_confirm
precision_surface: discrete
secondary_supporting_primitive: popover
design_intent:
active_factors:
- overlay_model
- scale
- instances
factor_rationale: The strip keeps the inputs and save controls small, and the nested popconfirm means the correct row must be carried through both the edit and the final confirmation step.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 5
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 4
justification: 'This is hard because the agent must ground the correct compact row twice: once for the edit/save and again for the anchored confirmation popover.'
success_trigger:
human_readable:
- The masked input instance labeled 'Backup vehicle plate' is the one that must be checked.
- The final formatted value equals 'QPX-0471' exactly.
- The value is committed via the required control 'Confirm'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: QPX-0471
saved: true
non_target_instances_must_remain:
Primary vehicle plate: QPX-0421
tolerance: null
require_confirm: true
confirm_control: Confirm
require_correct_instance: true
target_instance_label_or_id: Backup vehicle plate
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Primary vehicle plate instead of Backup vehicle plate.
- Changing Backup vehicle plate correctly but dismissing the popconfirm with Cancel or close.
- Breaking the mask pattern by omitting the dash or letter group.
- Changing both vehicle-plate rows.
expected_interaction_path:
- Locate the Backup vehicle plate row.
- Edit its value to QPX-0471.
- Click the row-local Save button.
- Choose Confirm in the popconfirm for that same row.
notes: Expose both the committed row value and confirmation resolution state for checking.
- id: masked_input-mui-v2-T01
name: Emergency contact phone in left drawer with in-field apply
canonical_type: masked_input
implementation_source: mui
implementation_variant: composite_drawer_input_adornment_apply
implementation_component: 'MUI: Drawer + TextField (masked phone) with InputAdornment Apply/Cancel IconButtons'
task_template: confirm_cancel
secondary_template: open_overlay
browsergym_goal: Open the “Emergency contacts” drawer. Set only the masked input labeled “Emergency contact phone” to (917) 555-0120, leave “Primary contact phone” unchanged, and click the Apply check icon inside the Emergency contact phone field. The task will finish automatically when done.
ui_copy: Open the “Emergency contacts” drawer. Set only the masked input labeled “Emergency contact phone” to (917) 555-0120, leave “Primary contact phone” unchanged, and click the Apply check icon inside the Emergency contact phone field. The task will finish automatically when done.
setup_description: |-
The page uses a left-anchored MUI Drawer opened by a small “Edit contacts” button. Inside the drawer are two masked US phone TextFields: “Primary contact phone” and “Emergency contact phone”.
Both use the mask `(###) ###-####` and render small Apply and Cancel IconButtons inside an end InputAdornment. Primary contact phone starts as `(718) 555-0100`; Emergency contact phone starts empty. A status line under each field reads “Draft” until the Apply check icon inside that same field is clicked.
Only Emergency contact phone should change.
scene_context:
theme: light
spacing: compact
layout: drawer_flow
placement: off_center
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: single_overlay
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: drawer
design_intent:
active_factors:
- layout
- instances
- scale
factor_rationale: The hard part is grounding the correct field and its tiny in-field Apply control inside a drawer, not understanding the phone number syntax.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 3
target_acquisition: 4
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 4
justification: This is hard because the final value is easy but the field-level apply sequence and sibling preservation create a real layered grounding problem.
success_trigger:
human_readable:
- The masked input instance labeled 'Emergency contact phone' is the one that must be checked.
- The final formatted value equals '(917) 555-0120' exactly.
- The value is committed via the required control 'Apply'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: (917) 555-0120
saved: true
non_target_instances_must_remain:
Primary contact phone: (718) 555-0100
tolerance: null
require_confirm: true
confirm_control: Apply
require_correct_instance: true
target_instance_label_or_id: Emergency contact phone
terminal_condition: task ends when predicate holds
negative_cases:
- Entering the target number into Primary contact phone instead of Emergency contact phone.
- Typing the correct number into Emergency contact phone but not clicking its in-field Apply icon.
- Leaving the value incomplete with placeholders visible.
- Changing Primary contact phone in addition to the target field.
expected_interaction_path:
- Open the Emergency contacts drawer.
- Focus Emergency contact phone and type 9175550120.
- Verify the formatted value appears as (917) 555-0120.
- Click the Apply check icon inside that field.
notes: Ground this in InputAdornment IconButtons so the checker can distinguish draft from applied state per field.
- id: masked_input-mui-v2-T02
name: Backup vehicle plate in compact fleet table
canonical_type: masked_input
implementation_source: mui
implementation_variant: composite_table_small_plate
implementation_component: 'MUI: Table + TextField size="small" (masked vehicle plate) with row Save'
task_template: table_operation
secondary_template: null
browsergym_goal: In the “Fleet record” table, change the masked input in the “Vehicle plate” cell for the “Backup van” row to QPX-0471. Do not edit the “Primary van” row. Then click Save in the Backup van row. The task will finish automatically when done.
ui_copy: In the “Fleet record” table, change the masked input in the “Vehicle plate” cell for the “Backup van” row to QPX-0471. Do not edit the “Primary van” row. Then click Save in the Backup van row. The task will finish automatically when done.
setup_description: |-
The page uses a compact table_cell layout near the bottom-right. A dense MUI Table shows two rows, “Primary van” and “Backup van”, with columns “Vehicle”, “Vehicle plate”, and “State”.
The Vehicle plate cells are masked TextFields rendered at size="small" with pattern `AAA-####`. Primary van starts as `QPX-0421`; Backup van starts as `QPX-0401`. Each row has a row-local Save button at the far right.
Only the Backup van row should change.
scene_context:
theme: light
spacing: compact
layout: table_cell
placement: bottom_right
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: table
design_intent:
active_factors:
- layout
- scale
- instances
factor_rationale: The table compresses the masked cell and the row save control, so the agent has to keep row identity stable across the edit and save steps.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 5
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 5
justification: This is hard because compact table cells and row-local saves make wrong-row interactions plausible even though the plate format itself is simple.
success_trigger:
human_readable:
- The masked input instance labeled 'Fleet record/Backup van/Vehicle plate' is the one that must be checked.
- The final formatted value equals 'QPX-0471' exactly.
- The value is committed via the required control 'Save'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: QPX-0471
saved: true
non_target_instances_must_remain:
Fleet record/Primary van/Vehicle plate: QPX-0421
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Fleet record/Backup van/Vehicle plate
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Primary van instead of Backup van.
- Saving a close variant such as “QPX0471” or “QPX-471”.
- Typing the correct value but clicking Save in the wrong row or not saving at all.
- Changing any non-target row.
expected_interaction_path:
- Locate the Backup van row and Vehicle plate cell.
- Edit the masked value to QPX-0471.
- Verify Primary van remains unchanged.
- Click Save in the Backup van row.
notes: The checker should bind row identity and committed row-level value.
- id: masked_input-mui-v2-T03
name: License key offscreen in nested settings panel
canonical_type: masked_input
implementation_source: mui
implementation_variant: composite_nested_scroll_license
implementation_component: 'MUI: TextField (masked AAAA-AAAA-AAAA) in nested scroll panel with panel Save'
task_template: scroll_find
secondary_template: null
browsergym_goal: In the nested “Licensing” panel, scroll until the masked input labeled “Backup license key” is visible. Set it to QWER-TY12-ZX90, leave “Primary license key” unchanged, and click “Save licensing”. The task will finish automatically when done.
ui_copy: In the nested “Licensing” panel, scroll until the masked input labeled “Backup license key” is visible. Set it to QWER-TY12-ZX90, leave “Primary license key” unchanged, and click “Save licensing”. The task will finish automatically when done.
setup_description: |-
The layout is nested_scroll with compact spacing and high clutter. An outer page scroll contains summary cards and logs, while the inner “Licensing” panel has its own scrollbar and contains two masked license-key fields plus several toggles and helper blocks.
The mask pattern is `AAAA-AAAA-AAAA`, where letters and digits are both allowed. Primary license key starts as `ABCD-EF12-GH34`; Backup license key is initially below the fold and starts empty.
A panel-level button labeled “Save licensing” commits the inner panel state. Only Backup license key should change.
scene_context:
theme: dark
spacing: compact
layout: nested_scroll
placement: off_center
scale: default
instances: 2
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: true
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- internal_scroll_region
- clutter
- instances
factor_rationale: The key challenge is locating and focusing the offscreen field inside the inner panel, then preserving the prefilled sibling while committing the panel save.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 4
justification: This is hard because the field starts offscreen inside the inner panel, and the save boundary is card-level rather than field-level.
success_trigger:
human_readable:
- The masked input instance labeled 'Backup license key' is the one that must be checked.
- The final formatted value equals 'QWER-TY12-ZX90' exactly.
- The value is committed via the required control 'Save licensing'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: QWER-TY12-ZX90
saved: true
non_target_instances_must_remain:
Primary license key: ABCD-EF12-GH34
tolerance: null
require_confirm: true
confirm_control: Save licensing
require_correct_instance: true
target_instance_label_or_id: Backup license key
terminal_condition: task ends when predicate holds
negative_cases:
- Scrolling the page instead of the Licensing panel so Backup license key never changes.
- Editing Primary license key instead of Backup license key.
- Typing an incomplete or malformed key such as QWERTY12ZX90 without the masked groups.
- Entering the correct key but not clicking “Save licensing”.
expected_interaction_path:
- Scroll inside the Licensing panel until Backup license key is visible.
- Focus the Backup license key field and enter QWERTY12ZX90.
- Verify the formatted value is QWER-TY12-ZX90.
- Click “Save licensing”.
notes: Instrument the inner scroll container and committed panel state rather than relying on DOM position.
- id: masked_input-mui-v2-T04
name: IBAN in modal with save then confirm dialog
canonical_type: masked_input
implementation_source: mui
implementation_variant: composite_modal_iban_confirm
implementation_component: 'MUI: Dialog + TextField (masked IBAN) + confirm dialog'
task_template: confirm_cancel
secondary_template: open_overlay
browsergym_goal: Open the “Add bank account” dialog. In the masked input labeled “IBAN (DE)”, enter DE89 3704 0044 0532 0130 00. Click “Save IBAN”, then choose Confirm in the follow-up dialog. The task will finish automatically when done.
ui_copy: Open the “Add bank account” dialog. In the masked input labeled “IBAN (DE)”, enter DE89 3704 0044 0532 0130 00. Click “Save IBAN”, then choose Confirm in the follow-up dialog. The task will finish automatically when done.
setup_description: |-
The UI uses a modal_flow layout. Clicking “Add bank account” opens a centered MUI Dialog containing a single masked IBAN field labeled “IBAN (DE)”.
The field groups characters as `DE## #### #### #### #### ##` and starts empty. Beneath the field is a button labeled “Save IBAN”. Clicking it opens a second confirmation dialog with message “Apply bank account?” and buttons Cancel and Confirm. Only Confirm commits the value.
There are no other masked inputs in the dialog, but the two-step confirmation is required.
scene_context:
theme: light
spacing: compact
layout: modal_flow
placement: center
scale: default
instances: 1
guidance: text
clutter: medium
component_context:
overlay_model: nested_overlay
internal_scroll_region: false
confirmation_model: explicit_confirm
precision_surface: discrete
secondary_supporting_primitive: dialog
design_intent:
active_factors:
- overlay_model
- confirmation_model
- precision_surface
factor_rationale: The task intentionally adds a second confirmation layer after a valid masked entry so the agent cannot stop at the first save-looking control.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 3
density_choice_interference: 1
depth_layering: 4
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 1
justification: The IBAN itself is long but straightforward; the hard part is carrying the correct value through two modal confirmation steps without canceling or stopping early.
success_trigger:
human_readable:
- The masked input instance labeled 'IBAN (DE)' is the one that must be checked.
- The final formatted value equals 'DE89 3704 0044 0532 0130 00' exactly.
- The value is committed via the required control 'Confirm'.
- Any required overlay state equals False.
canonical_predicate:
predicate_type: equals
target_state:
text: DE89 3704 0044 0532 0130 00
saved: true
overlay_open: false
tolerance: null
require_confirm: true
confirm_control: Confirm
require_correct_instance: true
target_instance_label_or_id: IBAN (DE)
terminal_condition: task ends when predicate holds
negative_cases:
- Entering the correct IBAN but not clicking “Save IBAN”.
- Clicking “Save IBAN” and then Cancel in the follow-up dialog.
- Typing a malformed or incomplete IBAN with missing groups.
- Closing the dialogs without confirming the value.
expected_interaction_path:
- Open the Add bank account dialog.
- Focus IBAN (DE) and enter the digits/letters for the target value.
- Click “Save IBAN”.
- Choose Confirm in the follow-up dialog.
notes: Checker should require both the committed value and confirmation-dialog completion.
- id: masked_input-mui-v2-T05
name: Reference badge copied into secondary employee ID
canonical_type: masked_input
implementation_source: mui
implementation_variant: composite_reference_dashboard
implementation_component: 'MUI: TextField (masked EMP-####) with reference badge and card Apply'
task_template: match_reference
secondary_template: null
browsergym_goal: In the “Staff IDs” card, copy the employee ID shown on the badge into the masked input labeled “Secondary employee ID”. Do not change “Primary employee ID”. Then click “Apply IDs”. The task will finish automatically when done.
ui_copy: In the “Staff IDs” card, copy the employee ID shown on the badge into the masked input labeled “Secondary employee ID”. Do not change “Primary employee ID”. Then click “Apply IDs”. The task will finish automatically when done.
setup_description: |-
The page uses an off-center dashboard_panel with medium clutter. A card titled “Staff IDs” contains a bold badge showing the target ID `EMP-2048` and two masked TextFields: “Primary employee ID” and “Secondary employee ID”.
The field mask is `EMP-####`. Primary employee ID starts as `EMP-1024`; Secondary employee ID starts empty. A card-level button labeled “Apply IDs” commits the card state.
Only Secondary employee ID should change.
scene_context:
theme: dark
spacing: compact
layout: dashboard_panel
placement: top_right
scale: default
instances: 2
guidance: visual
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- guidance
- instances
- placement
factor_rationale: The target is specified visually on the badge, and the card-level apply plus the prefilled sibling field create disambiguation and preservation pressure.
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 3
target_acquisition: 3
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 4
justification: This is hard because the agent must map the visual badge to the correct one of two masked fields and commit the card-level apply without disturbing the sibling.
success_trigger:
human_readable:
- The masked input instance labeled 'Secondary employee ID' is the one that must be checked.
- The final formatted value equals 'EMP-2048' exactly.
- The value is committed via the required control 'Apply IDs'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: EMP-2048
saved: true
non_target_instances_must_remain:
Primary employee ID: EMP-1024
tolerance: null
require_confirm: true
confirm_control: Apply IDs
require_correct_instance: true
target_instance_label_or_id: Secondary employee ID
terminal_condition: task ends when predicate holds
negative_cases:
- Entering the badge value into Primary employee ID instead of Secondary employee ID.
- Typing only the digits without the EMP- prefix if the mask exposes the full formatted value.
- Entering the correct value but not clicking “Apply IDs”.
- Changing Primary employee ID in addition to Secondary employee ID.
expected_interaction_path:
- Read the employee ID from the badge.
- Focus Secondary employee ID and enter the digits for the masked value.
- Verify the displayed formatted value is EMP-2048.
- Click “Apply IDs”.
notes: Keep the badge static and expose committed card state for checking.
- id: masked_input-mui-v2-T06
name: Raw mode account digits in compact inline surface
canonical_type: masked_input
implementation_source: mui
implementation_variant: composite_raw_toggle_inline_surface
implementation_component: 'MUI: TextField (masked account number) with Formatted/Raw segmented toggle and in-field Apply'
task_template: toggle_state
secondary_template: null
browsergym_goal: In the compact payout strip, turn on Raw mode for the masked input labeled “Account number”, enter 000012345678, and click the Apply check icon inside the field. The task will finish automatically when done.
ui_copy: In the compact payout strip, turn on Raw mode for the masked input labeled “Account number”, enter 000012345678, and click the Apply check icon inside the field. The task will finish automatically when done.
setup_description: |-
The page uses an inline_surface near the bottom-left with compact spacing and medium clutter from chips and icon-only buttons. A single masked account-number TextField is shown with a small two-state toggle labeled “Formatted” and “Raw”.
In Formatted mode the field displays groups of digits with spaces; in Raw mode it displays digits only but still enforces a 12-digit numeric mask. The field starts empty in Formatted mode. The end InputAdornment contains an Apply check icon and a Cancel X icon. Only Apply commits the current raw-mode value.
scene_context:
theme: high_contrast
spacing: compact
layout: inline_surface
placement: bottom_left
scale: small
instances: 1
guidance: text
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- scale
- confirmation_model
- placement
factor_rationale: The task turns a single field into a hard sequence by coupling a visible mode state with a tiny in-field apply control on a compact edge-anchored strip.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 5
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 2
justification: Even with one field, this is hard because the correct final state includes both the raw-mode toggle and the applied 12-digit value, all on a compact strip with tiny controls.
success_trigger:
human_readable:
- The masked input instance labeled 'Account number' is the one that must be checked.
- The final formatted value equals '000012345678' exactly.
- The value is committed via the required control 'Apply'.
- '`raw_mode` equals True.'
canonical_predicate:
predicate_type: equals
target_state:
text: 000012345678
raw_mode: true
saved: true
tolerance: null
require_confirm: true
confirm_control: Apply
require_correct_instance: true
target_instance_label_or_id: Account number
terminal_condition: task ends when predicate holds
negative_cases:
- Entering the digits while leaving the field in Formatted mode.
- Switching to Raw mode but not clicking the Apply check icon.
- Entering fewer than 12 digits or including spaces in Raw mode.
- Clicking Cancel, which should discard the draft.
expected_interaction_path:
- Turn on Raw mode.
- Focus Account number and enter 000012345678.
- Verify the field shows digits only.
- Click the Apply check icon inside the field.
notes: Expose both raw_mode state and committed value in the checker.
- id: masked_input-mui-v2-T07
name: Backup VAT field offscreen in compact tax panel
canonical_type: masked_input
implementation_source: mui
implementation_variant: composite_offscreen_tax_panel
implementation_component: 'MUI: TextField (masked VAT) in Scrollable settings panel with row Save'
task_template: scroll_find
secondary_template: null
browsergym_goal: In the scrollable “Tax IDs” panel, scroll until the masked input labeled “Backup VAT ID” is visible. Set it to EU-2048-77, leave “Primary VAT ID” unchanged, and click Save for the Backup VAT ID row. The task will finish automatically when done.
ui_copy: In the scrollable “Tax IDs” panel, scroll until the masked input labeled “Backup VAT ID” is visible. Set it to EU-2048-77, leave “Primary VAT ID” unchanged, and click Save for the Backup VAT ID row. The task will finish automatically when done.
setup_description: |-
The page uses a settings_panel with compact spacing and high clutter from toggles, captions, and status alerts. The panel itself is scrollable and contains two masked VAT ID rows separated by other controls.
The mask pattern is `AA-####-##`. Primary VAT ID starts as `EU-1024-11`; Backup VAT ID is below the fold and starts empty. Each row has its own Save button that is disabled until the value is complete.
Only Backup VAT ID should change.
scene_context:
theme: light
spacing: compact
layout: settings_panel
placement: off_center
scale: small
instances: 2
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: true
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- internal_scroll_region
- clutter
- instances
factor_rationale: The agent must find the offscreen row inside the correct panel, satisfy the visible mask rule, and use the matching row-local Save without disturbing the primary field.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 4
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 4
justification: This is hard because the target field is offscreen in a cluttered panel and commit depends on the correct row-local Save becoming enabled after a valid entry.
success_trigger:
human_readable:
- The masked input instance labeled 'Backup VAT ID' is the one that must be checked.
- The final formatted value equals 'EU-2048-77' exactly.
- The value is committed via the required control 'Save'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: EU-2048-77
saved: true
non_target_instances_must_remain:
Primary VAT ID: EU-1024-11
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Backup VAT ID
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Primary VAT ID instead of Backup VAT ID.
- Typing an incomplete or malformed value so the Save button never becomes valid.
- Entering the correct value but not clicking Save for the Backup VAT ID row.
- Changing Primary VAT ID in addition to Backup VAT ID.
expected_interaction_path:
- Scroll inside the Tax IDs panel until Backup VAT ID is visible.
- Focus Backup VAT ID and enter EU204877.
- Wait for the row Save to become enabled.
- Click Save for the Backup VAT ID row.
notes: Checker should rely on row labels and committed values, not scroll position.
- id: masked_input-mui-v2-T08
name: Serial code among three rows in dark compact panel
canonical_type: masked_input
implementation_source: mui
implementation_variant: composite_three_row_serial
implementation_component: 'MUI: TextField size="small" (masked serial code) with row Save'
task_template: enter_formatted
secondary_template: null
browsergym_goal: In the dark “Device registration” panel, change only the masked input labeled “Backup serial code” to SN-1024-8896. Leave “Primary serial code” and “Legacy serial code” unchanged, then click Save for the Backup serial code row. The task will finish automatically when done.
ui_copy: In the dark “Device registration” panel, change only the masked input labeled “Backup serial code” to SN-1024-8896. Leave “Primary serial code” and “Legacy serial code” unchanged, then click Save for the Backup serial code row. The task will finish automatically when done.
setup_description: |-
The page uses a dark settings_panel in the lower-right with compact spacing and high clutter. Three masked serial-code rows appear: “Primary serial code”, “Backup serial code”, and “Legacy serial code”.
Each uses a size="small" TextField with pattern `SN-####-####` and a row-local Save button. Primary starts as `SN-1024-8890`; Backup starts as `SN-1024-8800`; Legacy starts as `SN-9999-0001`.
Only Backup serial code should change.
scene_context:
theme: dark
spacing: compact
layout: settings_panel
placement: bottom_right
scale: small
instances: 3
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- theme
- instances
- scale
factor_rationale: The serial format is easy, but the compact dark panel and three same-pattern rows make wrong-field and wrong-save mistakes likely.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 5
justification: This is hard because the panel compresses three similar masked fields and row saves into a small dark area, so preserving the two non-target rows matters as much as the final value.
success_trigger:
human_readable:
- The masked input instance labeled 'Backup serial code' is the one that must be checked.
- The final formatted value equals 'SN-1024-8896' exactly.
- The value is committed via the required control 'Save'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: SN-1024-8896
saved: true
non_target_instances_must_remain:
Primary serial code: SN-1024-8890
Legacy serial code: SN-9999-0001
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Backup serial code
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Primary serial code or Legacy serial code instead of Backup serial code.
- Saving a malformed value such as SN10248896 or SN-1024-896.
- Entering the correct value but not clicking Save for the Backup row.
- Changing any non-target serial row.
expected_interaction_path:
- Locate the Backup serial code row.
- Focus its masked field and edit the value to SN-1024-8896.
- Verify the two sibling rows remain unchanged.
- Click Save for the Backup serial code row.
notes: Expose per-row committed value and row labels for checking.
- id: masked_input-mantine-v2-T01
name: Emergency phone in ScrollArea with row apply
canonical_type: masked_input
implementation_source: mantine
implementation_variant: composite_scrollarea_phone_apply
implementation_component: 'Mantine: ScrollArea + TextInput (masked phone) with row-local Apply'
task_template: scroll_find
secondary_template: null
browsergym_goal: In the scrollable “Emergency contacts” list, scroll until the masked input labeled “Emergency contact phone” is visible. Set it to (917) 555-0120, leave “Primary contact phone” unchanged, and click Apply for the Emergency contact phone row. The task will finish automatically when done.
ui_copy: In the scrollable “Emergency contacts” list, scroll until the masked input labeled “Emergency contact phone” is visible. Set it to (917) 555-0120, leave “Primary contact phone” unchanged, and click Apply for the Emergency contact phone row. The task will finish automatically when done.
setup_description: |-
The page uses a nested_scroll layout with a Mantine ScrollArea inside the main panel. The scrollable list contains two masked US phone fields plus several unrelated settings controls.
“Primary contact phone” is visible at load and starts as `(718) 555-0100`. “Emergency contact phone” is below the fold and starts empty. Each row has a local Apply button; until Apply is clicked the row status remains “Draft”.
Only Emergency contact phone should change.
scene_context:
theme: light
spacing: compact
layout: nested_scroll
placement: off_center
scale: small
instances: 2
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: true
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- internal_scroll_region
- clutter
- instances
factor_rationale: The offscreen target inside a ScrollArea turns a basic phone mask into a real scroll-and-bind task, and the local Apply step prevents stopping at a draft-looking value.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 3
target_acquisition: 4
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 4
justification: This is hard because the agent must use the inner ScrollArea, focus the correct field, and commit via the matching row-local Apply while preserving the visible sibling.
success_trigger:
human_readable:
- The masked input instance labeled 'Emergency contact phone' is the one that must be checked.
- The final formatted value equals '(917) 555-0120' exactly.
- The value is committed via the required control 'Apply'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: (917) 555-0120
saved: true
non_target_instances_must_remain:
Primary contact phone: (718) 555-0100
tolerance: null
require_confirm: true
confirm_control: Apply
require_correct_instance: true
target_instance_label_or_id: Emergency contact phone
terminal_condition: task ends when predicate holds
negative_cases:
- Scrolling the page instead of the ScrollArea so Emergency contact phone never changes.
- Editing Primary contact phone instead of Emergency contact phone.
- Entering the right digits but leaving the value un-applied.
- Changing Primary contact phone in addition to the target field.
expected_interaction_path:
- Scroll inside the Emergency contacts list until Emergency contact phone is visible.
- Focus the field and type 9175550120.
- Verify the formatted value appears as (917) 555-0120.
- Click Apply for that row.
notes: Instrument the ScrollArea and per-row applied state; do not rely on scroll position.
- id: masked_input-mantine-v2-T02
name: Raw account number in right drawer with in-field apply
canonical_type: masked_input
implementation_source: mantine
implementation_variant: composite_drawer_raw_toggle
implementation_component: 'Mantine: Drawer + TextInput (masked account number) with Formatted/Raw toggle and in-field Apply/Cancel'
task_template: toggle_state
secondary_template: open_overlay
browsergym_goal: Open the “Payout account” drawer. Turn on Raw mode for the masked input labeled “Account number”, enter 000012345678, and click the Apply check icon inside that field. The task will finish automatically when done.
ui_copy: Open the “Payout account” drawer. Turn on Raw mode for the masked input labeled “Account number”, enter 000012345678, and click the Apply check icon inside that field. The task will finish automatically when done.
setup_description: |-
The page uses a right-side Mantine Drawer with a small offset. Inside the drawer is one masked account-number TextInput labeled “Account number”.
A compact toggle above the field switches between “Formatted” and “Raw”. Formatted mode shows grouped digits with spaces; Raw mode shows digits only while preserving the 12-digit numeric mask. The field starts empty in Formatted mode.
The field’s right section contains small Apply and Cancel ActionIcons. Only the Apply icon commits the current raw-mode value.
scene_context:
theme: light
spacing: compact
layout: drawer_flow
placement: off_center
scale: small
instances: 1
guidance: text
clutter: medium
component_context:
overlay_model: single_overlay
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: drawer
design_intent:
active_factors:
- layout
- scale
- confirmation_model
factor_rationale: The drawer and tiny right-section controls force grounded acquisition, while the correct final state includes both a mode toggle and a committed raw value.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 5
density_choice_interference: 1
depth_layering: 3
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 1
justification: This is hard because the task couples mode state, exact digits, and a small in-field apply control inside an off-center drawer.
success_trigger:
human_readable:
- The masked input instance labeled 'Account number' is the one that must be checked.
- The final formatted value equals '000012345678' exactly.
- The value is committed via the required control 'Apply'.
- '`raw_mode` equals True.'
canonical_predicate:
predicate_type: equals
target_state:
text: 000012345678
raw_mode: true
saved: true
tolerance: null
require_confirm: true
confirm_control: Apply
require_correct_instance: true
target_instance_label_or_id: Account number
terminal_condition: task ends when predicate holds
negative_cases:
- Entering the digits while leaving the field in Formatted mode.
- Switching to Raw mode but not clicking the Apply check icon.
- Entering fewer than 12 digits or leaving spaces visible in Raw mode.
- Clicking Cancel, which discards the draft.
expected_interaction_path:
- Open the Payout account drawer.
- Switch the Account number field to Raw mode.
- Enter 000012345678.
- Click the Apply check icon in the field.
notes: Checker should read both raw_mode state and committed field value.
- id: masked_input-mantine-v2-T03
name: IBAN in modal with card-level apply
canonical_type: masked_input
implementation_source: mantine
implementation_variant: composite_modal_iban_card_apply
implementation_component: 'Mantine: Modal + TextInput (masked IBAN) with modal Apply'
task_template: enter_formatted
secondary_template: open_overlay
browsergym_goal: Open the “Add bank account” dialog. In the masked input labeled “IBAN (DE)”, enter DE89 3704 0044 0532 0130 00 and click “Apply account”. The task will finish automatically when done.
ui_copy: Open the “Add bank account” dialog. In the masked input labeled “IBAN (DE)”, enter DE89 3704 0044 0532 0130 00 and click “Apply account”. The task will finish automatically when done.
setup_description: |-
The page uses modal_flow. Clicking “Add bank account” opens a Mantine Modal containing one masked TextInput labeled “IBAN (DE)” and a secondary read-only field for account holder name.
The IBAN mask groups characters as `DE## #### #### #### #### ##` and starts empty. A button labeled “Apply account” at the bottom of the modal commits the modal state. Closing the modal or clicking outside does not apply the value.
There is only one masked input, but the required overlay and modal-level apply keep the interaction nontrivial.
scene_context:
theme: dark
spacing: compact
layout: modal_flow
placement: center
scale: default
instances: 1
guidance: text
clutter: medium
component_context:
overlay_model: single_overlay
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: dialog
design_intent:
active_factors:
- layout
- confirmation_model
- theme
factor_rationale: This keeps the field count low but uses modal layering and a card-level apply boundary, which is a cleaner hardening strategy than adding fake distractor fields.
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 4
target_acquisition: 3
density_choice_interference: 1
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 1
justification: The value is long and exact, and the modal-level apply step raises feedback and layering pressure even though only one masked field is present.
success_trigger:
human_readable:
- The masked input instance labeled 'IBAN (DE)' is the one that must be checked.
- The final formatted value equals 'DE89 3704 0044 0532 0130 00' exactly.
- The value is committed via the required control 'Apply account'.
- Any required overlay state equals False.
canonical_predicate:
predicate_type: equals
target_state:
text: DE89 3704 0044 0532 0130 00
saved: true
overlay_open: false
tolerance: null
require_confirm: true
confirm_control: Apply account
require_correct_instance: true
target_instance_label_or_id: IBAN (DE)
terminal_condition: task ends when predicate holds
negative_cases:
- Entering the IBAN correctly but not clicking “Apply account”.
- Leaving the value incomplete with one or more masked groups missing.
- Closing the modal without applying the value.
- Entering a malformed value with misplaced grouping.
expected_interaction_path:
- Open the Add bank account dialog.
- Focus the IBAN (DE) field and enter the full masked value.
- Verify the grouped formatting.
- Click “Apply account”.
notes: The checker should use committed modal state rather than a transient input draft.
- id: masked_input-mantine-v2-T04
name: Backup van plate in compact fleet table
canonical_type: masked_input
implementation_source: mantine
implementation_variant: composite_table_plate
implementation_component: 'Mantine: Table + TextInput size="xs" (masked vehicle plate) with row Save'
task_template: table_operation
secondary_template: null
browsergym_goal: In the “Fleet record” table, change the masked input in the “Vehicle plate” cell for the “Backup van” row to QPX-0471. Do not edit the “Primary van” row. Then click Save in the Backup van row. The task will finish automatically when done.
ui_copy: In the “Fleet record” table, change the masked input in the “Vehicle plate” cell for the “Backup van” row to QPX-0471. Do not edit the “Primary van” row. Then click Save in the Backup van row. The task will finish automatically when done.
setup_description: |-
The page uses a compact table_cell layout in high_contrast theme. A small Mantine table shows two rows, “Primary van” and “Backup van”, with columns “Vehicle”, “Vehicle plate”, and “Status”.
The Vehicle plate cells are size="xs" TextInputs with mask `AAA-####`. Primary van starts as `QPX-0421`; Backup van starts as `QPX-0401`. Each row has a row-local Save button.
Only the Backup van row should change.
scene_context:
theme: high_contrast
spacing: compact
layout: table_cell
placement: bottom_left
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: table
design_intent:
active_factors:
- layout
- scale
- instances
factor_rationale: The table cell and row Save are intentionally small, so the task becomes a row-binding problem rather than a generic mask-fill problem.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 5
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 5
justification: This is hard because compact table controls make it easy to edit or save the wrong row, even though the final plate syntax is straightforward.
success_trigger:
human_readable:
- The masked input instance labeled 'Fleet record/Backup van/Vehicle plate' is the one that must be checked.
- The final formatted value equals 'QPX-0471' exactly.
- The value is committed via the required control 'Save'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: QPX-0471
saved: true
non_target_instances_must_remain:
Fleet record/Primary van/Vehicle plate: QPX-0421
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Fleet record/Backup van/Vehicle plate
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Primary van instead of Backup van.
- Saving the correct plate in Backup van but clicking Save in the wrong row.
- Breaking the mask pattern by omitting the dash or using the wrong letter count.
- Changing the non-target row.
expected_interaction_path:
- Locate the Backup van row and Vehicle plate cell.
- Edit the value to QPX-0471.
- Verify Primary van remains unchanged.
- Click Save in the Backup van row.
notes: The checker should bind row identity and committed row-level value.
- id: masked_input-mantine-v2-T05
name: Reference badge copied into secondary employee ID
canonical_type: masked_input
implementation_source: mantine
implementation_variant: composite_reference_badge_card_apply
implementation_component: 'Mantine: TextInput (masked EMP-####) with reference badge and card Apply'
task_template: match_reference
secondary_template: null
browsergym_goal: In the “Staff IDs” card, copy the employee ID shown on the badge into the masked input labeled “Secondary employee ID”. Do not change “Primary employee ID”. Then click “Apply IDs”. The task will finish automatically when done.
ui_copy: In the “Staff IDs” card, copy the employee ID shown on the badge into the masked input labeled “Secondary employee ID”. Do not change “Primary employee ID”. Then click “Apply IDs”. The task will finish automatically when done.
setup_description: |-
The page uses a dashboard_panel placed near the upper-right with medium clutter. A card titled “Staff IDs” contains a bold badge showing the target ID `EMP-2048` and two masked TextInputs: “Primary employee ID” and “Secondary employee ID”.
The mask pattern is `EMP-####`. Primary employee ID starts as `EMP-1024`; Secondary employee ID starts empty. A card-level button labeled “Apply IDs” commits the card state.
Only Secondary employee ID should change.
scene_context:
theme: light
spacing: compact
layout: dashboard_panel
placement: top_right
scale: default
instances: 2
guidance: visual
clutter: medium
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- guidance
- instances
- placement
factor_rationale: The target comes from a visual badge, and the card-level apply plus the prefilled sibling field preserve the grounding and disambiguation burden.
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 3
target_acquisition: 3
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 3
disambiguation_load: 4
justification: This is hard because the agent must map the visual reference to the correct one of two same-pattern fields and preserve the sibling through the card-level apply.
success_trigger:
human_readable:
- The masked input instance labeled 'Secondary employee ID' is the one that must be checked.
- The final formatted value equals 'EMP-2048' exactly.
- The value is committed via the required control 'Apply IDs'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: EMP-2048
saved: true
non_target_instances_must_remain:
Primary employee ID: EMP-1024
tolerance: null
require_confirm: true
confirm_control: Apply IDs
require_correct_instance: true
target_instance_label_or_id: Secondary employee ID
terminal_condition: task ends when predicate holds
negative_cases:
- Entering the badge value into Primary employee ID instead of Secondary employee ID.
- Typing only the digits without a valid formatted value.
- Entering the correct value but not clicking “Apply IDs”.
- Changing both employee ID fields.
expected_interaction_path:
- Read the employee ID from the badge.
- Focus Secondary employee ID and enter the masked value.
- Verify the formatted value is EMP-2048.
- Click “Apply IDs”.
notes: Keep the reference badge static and expose committed card state.
- id: masked_input-mantine-v2-T06
name: Backup VAT ID offscreen in tax settings ScrollArea
canonical_type: masked_input
implementation_source: mantine
implementation_variant: composite_scrollarea_vat
implementation_component: 'Mantine: ScrollArea + TextInput (masked VAT) with row Save'
task_template: scroll_find
secondary_template: null
browsergym_goal: In the scrollable “Tax IDs” settings list, scroll until the masked input labeled “Backup VAT ID” is visible. Set it to EU-2048-77, leave “Primary VAT ID” unchanged, and click Save for the Backup VAT ID row. The task will finish automatically when done.
ui_copy: In the scrollable “Tax IDs” settings list, scroll until the masked input labeled “Backup VAT ID” is visible. Set it to EU-2048-77, leave “Primary VAT ID” unchanged, and click Save for the Backup VAT ID row. The task will finish automatically when done.
setup_description: |-
The page uses a settings_panel with high clutter and a Mantine ScrollArea for the settings list. The list mixes toggles, help blocks, and two masked VAT-ID rows.
“Primary VAT ID” is visible at load and starts as `EU-1024-11`. “Backup VAT ID” is below the fold and starts empty. Each masked field uses pattern `AA-####-##` and has a row-local Save button that is disabled until the value is complete.
Only Backup VAT ID should change.
scene_context:
theme: dark
spacing: compact
layout: settings_panel
placement: off_center
scale: small
instances: 2
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: true
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- internal_scroll_region
- theme
- instances
factor_rationale: The offscreen target inside the ScrollArea and the dark compact panel create a grounded find-focus-save problem, while the sibling field must remain unchanged.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 5
target_acquisition: 4
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 4
justification: This is hard because the correct row is offscreen in a dark cluttered ScrollArea and the row-local Save only becomes active after a valid masked entry.
success_trigger:
human_readable:
- The masked input instance labeled 'Backup VAT ID' is the one that must be checked.
- The final formatted value equals 'EU-2048-77' exactly.
- The value is committed via the required control 'Save'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: EU-2048-77
saved: true
non_target_instances_must_remain:
Primary VAT ID: EU-1024-11
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Backup VAT ID
terminal_condition: task ends when predicate holds
negative_cases:
- Scrolling the page instead of the settings ScrollArea so Backup VAT ID stays hidden.
- Editing Primary VAT ID instead of Backup VAT ID.
- Typing an incomplete or malformed value so Save remains disabled.
- Entering the correct value but not clicking Save for the Backup VAT ID row.
expected_interaction_path:
- Scroll inside the Tax IDs settings list until Backup VAT ID is visible.
- Focus Backup VAT ID and enter EU204877.
- Wait for the row Save to enable.
- Click Save for the Backup VAT ID row.
notes: Instrument the ScrollArea and per-row committed state; do not rely on absolute page scroll.
- id: masked_input-mantine-v2-T07
name: License key in compact strip with confirm popover
canonical_type: masked_input
implementation_source: mantine
implementation_variant: composite_inline_surface_confirm
implementation_component: 'Mantine: TextInput (masked license key) with Save then confirm Popover'
task_template: confirm_cancel
secondary_template: null
browsergym_goal: In the compact licensing strip, change only the masked input labeled “Backup license key” to QWER-TY12-ZX90. Leave “Primary license key” unchanged. Click Save for the Backup license key row and then choose Confirm in the popover. The task will finish automatically when done.
ui_copy: In the compact licensing strip, change only the masked input labeled “Backup license key” to QWER-TY12-ZX90. Leave “Primary license key” unchanged. Click Save for the Backup license key row and then choose Confirm in the popover. The task will finish automatically when done.
setup_description: |-
The UI uses an inline_surface near the bottom-left with compact spacing and medium clutter from chips and icon-only buttons. Two masked license-key rows are packed into the strip: “Primary license key” and “Backup license key”.
The mask pattern is `AAAA-AAAA-AAAA`. Primary starts as `ABCD-EF12-GH34`; Backup starts as `ABCD-EF12-GH00`. Clicking a row-local Save button opens a small Popover anchored to that row with “Confirm” and “Cancel”. Only Confirm commits the change.
Only Backup license key should change.
scene_context:
theme: high_contrast
spacing: compact
layout: inline_surface
placement: bottom_left
scale: small
instances: 2
guidance: text
clutter: medium
component_context:
overlay_model: nested_overlay
internal_scroll_region: false
confirmation_model: explicit_confirm
precision_surface: discrete
secondary_supporting_primitive: popover
design_intent:
active_factors:
- overlay_model
- scale
- instances
factor_rationale: The strip keeps the controls small, and the nested popover means the correct row must be carried through both the save and confirm stages.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 5
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 4
semantic_observability: 4
disambiguation_load: 4
justification: This is hard because the agent must bind the edit and the follow-up confirmation to the same compact row, not just type the correct key.
success_trigger:
human_readable:
- The masked input instance labeled 'Backup license key' is the one that must be checked.
- The final formatted value equals 'QWER-TY12-ZX90' exactly.
- The value is committed via the required control 'Confirm'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: QWER-TY12-ZX90
saved: true
non_target_instances_must_remain:
Primary license key: ABCD-EF12-GH34
tolerance: null
require_confirm: true
confirm_control: Confirm
require_correct_instance: true
target_instance_label_or_id: Backup license key
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Primary license key instead of Backup license key.
- Saving a malformed value or leaving a partial group.
- Clicking Save but then Cancel in the popover.
- Changing both license-key rows.
expected_interaction_path:
- Locate the Backup license key row.
- Edit the value to QWER-TY12-ZX90.
- Click Save for that row.
- Choose Confirm in the popover.
notes: Expose both committed row value and popover confirmation state.
- id: masked_input-mantine-v2-T08
name: Backup serial code among three dark rows
canonical_type: masked_input
implementation_source: mantine
implementation_variant: composite_three_row_serial_dark
implementation_component: 'Mantine: TextInput size="xs" (masked serial code) with row Save'
task_template: enter_formatted
secondary_template: null
browsergym_goal: In the dark “Device registration” panel, change only the masked input labeled “Backup serial code” to SN-1024-8896. Leave “Primary serial code” and “Legacy serial code” unchanged, then click Save for the Backup serial code row. The task will finish automatically when done.
ui_copy: In the dark “Device registration” panel, change only the masked input labeled “Backup serial code” to SN-1024-8896. Leave “Primary serial code” and “Legacy serial code” unchanged, then click Save for the Backup serial code row. The task will finish automatically when done.
setup_description: |-
The page uses a dark settings_panel in the lower-right with compact spacing and high clutter. Three masked serial-code rows are shown: “Primary serial code”, “Backup serial code”, and “Legacy serial code”.
Each row uses a size="xs" Mantine TextInput with mask `SN-####-####` and a row-local Save button. Primary starts as `SN-1024-8890`; Backup starts as `SN-1024-8800`; Legacy starts as `SN-9999-0001`.
Only Backup serial code should change.
scene_context:
theme: dark
spacing: compact
layout: settings_panel
placement: bottom_right
scale: small
instances: 3
guidance: text
clutter: high
component_context:
overlay_model: none
internal_scroll_region: false
confirmation_model: explicit_apply
precision_surface: discrete
secondary_supporting_primitive: none
design_intent:
active_factors:
- theme
- instances
- scale
factor_rationale: The hardening comes from three same-pattern rows and small controls in a dark compact panel, not from obscure mask syntax.
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 4
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 3
semantic_observability: 4
disambiguation_load: 5
justification: This is hard because compact dark UI makes it easy to edit or save the wrong one of three very similar serial-code rows.
success_trigger:
human_readable:
- The masked input instance labeled 'Backup serial code' is the one that must be checked.
- The final formatted value equals 'SN-1024-8896' exactly.
- The value is committed via the required control 'Save'.
- All non-target masked-input instances listed in the spec remain unchanged.
canonical_predicate:
predicate_type: equals
target_state:
text: SN-1024-8896
saved: true
non_target_instances_must_remain:
Primary serial code: SN-1024-8890
Legacy serial code: SN-9999-0001
tolerance: null
require_confirm: true
confirm_control: Save
require_correct_instance: true
target_instance_label_or_id: Backup serial code
terminal_condition: task ends when predicate holds
negative_cases:
- Editing Primary serial code or Legacy serial code instead of Backup serial code.
- Breaking the mask pattern by removing the SN- prefix or a dash.
- Typing the correct value but not clicking Save for the Backup row.
- Changing any non-target serial row.
expected_interaction_path:
- Find the Backup serial code row.
- Focus its masked field and edit the value to SN-1024-8896.
- Verify the other two serial-code rows remain unchanged.
- Click Save for the Backup row.
notes: Expose per-row committed values and labels for checking.
|