File size: 141,230 Bytes
cc036ff | 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 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 | """
Page Object Model classes for E2E UI tests.
Page Objects encapsulate UI interaction logic, making tests more maintainable
and resilient to UI changes. Each page represents a specific screen or view
in the application.
Uses data-testid attributes for selectors (resilient to CSS/class changes).
Page Objects:
- LoginPage: Login form (email, password, submit button)
- DashboardPage: Main dashboard (welcome message, navigation)
- SettingsPage: User settings (theme toggle, notifications)
- ProjectsPage: Projects dashboard (project list, create, edit, delete)
- ChatPage: Agent chat interface (message input, streaming, history)
- ExecutionHistoryPage: Agent execution history (timestamp, status, results)
- SkillsMarketplacePage: Skills marketplace browsing (search, filters, pagination)
- SkillInstallationPage: Skill installation workflow (install button, security scan, governance)
- SkillConfigPage: Skill configuration (API keys, options, validation, persistence)
- SkillExecutionPage: Skill execution interface (parameters, progress, output)
"""
from playwright.sync_api import Page, Locator
from typing import Optional, Dict, Any
class BasePage:
"""Base class for all Page Objects.
Provides common functionality like waiting for page load and
checking page visibility.
"""
def __init__(self, page: Page):
"""Initialize Page Object with Playwright page.
Args:
page: Playwright page instance
"""
self.page = page
def is_loaded(self) -> bool:
"""Check if page is loaded and visible.
Returns:
bool: True if page is loaded, False otherwise
Example:
assert dashboard.is_loaded() is True
"""
# Override in subclasses
raise NotImplementedError("Subclasses must implement is_loaded()")
def wait_for_load(self, timeout: int = 5000) -> None:
"""Wait for page to load.
Args:
timeout: Maximum time to wait in milliseconds
Example:
dashboard.wait_for_load()
"""
from playwright.sync_api import TimeoutError
try:
# Poll is_loaded() until True or timeout
self.page.wait_for_timeout(100) # Small initial delay
start_time = __import__('time').time()
while __import__('time').time() - start_time < timeout / 1000:
if self.is_loaded():
return
self.page.wait_for_timeout(100)
raise TimeoutError(f"Page did not load within {timeout}ms")
except TimeoutError:
raise
class LoginPage(BasePage):
"""Page Object for Login page.
Encapsulates login form interactions:
- Email input field
- Password input field
- Submit button
- Error messages
Uses data-testid selectors for resilience.
"""
# Locators using data-testid attributes
@property
def email_input(self) -> Locator:
"""Email input field locator."""
return self.page.get_by_test_id("login-email-input")
@property
def password_input(self) -> Locator:
"""Password input field locator."""
return self.page.get_by_test_id("login-password-input")
@property
def submit_button(self) -> Locator:
"""Login submit button locator."""
return self.page.get_by_test_id("login-submit-button")
@property
def error_message(self) -> Locator:
"""Error message locator (shown on login failure)."""
return self.page.get_by_test_id("login-error-message")
@property
def remember_me_checkbox(self) -> Locator:
"""Remember me checkbox locator."""
return self.page.get_by_test_id("login-remember-me")
def is_loaded(self) -> bool:
"""Check if login page is loaded.
Returns:
bool: True if email input is visible
Example:
assert login_page.is_loaded() is True
"""
return self.email_input.is_visible()
def navigate(self) -> None:
"""Navigate to login page.
Example:
login_page.navigate()
assert login_page.is_loaded()
"""
self.page.goto("http://localhost:3000/login")
def fill_email(self, email: str) -> None:
"""Fill email input field.
Args:
email: Email address to enter
Example:
login_page.fill_email("test@example.com")
"""
self.email_input.fill(email)
def fill_password(self, password: str) -> None:
"""Fill password input field.
Args:
password: Password to enter
Example:
login_page.fill_password("MyPassword123!")
"""
self.password_input.fill(password)
def click_submit(self) -> None:
"""Click submit button to login.
Example:
login_page.click_submit()
# Waits for navigation to dashboard
"""
with self.page.expect_navigation(timeout=5000):
self.submit_button.click()
def login(self, email: str, password: str) -> None:
"""Fill form and submit login (complete flow).
This is a convenience method that combines fill_email,
fill_password, and click_submit.
Args:
email: User email
password: User password
Example:
login_page.login("test@example.com", "password123")
# Logged in and redirected
"""
self.fill_email(email)
self.fill_password(password)
self.click_submit()
def get_error_text(self) -> Optional[str]:
"""Get error message text if present.
Returns:
Optional[str]: Error text or None if no error
Example:
error = login_page.get_error_text()
assert "Invalid credentials" in error
"""
if self.error_message.is_visible():
return self.error_message.text_content()
return None
def set_remember_me(self, checked: bool = True) -> None:
"""Set remember me checkbox state.
Args:
checked: True to check, False to uncheck
Example:
login_page.set_remember_me(True)
"""
if checked:
self.remember_me_checkbox.check()
else:
self.remember_me_checkbox.uncheck()
class DashboardPage(BasePage):
"""Page Object for Dashboard page.
Encapsulates dashboard interactions:
- Welcome message
- Navigation menu
- Agent cards
- Quick actions
Uses data-testid selectors for resilience.
"""
# Locators
@property
def welcome_message(self) -> Locator:
"""Welcome message locator."""
return self.page.get_by_test_id("dashboard-welcome-message")
@property
def navigation_menu(self) -> Locator:
"""Main navigation menu locator."""
return self.page.get_by_test_id("dashboard-navigation-menu")
@property
def agent_cards(self) -> Locator:
"""Agent cards grid locator."""
return self.page.get_by_test_id("dashboard-agent-cards")
@property
def quick_actions(self) -> Locator:
"""Quick actions section locator."""
return self.page.get_by_test_id("dashboard-quick-actions")
@property
def create_agent_button(self) -> Locator:
"""Create new agent button locator."""
return self.page.get_by_test_id("dashboard-create-agent-button")
@property
def user_profile_button(self) -> Locator:
"""User profile menu button locator."""
return self.page.get_by_test_id("dashboard-user-profile-button")
@property
def logout_button(self) -> Locator:
"""Logout button locator (in profile menu)."""
return self.page.get_by_test_id("dashboard-logout-button")
def is_loaded(self) -> bool:
"""Check if dashboard is loaded.
Returns:
bool: True if welcome message is visible
Example:
assert dashboard.is_loaded() is True
"""
return self.welcome_message.is_visible()
def navigate(self) -> None:
"""Navigate to dashboard.
Example:
dashboard.navigate()
assert dashboard.is_loaded()
"""
self.page.goto("http://localhost:3000/dashboard")
def get_welcome_text(self) -> str:
"""Get welcome message text.
Returns:
str: Welcome message
Example:
text = dashboard.get_welcome_text()
assert "Welcome" in text
"""
return self.welcome_message.text_content()
def get_agent_count(self) -> int:
"""Get number of agent cards displayed.
Returns:
int: Number of agent cards
Example:
count = dashboard.get_agent_count()
assert count > 0
"""
return self.agent_cards.count()
def click_create_agent(self) -> None:
"""Click create agent button.
Example:
dashboard.click_create_agent()
# Navigates to agent creation flow
"""
self.create_agent_button.click()
def click_user_profile(self) -> None:
"""Click user profile button to open menu.
Example:
dashboard.click_user_profile()
assert dashboard.logout_button.is_visible()
"""
self.user_profile_button.click()
def click_logout(self) -> None:
"""Click logout button.
Note: User profile menu must be open first.
Example:
dashboard.click_user_profile()
dashboard.click_logout()
# Logged out
"""
self.logout_button.click()
def logout(self) -> None:
"""Complete logout flow (open menu, click logout).
Convenience method that combines menu opening and logout.
Example:
dashboard.logout()
# Logged out and redirected to login
"""
self.click_user_profile()
self.click_logout()
class SettingsPage(BasePage):
"""Page Object for Settings page.
Encapsulates settings interactions:
- Theme toggle (light/dark mode)
- Notification settings
- Account settings
- Security settings
Uses data-testid selectors for resilience.
"""
# Locators
@property
def theme_toggle(self) -> Locator:
"""Theme toggle switch locator."""
return self.page.get_by_test_id("settings-theme-toggle")
@property
def theme_label(self) -> Locator:
"""Theme label text locator (shows current theme)."""
return self.page.get_by_test_id("settings-theme-label")
@property
def notifications_section(self) -> Locator:
"""Notifications settings section locator."""
return self.page.get_by_test_id("settings-notifications-section")
@property
def email_notifications_checkbox(self) -> Locator:
"""Email notifications checkbox locator."""
return self.page.get_by_test_id("settings-email-notifications-checkbox")
@property
def push_notifications_checkbox(self) -> Locator:
"""Push notifications checkbox locator."""
return self.page.get_by_test_id("settings-push-notifications-checkbox")
@property
def save_button(self) -> Locator:
"""Save settings button locator."""
return self.page.get_by_test_id("settings-save-button")
@property
def success_message(self) -> Locator:
"""Success message locator (shown after save)."""
return self.page.get_by_test_id("settings-success-message")
@property
def account_section(self) -> Locator:
"""Account settings section locator."""
return self.page.get_by_test_id("settings-account-section")
@property
def security_section(self) -> Locator:
"""Security settings section locator."""
return self.page.get_by_test_id("settings-security-section")
def is_loaded(self) -> bool:
"""Check if settings page is loaded.
Returns:
bool: True if theme toggle is visible
Example:
assert settings.is_loaded() is True
"""
return self.theme_toggle.is_visible()
def navigate(self) -> None:
"""Navigate to settings page.
Example:
settings.navigate()
assert settings.is_loaded()
"""
self.page.goto("http://localhost:3000/settings")
def get_current_theme(self) -> str:
"""Get current theme from label text.
Returns:
str: Current theme ("Light" or "Dark")
Example:
theme = settings.get_current_theme()
assert theme in ["Light", "Dark"]
"""
return self.theme_label.text_content()
def set_theme(self, theme: str) -> None:
"""Set theme by clicking toggle if needed.
Args:
theme: "light" or "dark"
Example:
settings.set_theme("dark")
assert settings.get_current_theme() == "Dark"
"""
current = self.get_current_theme().lower()
# Only click toggle if theme is different
if (theme == "dark" and current == "light") or \
(theme == "light" and current == "dark"):
self.theme_toggle.click()
def toggle_theme(self) -> None:
"""Toggle theme (light to dark or vice versa).
Example:
current = settings.get_current_theme()
settings.toggle_theme()
assert settings.get_current_theme() != current
"""
self.theme_toggle.click()
def set_email_notifications(self, enabled: bool) -> None:
"""Enable or disable email notifications.
Args:
enabled: True to enable, False to disable
Example:
settings.set_email_notifications(True)
"""
if enabled:
self.email_notifications_checkbox.check()
else:
self.email_notifications_checkbox.uncheck()
def set_push_notifications(self, enabled: bool) -> None:
"""Enable or disable push notifications.
Args:
enabled: True to enable, False to disable
Example:
settings.set_push_notifications(False)
"""
if enabled:
self.push_notifications_checkbox.check()
else:
self.push_notifications_checkbox.uncheck()
def click_save(self) -> None:
"""Click save button to save settings.
Example:
settings.click_save()
assert settings.success_message.is_visible()
"""
self.save_button.click()
def save_settings(self) -> None:
"""Save current settings and wait for success message.
Convenience method that clicks save and waits for confirmation.
Example:
settings.set_theme("dark")
settings.save_settings()
assert settings.success_message.is_visible()
"""
self.click_save()
# Wait for success message
self.page.wait_for_selector('[data-testid="settings-success-message"]', timeout=3000)
def get_success_message(self) -> Optional[str]:
"""Get success message text if present.
Returns:
Optional[str]: Success text or None
Example:
settings.save_settings()
msg = settings.get_success_message()
assert "saved" in msg.lower()
"""
if self.success_message.is_visible():
return self.success_message.text_content()
return None
class ChatPage(BasePage):
"""Page Object for Agent Chat interface page.
Encapsulates chat interactions including:
- Message input and sending
- Chat history display
- Streaming response indicators
- Agent maturity selection
Uses data-testid selectors for resilience.
"""
# Locators using data-testid attributes
@property
def chat_container(self) -> Locator:
"""Main chat interface container locator."""
return self.page.get_by_test_id("chat-container")
@property
def chat_input(self) -> Locator:
"""Chat message input field locator."""
return self.page.get_by_test_id("chat-input")
@property
def send_button(self) -> Locator:
"""Send message button locator."""
return self.page.get_by_test_id("send-button")
@property
def message_list(self) -> Locator:
"""Chat history/message list container locator."""
return self.page.get_by_test_id("message-list")
@property
def user_message(self) -> Locator:
"""User message bubble locators."""
return self.page.get_by_test_id("user-message")
@property
def assistant_message(self) -> Locator:
"""Agent/assistant message bubble locators."""
return self.page.get_by_test_id("assistant-message")
@property
def streaming_indicator(self) -> Locator:
"""Streaming/loading state indicator locator."""
return self.page.get_by_test_id("streaming-indicator")
@property
def agent_selector(self) -> Locator:
"""Agent maturity level dropdown selector."""
return self.page.get_by_test_id("agent-selector")
@property
def typing_indicator(self) -> Locator:
"""Typing indicator animation locator."""
return self.page.get_by_test_id("typing-indicator")
@property
def message_timestamp(self) -> Locator:
"""Message timestamp locator."""
return self.page.get_by_test_id("message-timestamp")
@property
def clear_chat_button(self) -> Locator:
"""Clear chat history button locator."""
return self.page.get_by_test_id("clear-chat-button")
def is_loaded(self) -> bool:
"""Check if chat interface is loaded and visible.
Returns:
bool: True if chat container and input are visible
Example:
assert chat_page.is_loaded() is True
"""
return self.chat_container.is_visible() and self.chat_input.is_visible()
def navigate(self) -> None:
"""Navigate to chat interface page.
Example:
chat_page.navigate()
assert chat_page.is_loaded()
"""
self.page.goto("http://localhost:3001/chat")
def send_message(self, text: str) -> None:
"""Type and send a chat message.
Args:
text: Message text to send
Example:
chat_page.send_message("Hello, how can you help me?")
"""
self.chat_input.fill(text)
self.send_button.click()
def get_last_message(self) -> str:
"""Get the most recent message text from chat history.
Returns:
str: The text content of the last message
Example:
last_msg = chat_page.get_last_message()
assert "response" in last_msg.lower()
"""
# Get all assistant messages and return the last one
messages = self.assistant_message.all()
if messages:
return messages[-1].text_content()
return ""
def get_all_messages(self) -> list[str]:
"""Get all messages from chat history.
Returns:
list[str]: List of all message texts in chronological order
Example:
messages = chat_page.get_all_messages()
assert len(messages) > 0
"""
all_messages = []
# Get user messages
for msg in self.user_message.all():
all_messages.append(("user", msg.text_content()))
# Get assistant messages
for msg in self.assistant_message.all():
all_messages.append(("assistant", msg.text_content()))
return all_messages
def get_message_count(self) -> int:
"""Count total messages in chat history.
Returns:
int: Total number of messages (user + assistant)
Example:
count = chat_page.get_message_count()
assert count > 0
"""
return self.user_message.count() + self.assistant_message.count()
def wait_for_response(self, timeout: int = 5000) -> None:
"""Wait for assistant response to appear.
Args:
timeout: Maximum time to wait in milliseconds
Example:
chat_page.send_message("Hello")
chat_page.wait_for_response(timeout=10000)
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
self.page.wait_for_selector('[data-testid="assistant-message"]', timeout=timeout)
except PlaywrightTimeoutError:
raise TimeoutError(f"No assistant response within {timeout}ms")
def is_streaming(self) -> bool:
"""Check if streaming response is in progress.
Returns:
bool: True if streaming indicator is visible
Example:
chat_page.send_message("Tell me a story")
assert chat_page.is_streaming() is True
"""
return self.streaming_indicator.is_visible()
def wait_for_streaming_complete(self, timeout: int = 30000) -> None:
"""Wait for streaming response to complete.
Args:
timeout: Maximum time to wait in milliseconds
Example:
chat_page.send_message("Explain quantum computing")
chat_page.wait_for_streaming_complete(timeout=60000)
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
# Wait for streaming indicator to disappear
self.page.wait_for_selector(
'[data-testid="streaming-indicator"]',
state="hidden",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Streaming did not complete within {timeout}ms")
def select_agent(self, agent_name: str) -> None:
"""Select agent from dropdown by name.
Args:
agent_name: Agent name to select (e.g., "AUTONOMOUS", "SUPERVISED")
Example:
chat_page.select_agent("AUTONOMOUS")
"""
self.agent_selector.select_option(agent_name)
def get_selected_agent(self) -> str:
"""Get currently selected agent maturity level.
Returns:
str: Name of selected agent
Example:
agent = chat_page.get_selected_agent()
assert agent == "AUTONOMOUS"
"""
return self.agent_selector.input_value()
def clear_chat(self) -> None:
"""Clear chat history.
Example:
chat_page.clear_chat()
assert chat_page.get_message_count() == 0
"""
self.clear_chat_button.click()
def wait_for_message(self, message_text: str, timeout: int = 5000) -> None:
"""Wait for a specific message to appear in chat.
Args:
message_text: Text to wait for
timeout: Maximum time to wait in milliseconds
Example:
chat_page.send_message("What is 2+2?")
chat_page.wait_for_message("4", timeout=5000)
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
self.page.wait_for_selector(
f'[data-testid="assistant-message"]:has-text("{message_text}")',
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Message '{message_text}' did not appear within {timeout}ms")
def get_last_user_message(self) -> str:
"""Get the most recent user message text.
Returns:
str: The text content of the last user message
Example:
last_user_msg = chat_page.get_last_user_message()
assert "help" in last_user_msg.lower()
"""
messages = self.user_message.all()
if messages:
return messages[-1].text_content()
return ""
def is_typing_indicator_visible(self) -> bool:
"""Check if typing indicator is visible.
Returns:
bool: True if typing indicator is visible
Example:
chat_page.send_message("Hello")
assert chat_page.is_typing_indicator_visible() is True
"""
return self.typing_indicator.is_visible()
class ProjectsPage(BasePage):
"""Page Object for Projects dashboard page.
Encapsulates project list, create, edit, and delete interactions.
Uses data-testid selectors for resilience.
"""
# Locators
@property
def projects_list(self) -> Locator:
"""Project list/grid locator."""
return self.page.get_by_test_id("projects-list")
@property
def project_cards(self) -> Locator:
"""Individual project card locators."""
return self.page.get_by_test_id("project-card")
@property
def create_project_button(self) -> Locator:
"""Create project button locator."""
return self.page.get_by_test_id("create-project-button")
@property
def quick_create_button(self) -> Locator:
"""Quick Create button in ProjectCommandCenter."""
return self.page.get_by_test_id("quick-create-button")
@property
def create_modal(self) -> Locator:
"""Create project modal dialog."""
return self.page.get_by_test_id("create-project-modal")
@property
def project_name_input(self) -> Locator:
"""Project name input in create modal."""
return self.page.get_by_test_id("project-name-input")
@property
def project_description_input(self) -> Locator:
"""Project description textarea."""
return self.page.get_by_test_id("project-description-input")
@property
def modal_save_button(self) -> Locator:
"""Save button in create/edit modal."""
return self.page.get_by_test_id("modal-save-button")
@property
def modal_cancel_button(self) -> Locator:
"""Cancel button in create/edit modal."""
return self.page.get_by_test_id("modal-cancel-button")
@property
def delete_confirmation_dialog(self) -> Locator:
"""Delete confirmation dialog."""
return self.page.get_by_test_id("delete-confirmation-dialog")
@property
def confirm_delete_button(self) -> Locator:
"""Confirm delete button."""
return self.page.get_by_test_id("confirm-delete-button")
@property
def cancel_delete_button(self) -> Locator:
"""Cancel delete button."""
return self.page.get_by_test_id("cancel-delete-button")
def is_loaded(self) -> bool:
"""Check if projects page is loaded.
Returns:
bool: True if projects list is visible
Example:
assert projects_page.is_loaded() is True
"""
# Check for Quick Create button as indicator of page load
return self.quick_create_button.is_visible()
def navigate(self) -> None:
"""Navigate to projects dashboard.
Example:
projects_page.navigate()
assert projects_page.is_loaded()
"""
self.page.goto("http://localhost:3001/dashboards/projects")
def get_project_count(self) -> int:
"""Get number of projects displayed.
Returns:
int: Number of project cards visible
Example:
count = projects_page.get_project_count()
assert count > 0
"""
return self.project_cards.count()
def get_project_names(self) -> list[str]:
"""Get list of project names displayed.
Returns:
list[str]: List of project names
Example:
names = projects_page.get_project_names()
assert "My Project" in names
"""
names = []
cards = self.project_cards.all()
for card in cards:
name_el = card.get_by_test_id("project-name")
if name_el.is_visible():
names.append(name_el.text_content())
return names
def open_create_modal(self) -> None:
"""Open create project modal.
Example:
projects_page.open_create_modal()
assert projects_page.create_modal.is_visible()
"""
self.quick_create_button.click()
# Wait for modal animation
self.page.wait_for_timeout(300)
def fill_project_form(self, name: str, description: str = "") -> None:
"""Fill project creation form.
Args:
name: Project name
description: Optional project description
Example:
projects_page.fill_project_form("My Project", "Description")
"""
self.project_name_input.fill(name)
if description:
self.project_description_input.fill(description)
def submit_create_form(self) -> None:
"""Submit create project form.
Example:
projects_page.submit_create_form()
# Project created, modal closes
"""
self.modal_save_button.click()
def create_project(self, name: str, description: str = "") -> None:
"""Complete project creation flow.
Convenience method that combines opening modal,
filling form, and submitting.
Args:
name: Project name
description: Optional project description
Example:
projects_page.create_project("My Project", "Description")
# Project created and visible in list
"""
self.open_create_modal()
self.fill_project_form(name, description)
self.submit_create_form()
def click_project_action(self, project_name: str, action: str) -> None:
"""Click action button on project card.
Args:
project_name: Name of project
action: Action to click (edit, delete, etc.)
Example:
projects_page.click_project_action("My Project", "edit")
"""
# Generate test-id from project name (lowercase, hyphens)
project_id = f"project-{project_name.lower().replace(' ', '-')}"
card = self.page.get_by_test_id(project_id)
card.get_by_test_id(f"{action}-button").click()
def edit_project(self, project_name: str, new_name: str, new_description: str = "") -> None:
"""Edit existing project.
Args:
project_name: Current project name
new_name: New project name
new_description: Optional new description
Example:
projects_page.edit_project("Old Name", "New Name", "New desc")
"""
self.click_project_action(project_name, "edit")
# Wait for edit modal
self.page.wait_for_timeout(300)
# Fill edit form and save
self.project_name_input.fill(new_name)
if new_description:
self.project_description_input.fill(new_description)
self.modal_save_button.click()
def delete_project(self, project_name: str, confirm: bool = True) -> None:
"""Delete project with confirmation.
Args:
project_name: Name of project to delete
confirm: True to confirm deletion, False to cancel
Example:
projects_page.delete_project("My Project", confirm=True)
"""
self.click_project_action(project_name, "delete")
# Wait for confirmation dialog
self.page.wait_for_timeout(300)
if self.delete_confirmation_dialog.is_visible():
if confirm:
self.confirm_delete_button.click()
else:
self.cancel_delete_button.click()
class ExecutionHistoryPage(BasePage):
"""Page Object for Agent Execution History page.
Encapsulates execution history interactions including:
- History list display
- Entry details (timestamp, status, agent name, result)
- Status filtering
- Navigation to session details
Uses data-testid selectors for resilience.
"""
# Locators using data-testid attributes
@property
def history_container(self) -> Locator:
"""History list container locator."""
return self.page.get_by_test_id("execution-history-container")
@property
def history_entry(self) -> Locator:
"""Individual history entry locator."""
return self.page.get_by_test_id("execution-history-entry")
@property
def entry_timestamp(self) -> Locator:
"""Timestamp display locator for history entry."""
return self.page.get_by_test_id("history-entry-timestamp")
@property
def entry_status(self) -> Locator:
"""Status indicator locator (running/completed/failed/blocked)."""
return self.page.get_by_test_id("history-entry-status")
@property
def entry_agent(self) -> Locator:
"""Agent name display locator."""
return self.page.get_by_test_id("history-entry-agent")
@property
def entry_result(self) -> Locator:
"""Result preview text locator."""
return self.page.get_by_test_id("history-entry-result")
@property
def entry_details_link(self) -> Locator:
"""Link to session details page locator."""
return self.page.get_by_test_id("history-entry-details-link")
@property
def filter_status(self) -> Locator:
"""Status filter dropdown locator."""
return self.page.get_by_test_id("history-status-filter")
@property
def empty_history_message(self) -> Locator:
"""Empty state message locator (no history entries)."""
return self.page.get_by_test_id("empty-history-message")
@property
def history_loading_spinner(self) -> Locator:
"""Loading spinner locator while fetching history."""
return self.page.get_by_test_id("history-loading-spinner")
def is_loaded(self) -> bool:
"""Check if execution history page is loaded.
Returns:
bool: True if history container is visible (or empty message shown)
Example:
assert history_page.is_loaded() is True
"""
return (self.history_container.is_visible() or
self.empty_history_message.is_visible())
def navigate(self) -> None:
"""Navigate to execution history page.
Example:
history_page.navigate()
assert history_page.is_loaded()
"""
self.page.goto("http://localhost:3001/execution-history")
# Wait for loading to complete
self.page.wait_for_load_state("networkidle", timeout=5000)
def get_history_count(self) -> int:
"""Count number of history entries visible.
Returns:
int: Number of history entries displayed
Example:
count = history_page.get_history_count()
assert count > 0
"""
if self.empty_history_message.is_visible():
return 0
return self.history_entry.count()
def get_entry_status(self, entry_index: int) -> str:
"""Get status text for a specific history entry.
Args:
entry_index: Zero-based index of history entry
Returns:
str: Status text (e.g., "completed", "failed", "running", "blocked")
Example:
status = history_page.get_entry_status(0)
assert status == "completed"
"""
entries = self.history_entry.all()
if entry_index >= len(entries):
raise IndexError(f"Entry index {entry_index} out of range (count: {len(entries)})")
entry = entries[entry_index]
return entry.get_by_test_id("history-entry-status").text_content()
def get_entry_timestamp(self, entry_index: int) -> str:
"""Get timestamp for a specific history entry.
Args:
entry_index: Zero-based index of history entry
Returns:
str: Timestamp text (ISO format or readable format)
Example:
timestamp = history_page.get_entry_timestamp(0)
assert "2026-02-23" in timestamp
"""
entries = self.history_entry.all()
if entry_index >= len(entries):
raise IndexError(f"Entry index {entry_index} out of range (count: {len(entries)})")
entry = entries[entry_index]
return entry.get_by_test_id("history-entry-timestamp").text_content()
def get_entry_agent(self, entry_index: int) -> str:
"""Get agent name for a specific history entry.
Args:
entry_index: Zero-based index of history entry
Returns:
str: Agent name
Example:
agent = history_page.get_entry_agent(0)
assert agent == "AUTONOMOUS"
"""
entries = self.history_entry.all()
if entry_index >= len(entries):
raise IndexError(f"Entry index {entry_index} out of range (count: {len(entries)})")
entry = entries[entry_index]
return entry.get_by_test_id("history-entry-agent").text_content()
def get_entry_result(self, entry_index: int) -> str:
"""Get result preview text for a specific history entry.
Args:
entry_index: Zero-based index of history entry
Returns:
str: Result preview text (truncated if long)
Example:
result = history_page.get_entry_result(0)
assert "success" in result.lower()
"""
entries = self.history_entry.all()
if entry_index >= len(entries):
raise IndexError(f"Entry index {entry_index} out of range (count: {len(entries)})")
entry = entries[entry_index]
result_el = entry.get_by_test_id("history-entry-result")
if result_el.is_visible():
return result_el.text_content()
return ""
def filter_by_status(self, status: str) -> None:
"""Filter history by execution status.
Args:
status: Status to filter by (e.g., "completed", "failed", "running", "all")
Example:
history_page.filter_by_status("completed")
assert history_page.get_history_count() > 0
"""
self.filter_status.select_option(status.lower())
# Wait for filter to apply
self.page.wait_for_timeout(500)
def get_current_filter(self) -> str:
"""Get currently selected status filter.
Returns:
str: Current filter value
Example:
filter_val = history_page.get_current_filter()
assert filter_val == "completed"
"""
return self.filter_status.input_value()
def click_entry_details(self, entry_index: int) -> None:
"""Click details link to view full session details.
Args:
entry_index: Zero-based index of history entry
Example:
history_page.click_entry_details(0)
# Navigates to session details page
"""
entries = self.history_entry.all()
if entry_index >= len(entries):
raise IndexError(f"Entry index {entry_index} out of range (count: {len(entries)})")
entry = entries[entry_index]
entry.get_by_test_id("history-entry-details-link").click()
def wait_for_history_load(self, timeout: int = 5000) -> None:
"""Wait for execution history to load.
Args:
timeout: Maximum time to wait in milliseconds
Example:
history_page.navigate()
history_page.wait_for_history_load()
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
# Wait for loading spinner to disappear
if self.history_loading_spinner.is_visible():
self.page.wait_for_selector(
'[data-testid="history-loading-spinner"]',
state="hidden",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"History did not load within {timeout}ms")
def get_all_entry_statuses(self) -> list[str]:
"""Get status for all history entries.
Returns:
list[str]: List of status values in order
Example:
statuses = history_page.get_all_entry_statuses()
assert "completed" in statuses
"""
if self.empty_history_message.is_visible():
return []
statuses = []
entries = self.history_entry.all()
for entry in entries:
status_el = entry.get_by_test_id("history-entry-status")
if status_el.is_visible():
statuses.append(status_el.text_content())
return statuses
def is_empty(self) -> bool:
"""Check if history is empty (no entries).
Returns:
bool: True if empty message is visible
Example:
assert history_page.is_empty() is False
"""
return self.empty_history_message.is_visible()
class CanvasHostPage(BasePage):
"""Page Object for Canvas Host component.
The Canvas Host is an absolute positioned overlay that displays
canvas presentations (charts, markdown, forms, etc.) triggered
by agent actions via WebSocket messages.
Canvas structure (from canvas-host.tsx):
- Container: absolute positioned div (z-50, 600px width)
- Header: title, component type badge, version, close button
- Content: Monaco editor, charts, forms based on component type
- Footer: history button, preview mode toggle, save button
Uses CSS selectors (canvas uses absolute positioning, no data-testid).
"""
# Locators using CSS selectors (canvas is absolute positioned)
@property
def canvas_host(self) -> Locator:
"""Main canvas container (absolute positioned div with z-50)."""
return self.page.locator("div.absolute.top-4.right-4.bottom-4.w-\\[600px\\].bg-white")
@property
def canvas_close_button(self) -> Locator:
"""X button to close canvas (top right of header)."""
return self.page.locator("button:has(svg.lucide-x)")
@property
def canvas_title(self) -> Locator:
"""Canvas title display in header (truncated to max-w-[250px])."""
return self.page.locator("h3.font-semibold.text-sm.truncate")
@property
def canvas_component_badge(self) -> Locator:
"""Component type badge (e.g., 'markdown', 'form', 'chart')."""
return self.page.locator("span.text-\\[8px\\].uppercase")
@property
def canvas_version(self) -> Locator:
"""Version number display (format: 'v{number}')."""
return self.page.locator("span.text-\\[10px\\].font-mono")
@property
def canvas_content(self) -> Locator:
"""Canvas content area (Monaco editor, charts, etc.)."""
return self.page.locator("div.flex-1.overflow-hidden.relative")
@property
def save_button(self) -> Locator:
"""Save changes button (for editable canvases)."""
return self.page.locator("button:has(svg.lucide-save)")
@property
def history_button(self) -> Locator:
"""Version history button."""
return self.page.locator("button:has(svg.lucide-history)")
@property
def preview_mode_button(self) -> Locator:
"""Preview/Edit mode toggle (for markdown documents)."""
return self.page.locator("button:has-text('Preview Mode'), button:has-text('Edit Mode')")
def is_loaded(self) -> bool:
"""Check if canvas host is visible and loaded.
Returns:
bool: True if canvas host container is visible
Example:
assert canvas_page.is_loaded() is True
"""
return self.canvas_host.is_visible()
def get_title(self) -> str:
"""Get canvas title text.
Returns:
str: Canvas title (may be truncated if too long)
Example:
title = canvas_page.get_title()
assert "Sales Data" in title
"""
return self.canvas_title.text_content()
def get_component_type(self) -> str:
"""Get component type badge text.
Returns:
str: Component type (e.g., "markdown", "form", "chart")
Example:
component = canvas_page.get_component_type()
assert component == "markdown"
"""
return self.canvas_component_badge.text_content()
def get_version(self) -> str:
"""Get canvas version number.
Returns:
str: Version string (format: "v{number}")
Example:
version = canvas_page.get_version()
assert version == "v1"
"""
return self.canvas_version.text_content()
def close_canvas(self) -> None:
"""Click close button to hide canvas.
Example:
canvas_page.close_canvas()
assert canvas_page.is_visible() is False
"""
self.canvas_close_button.click()
def is_visible(self) -> bool:
"""Check if canvas is currently displayed.
Returns:
bool: True if canvas host is visible
Example:
if canvas_page.is_visible():
canvas_page.close_canvas()
"""
return self.canvas_host.is_visible()
def wait_for_canvas_visible(self, timeout: int = 5000) -> None:
"""Wait for canvas to appear.
Args:
timeout: Maximum time to wait in milliseconds
Example:
canvas_page.wait_for_canvas_visible(timeout=10000)
assert canvas_page.is_loaded() is True
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
self.page.wait_for_selector(
"div.absolute.top-4.right-4.bottom-0.w-\\[600px\\].bg-white",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Canvas did not appear within {timeout}ms")
def wait_for_canvas_hidden(self, timeout: int = 5000) -> None:
"""Wait for canvas to disappear.
Args:
timeout: Maximum time to wait in milliseconds
Example:
canvas_page.close_canvas()
canvas_page.wait_for_canvas_hidden()
assert canvas_page.is_visible() is False
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
self.page.wait_for_selector(
"div.absolute.top-4.right-4.bottom-0.w-\\[600px\\].bg-white",
state="hidden",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Canvas did not hide within {timeout}ms")
class CanvasChartPage(BasePage):
"""Page Object for Canvas Chart presentations.
Encapsulates chart rendering interactions including:
- Line charts (timestamp/value data with dots)
- Bar charts (category/value data with bars)
- Pie charts (segment data with labels)
- Chart tooltips, legends, and axes
- Recharts-specific SVG selectors
Uses SVG-specific selectors for Recharts components.
"""
# Locators using Recharts-specific CSS selectors
@property
def chart_container(self) -> Locator:
"""Recharts ResponsiveContainer wrapper locator."""
return self.page.locator(".recharts-wrapper").or_(
self.page.locator("[class*=\"recharts\"]")
)
@property
def line_chart_svg(self) -> Locator:
"""SVG element for line charts locator."""
return self.page.locator("svg.recharts-line-chart").or_(
self.page.locator(".recharts-line")
)
@property
def bar_chart_svg(self) -> Locator:
"""SVG element for bar charts locator."""
return self.page.locator("svg.recharts-bar-chart").or_(
self.page.locator(".recharts-bar")
)
@property
def pie_chart_svg(self) -> Locator:
"""SVG element for pie charts locator."""
return self.page.locator("svg.recharts-pie-chart").or_(
self.page.locator(".recharts-pie")
)
@property
def chart_title(self) -> Locator:
"""Chart title element locator (h4 tag)."""
return self.page.locator("h4")
@property
def chart_tooltip(self) -> Locator:
"""Tooltip element locator (visible on hover)."""
return self.page.locator(".recharts-tooltip-wrapper").or_(
self.page.locator(".recharts-tooltip-content")
)
@property
def chart_legend(self) -> Locator:
"""Legend container locator."""
return self.page.locator(".recharts-legend-wrapper").or_(
self.page.locator(".recharts-legend-item")
)
@property
def chart_x_axis(self) -> Locator:
"""XAxis element with labels locator."""
return self.page.locator(".recharts-xAxis").or_(
self.page.locator("text[data-offset]") # Recharts axis labels
)
@property
def chart_y_axis(self) -> Locator:
"""YAxis element with labels locator."""
return self.page.locator(".recharts-yAxis")
@property
def data_points(self) -> Locator:
"""Individual data point elements locator (dots, bars, slices)."""
return self.page.locator(".recharts-dot, .recharts-bar-rectangle, .recharts-pie-sector")
@property
def line_dots(self) -> Locator:
"""Line chart dot elements locator."""
return self.page.locator(".recharts-dot").or_(
self.page.locator("circle.recharts-dot")
)
@property
def bar_rectangles(self) -> Locator:
"""Bar chart rectangle elements locator."""
return self.page.locator(".recharts-bar-rectangle").or_(
self.page.locator("path.recharts-bar")
)
@property
def pie_sectors(self) -> Locator:
"""Pie chart sector elements locator."""
return self.page.locator(".recharts-pie-sector").or_(
self.page.locator("path.recharts-pie")
)
@property
def grid_lines(self) -> Locator:
"""CartesianGrid lines locator."""
return self.page.locator(".recharts-cartesian-grid").or_(
self.page.locator("line.recharts-cartesian-grid-line")
)
@property
def chart_labels(self) -> Locator:
"""Chart labels (for pie charts) locator."""
return self.page.locator("text.recharts-text").or_(
self.page.locator(".recharts-label")
)
def is_loaded(self) -> bool:
"""Check if any chart is visible.
Returns:
bool: True if any chart SVG is visible
Example:
assert chart_page.is_loaded() is True
"""
return (self.line_chart_svg.is_visible() or
self.bar_chart_svg.is_visible() or
self.pie_chart_svg.is_visible())
def get_chart_type(self) -> str:
"""Detect chart type (line, bar, pie).
Returns:
str: Chart type ("line", "bar", "pie", or "unknown")
Example:
chart_type = chart_page.get_chart_type()
assert chart_type == "line"
"""
if self.line_chart_svg.is_visible():
return "line"
elif self.bar_chart_svg.is_visible():
return "bar"
elif self.pie_chart_svg.is_visible():
return "pie"
return "unknown"
def get_title(self) -> str:
"""Get chart title text.
Returns:
str: Chart title or empty string if not found
Example:
title = chart_page.get_title()
assert "Sales" in title
"""
if self.chart_title.is_visible():
return self.chart_title.text_content()
return ""
def get_data_point_count(self) -> int:
"""Count visible data points.
Returns:
int: Number of visible data points
Example:
count = chart_page.get_data_point_count()
assert count == 5
"""
chart_type = self.get_chart_type()
if chart_type == "line":
return self.line_dots.count()
elif chart_type == "bar":
return self.bar_rectangles.count()
elif chart_type == "pie":
return self.pie_sectors.count()
return 0
def get_x_axis_label(self) -> str:
"""Get X axis label text.
Returns:
str: X axis label or empty string
Example:
label = chart_page.get_x_axis_label()
assert "Time" in label
"""
# X-axis labels are typically text elements in Recharts
labels = self.chart_x_axis.all()
if labels:
# First label is usually the axis name
return labels[0].text_content() if labels[0].is_visible() else ""
return ""
def get_y_axis_label(self) -> str:
"""Get Y axis label text.
Returns:
str: Y axis label or empty string
Example:
label = chart_page.get_y_axis_label()
assert "Value" in label
"""
if self.chart_y_axis.is_visible():
return self.chart_y_axis.text_content()
return ""
def hover_data_point(self, index: int) -> None:
"""Hover over data point to show tooltip.
Args:
index: Zero-based index of data point to hover
Example:
chart_page.hover_data_point(0)
assert chart_page.chart_tooltip.is_visible()
"""
chart_type = self.get_chart_type()
if chart_type == "line":
dots = self.line_dots.all()
if index < len(dots):
dots[index].hover()
elif chart_type == "bar":
bars = self.bar_rectangles.all()
if index < len(bars):
bars[index].hover()
elif chart_type == "pie":
sectors = self.pie_sectors.all()
if index < len(sectors):
sectors[index].hover()
def get_tooltip_text(self) -> str:
"""Get tooltip content if visible.
Returns:
str: Tooltip text or empty string if not visible
Example:
chart_page.hover_data_point(0)
tooltip = chart_page.get_tooltip_text()
assert "100" in tooltip
"""
if self.chart_tooltip.is_visible():
return self.chart_tooltip.text_content()
return ""
def has_legend(self) -> bool:
"""Check if legend is displayed.
Returns:
bool: True if legend is visible
Example:
assert chart_page.has_legend() is True
"""
return self.chart_legend.is_visible()
def get_legend_items(self) -> list[str]:
"""Get legend item labels.
Returns:
list[str]: List of legend item names
Example:
items = chart_page.get_legend_items()
assert "Series 1" in items
"""
items = []
legend_elements = self.chart_legend.all()
for legend in legend_elements:
text = legend.text_content()
if text:
items.append(text)
return items
def get_chart_colors(self) -> list[str]:
"""Extract chart colors from SVG.
Returns:
list[str]: List of color values (stroke, fill)
Example:
colors = chart_page.get_chart_colors()
assert "#8884d8" in colors
"""
colors = []
chart_type = self.get_chart_type()
if chart_type == "line":
# Line charts use stroke
lines = self.page.locator(".recharts-line").all()
for line in lines:
stroke = line.get_attribute("stroke")
if stroke:
colors.append(stroke)
elif chart_type == "bar":
# Bar charts use fill
bars = self.bar_rectangles.all()
for bar in bars:
fill = bar.get_attribute("fill")
if fill:
colors.append(fill)
elif chart_type == "pie":
# Pie charts use fill on sectors
sectors = self.pie_sectors.all()
for sector in sectors:
fill = sector.get_attribute("fill")
if fill:
colors.append(fill)
return colors
def verify_line_chart_data(self, expected_data: list) -> bool:
"""Verify line chart data points match expected values.
Args:
expected_data: List of expected values [value1, value2, ...]
Returns:
bool: True if data point count matches
Example:
assert chart_page.verify_line_chart_data([10, 20, 30])
"""
dot_count = self.line_dots.count()
return dot_count == len(expected_data)
def verify_bar_chart_data(self, expected_data: list) -> bool:
"""Verify bar chart data points match expected values.
Args:
expected_data: List of expected category-value dicts
Returns:
bool: True if bar count matches
Example:
assert chart_page.verify_bar_chart_data([
{"name": "A", "value": 10},
{"name": "B", "value": 20}
])
"""
bar_count = self.bar_rectangles.count()
return bar_count == len(expected_data)
def verify_pie_chart_data(self, expected_data: list) -> bool:
"""Verify pie chart segments match expected values.
Args:
expected_data: List of expected segment-value dicts
Returns:
bool: True if segment count matches
Example:
assert chart_page.verify_pie_chart_data([
{"name": "A", "value": 30},
{"name": "B", "value": 70}
])
"""
sector_count = self.pie_sectors.count()
return sector_count == len(expected_data)
def wait_for_chart_render(self, timeout: int = 3000) -> None:
"""Wait for chart to finish rendering.
Args:
timeout: Maximum time to wait in milliseconds
Example:
chart_page.wait_for_chart_render(timeout=5000)
assert chart_page.is_loaded()
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
# Wait for any chart SVG to be visible
self.page.wait_for_selector(
".recharts-wrapper, .recharts-line-chart, .recharts-bar-chart, .recharts-pie-chart",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Chart did not render within {timeout}ms")
def get_pie_labels(self) -> list[str]:
"""Get labels from pie chart segments.
Returns:
list[str]: List of label text from pie segments
Example:
labels = chart_page.get_pie_labels()
assert "Category A: 100" in labels
"""
labels = []
label_elements = self.chart_labels.all()
for label in label_elements:
text = label.text_content()
if text and ":" in text: # Pie labels show "name: value"
labels.append(text)
return labels
class SkillsMarketplacePage(BasePage):
"""Page Object for Skills Marketplace page.
Encapsulates marketplace browsing interactions including:
- Skill search and filtering (query, category, skill_type)
- Skill card display (name, description, category, rating, author)
- Pagination controls (next, prev, page indicator)
- Empty state handling
- Skill installation from marketplace
Uses data-testid selectors for resilience (check frontend for test-id attributes).
Marketplace API:
- GET /api/skills/list with query, category, skill_type, page, page_size params
- SkillMarketplaceService.search_skills() provides PostgreSQL full-text search
- Categories: data_processing, automation, integration, productivity, utilities, developer_tools
- Skill types: prompt_only, python_code, nodejs
- Pagination: default page_size=20
"""
# Locators using data-testid attributes (update when frontend adds test-ids)
@property
def marketplace_container(self) -> Locator:
"""Main marketplace container div."""
return self.page.get_by_test_id("marketplace-container").or_(
self.page.locator("div[class*=\"marketplace\"], div[class*=\"skills-list\"]")
)
@property
def search_input(self) -> Locator:
"""Search text input field locator."""
return self.page.get_by_test_id("marketplace-search-input").or_(
self.page.locator("input[type=\"search\"], input[placeholder*=\"search\" i]")
)
@property
def search_button(self) -> Locator:
"""Search submit button locator."""
return self.page.get_by_test_id("marketplace-search-button").or_(
self.page.locator("button:has-text(\"Search\"), button:has(svg.lucide-search)")
)
@property
def category_filter(self) -> Locator:
"""Category dropdown/selector locator."""
return self.page.get_by_test_id("marketplace-category-filter").or_(
self.page.locator("select[name=\"category\"], select[placeholder*=\"category\" i]")
)
@property
def skill_type_filter(self) -> Locator:
"""Skill type filter locator (prompt_only, python_code)."""
return self.page.get_by_test_id("marketplace-skill-type-filter").or_(
self.page.locator("select[name=\"skill_type\"], select[placeholder*=\"type\" i]")
)
@property
def skill_cards(self) -> Locator:
"""Individual skill card elements locator."""
return self.page.get_by_test_id("skill-card").or_(
self.page.locator("div[class*=\"skill-card\"], div[class*=\"skill-item\"]")
)
@property
def skill_card_name(self) -> Locator:
"""Skill name display on card locator."""
return self.page.get_by_test_id("skill-card-name").or_(
self.page.locator("h3[class*=\"skill-name\"], h4[class*=\"skill-name\"]")
)
@property
def skill_card_description(self) -> Locator:
"""Skill description text locator."""
return self.page.get_by_test_id("skill-card-description").or_(
self.page.locator("p[class*=\"skill-description\"]")
)
@property
def skill_card_category(self) -> Locator:
"""Category badge on card locator."""
return self.page.get_by_test_id("skill-card-category").or_(
self.page.locator("span[class*=\"category\"], span[class*=\"badge\"]")
)
@property
def skill_card_rating(self) -> Locator:
"""Star rating display locator."""
return self.page.get_by_test_id("skill-card-rating").or_(
self.page.locator("div[class*=\"rating\"], span[class*=\"star\"]")
)
@property
def skill_card_author(self) -> Locator:
"""Author name display locator."""
return self.page.get_by_test_id("skill-card-author").or_(
self.page.locator("span[class*=\"author\"], p[class*=\"author\"]")
)
@property
def skill_card_install_button(self) -> Locator:
"""Install button on skill card locator."""
return self.page.get_by_test_id("skill-card-install-button").or_(
self.page.locator("button:has-text(\"Install\"), button:has(svg.lucide-download)")
)
@property
def pagination_container(self) -> Locator:
"""Pagination controls container locator."""
return self.page.get_by_test_id("marketplace-pagination").or_(
self.page.locator("div[class*=\"pagination\"], nav[class*=\"pagination\"]")
)
@property
def next_page_button(self) -> Locator:
"""Next page button locator."""
return self.page.get_by_test_id("marketplace-next-page").or_(
self.page.locator("button[aria-label=\"Next\"], button:has-text(\"Next\"), button:has(svg.lucide-chevron-right)")
)
@property
def prev_page_button(self) -> Locator:
"""Previous page button locator."""
return self.page.get_by_test_id("marketplace-prev-page").or_(
self.page.locator("button[aria-label=\"Previous\"], button:has-text(\"Prev\"), button:has(svg.lucide-chevron-left)")
)
@property
def page_indicator(self) -> Locator:
"""Current page indicator locator."""
return self.page.get_by_test_id("marketplace-page-indicator").or_(
self.page.locator("span[class*=\"page-indicator\"], span[class*=\"current-page\"]")
)
@property
def empty_state(self) -> Locator:
"""Empty state message locator (when no skills found)."""
return self.page.get_by_test_id("marketplace-empty-state").or_(
self.page.locator("div[class*=\"empty\"], div[class*=\"no-results\"]")
)
@property
def loading_spinner(self) -> Locator:
"""Loading state indicator locator."""
return self.page.get_by_test_id("marketplace-loading").or_(
self.page.locator("div[class*=\"loading\"], div[class*=\"spinner\"], span[class*=\"loading\"]")
)
def is_loaded(self) -> bool:
"""Check if marketplace page is loaded and visible.
Returns:
bool: True if marketplace container is visible
Example:
assert marketplace.is_loaded() is True
"""
return (self.marketplace_container.is_visible() or
self.empty_state.is_visible())
def navigate(self) -> None:
"""Navigate to skills marketplace page.
Example:
marketplace.navigate()
assert marketplace.is_loaded()
"""
self.page.goto("http://localhost:3001/marketplace")
def search(self, query: str) -> None:
"""Enter search query and submit.
Args:
query: Search query text
Example:
marketplace.search("data processing")
# Search results updated
"""
self.search_input.fill(query)
if self.search_button.is_visible():
self.search_button.click()
else:
# Trigger search via Enter key if no button
self.search_input.press("Enter")
def select_category(self, category: str) -> None:
"""Select category filter.
Args:
category: Category name (e.g., "data_processing", "automation")
Example:
marketplace.select_category("data_processing")
"""
if self.category_filter.is_visible():
self.category_filter.select_option(category)
def select_skill_type(self, skill_type: str) -> None:
"""Select skill type filter.
Args:
skill_type: Skill type ("prompt_only", "python_code", "nodejs")
Example:
marketplace.select_skill_type("python_code")
"""
if self.skill_type_filter.is_visible():
self.skill_type_filter.select_option(skill_type)
def get_skill_count(self) -> int:
"""Get number of skill cards displayed.
Returns:
int: Number of skill cards visible (0 if empty state shown)
Example:
count = marketplace.get_skill_count()
assert count > 0
"""
if self.is_empty_state_visible():
return 0
return self.skill_cards.count()
def get_skill_names(self) -> list[str]:
"""Get list of displayed skill names.
Returns:
list[str]: List of skill names in order
Example:
names = marketplace.get_skill_names()
assert "DataProcessor" in names
"""
names = []
cards = self.skill_cards.all()
for card in cards:
name_el = card.locator("h3, h4").first
if name_el.is_visible():
names.append(name_el.text_content())
return names
def get_skill_card_info(self, index: int) -> dict:
"""Get skill details at specific index.
Args:
index: Zero-based index of skill card
Returns:
dict: Skill details (name, description, category, rating, author)
Example:
info = marketplace.get_skill_card_info(0)
assert info["category"] == "data_processing"
"""
cards = self.skill_cards.all()
if index >= len(cards):
raise IndexError(f"Skill index {index} out of range (count: {len(cards)})")
card = cards[index]
# Extract skill information from card
info = {}
# Name
name_el = card.locator("h3, h4").first
if name_el.is_visible():
info["name"] = name_el.text_content()
# Description
desc_el = card.locator("p[class*=\"description\"], p").first
if desc_el.is_visible():
info["description"] = desc_el.text_content()
# Category (from badge)
category_el = card.locator("span[class*=\"category\"], span[class*=\"badge\"]").first
if category_el.is_visible():
info["category"] = category_el.text_content()
# Rating (extract from stars or text)
rating_el = card.locator("div[class*=\"rating\"], span[class*=\"rating\"]").first
if rating_el.is_visible():
info["rating"] = rating_el.text_content()
# Author
author_el = card.locator("span[class*=\"author\"], p[class*=\"author\"]").first
if author_el.is_visible():
info["author"] = author_el.text_content()
return info
def click_skill_install(self, index: int) -> None:
"""Click install button on skill card.
Args:
index: Zero-based index of skill card
Example:
marketplace.click_skill_install(0)
# Installation started
"""
cards = self.skill_cards.all()
if index >= len(cards):
raise IndexError(f"Skill index {index} out of range (count: {len(cards)})")
card = cards[index]
install_btn = card.locator("button:has-text(\"Install\"), button:has(svg.lucide-download)").first
if install_btn.is_visible():
install_btn.click()
def click_next_page(self) -> None:
"""Navigate to next page.
Example:
marketplace.click_next_page()
# Moved to next page of results
"""
if self.next_page_button.is_visible() and not self.next_page_button.is_disabled():
self.next_page_button.click()
def click_prev_page(self) -> None:
"""Navigate to previous page.
Example:
marketplace.click_prev_page()
# Moved to previous page of results
"""
if self.prev_page_button.is_visible() and not self.prev_page_button.is_disabled():
self.prev_page_button.click()
def get_current_page(self) -> int:
"""Get current page number.
Returns:
int: Current page number (1-based)
Example:
page = marketplace.get_current_page()
assert page == 1
"""
if self.page_indicator.is_visible():
text = self.page_indicator.text_content()
# Extract page number from text like "Page 1 of 5" or "1 / 5"
import re
match = re.search(r"\d+", text)
if match:
return int(match.group())
return 1 # Default to page 1
def is_empty_state_visible(self) -> bool:
"""Check if empty state is shown.
Returns:
bool: True if empty state message is visible
Example:
assert marketplace.is_empty_state_visible() is True
"""
return self.empty_state.is_visible()
def wait_for_skills_load(self, timeout: int = 5000) -> None:
"""Wait for skill cards to load.
Args:
timeout: Maximum time to wait in milliseconds
Example:
marketplace.navigate()
marketplace.wait_for_skills_load(timeout=10000)
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
# Wait for loading spinner to disappear and skills to appear
if self.loading_spinner.is_visible():
self.page.wait_for_selector(
"div[class*=\"loading\"], div[class*=\"spinner\"]",
state="hidden",
timeout=timeout
)
# Wait for skill cards or empty state
self.page.wait_for_selector(
"div[class*=\"skill-card\"], div[class*=\"empty\"], div[class*=\"no-results\"]",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Skills did not load within {timeout}ms")
class CanvasFormPage(BasePage):
"""Page Object for Canvas Form presentations.
Encapsulates form interaction within canvas including:
- Form field rendering (text, email, number, select, checkbox)
- Field validation (required, pattern, min/max)
- Form submission and success/error feedback
- Form state API access (window.atom.canvas.getState)
Uses name attribute selectors for fields (most reliable).
Form validation behavior:
- Required fields show asterisk (*) and error if empty
- Pattern validation uses regex (e.g., email format)
- Number fields validate min/max values
- Errors display with AlertCircle icon below field
- Submit button disables during submission ("Submitting...")
- Success message shows with Check icon after submission
"""
# Locators using CSS selectors and name attributes
@property
def form_container(self) -> Locator:
"""Form container div (within canvas content)."""
return self.page.locator("form.space-y-4")
@property
def form_title(self) -> Locator:
"""Form title element (h3 tag)."""
return self.page.locator("h3.text-sm.font-semibold")
@property
def form_field(self) -> Locator:
"""Generic form field locator (use with filter)."""
return self.page.locator("input, select")
@property
def form_input_text(self) -> Locator:
"""Text input field locator."""
return self.page.locator("input[type=\"text\"]")
@property
def form_input_email(self) -> Locator:
"""Email input field locator."""
return self.page.locator("input[type=\"email\"]")
@property
def form_input_number(self) -> Locator:
"""Number input field locator."""
return self.page.locator("input[type=\"number\"]")
@property
def form_select(self) -> Locator:
"""Select dropdown field locator."""
return self.page.locator("select")
@property
def form_checkbox(self) -> Locator:
"""Checkbox field locator."""
return self.page.locator("input[type=\"checkbox\"]")
@property
def form_submit_button(self) -> Locator:
"""Submit button locator."""
return self.page.locator("button[type=\"submit\"]")
@property
def form_error_message(self) -> Locator:
"""Field-level error message (with AlertCircle icon)."""
return self.page.locator("div.flex.items-center.text-xs.text-red-500")
@property
def form_success_message(self) -> Locator:
"""Success message (with Check icon)."""
return self.page.locator("div.flex.items-center.justify-center.p-8.text-green-600")
@property
def form_label(self) -> Locator:
"""Field label element locator."""
return self.page.locator("label.text-xs.font-medium")
@property
def required_indicator(self) -> Locator:
"""Required field asterisk (*) indicator."""
return self.page.locator("span.text-red-500.ml-1")
def is_loaded(self) -> bool:
"""Check if form is visible and loaded.
Returns:
bool: True if form container is visible
Example:
assert form_page.is_loaded() is True
"""
return self.form_container.is_visible()
def get_title(self) -> str:
"""Get form title text.
Returns:
str: Form title or empty string if not found
Example:
title = form_page.get_title()
assert "User Information" in title
"""
if self.form_title.is_visible():
return self.form_title.text_content()
return ""
def get_field_count(self) -> int:
"""Count total form fields.
Returns:
int: Number of form fields (inputs, selects, checkboxes)
Example:
count = form_page.get_field_count()
assert count == 5
"""
return self.form_field.count()
def fill_text_field(self, name: str, value: str) -> None:
"""Fill a text input field by name attribute.
Args:
name: Field name attribute value
value: Text value to enter
Example:
form_page.fill_text_field("full_name", "John Doe")
"""
field = self.page.locator(f"input[name=\"{name}\"][type=\"text\"]")
field.fill(value)
def fill_email_field(self, name: str, value: str) -> None:
"""Fill an email input field by name attribute.
Args:
name: Field name attribute value
value: Email address to enter
Example:
form_page.fill_email_field("email", "user@example.com")
"""
field = self.page.locator(f"input[name=\"{name}\"][type=\"email\"]")
field.fill(value)
def fill_number_field(self, name: str, value: float) -> None:
"""Fill a number input field by name attribute.
Args:
name: Field name attribute value
value: Numeric value to enter
Example:
form_page.fill_number_field("age", 25)
"""
field = self.page.locator(f"input[name=\"{name}\"][type=\"number\"]")
field.fill(str(value))
def select_option(self, name: str, value: str) -> None:
"""Select an option from dropdown by name attribute.
Args:
name: Field name attribute value
value: Option value to select
Example:
form_page.select_option("country", "US")
"""
dropdown = self.page.locator(f"select[name=\"{name}\"]")
dropdown.select_option(value)
def set_checkbox(self, name: str, checked: bool) -> None:
"""Set checkbox state by name attribute.
Args:
name: Field name attribute value
checked: True to check, False to uncheck
Example:
form_page.set_checkbox("agree_terms", True)
"""
checkbox = self.page.locator(f"input[name=\"{name}\"][type=\"checkbox\"]")
if checked:
checkbox.check()
else:
checkbox.uncheck()
def get_field_value(self, name: str) -> str:
"""Get current value of a field by name attribute.
Args:
name: Field name attribute value
Returns:
str: Current field value (empty string if not found)
Example:
value = form_page.get_field_value("email")
assert "@" in value
"""
# Try input fields first
input_field = self.page.locator(f"input[name=\"{name}\"]")
if input_field.is_visible():
return input_field.input_value()
# Try select fields
select_field = self.page.locator(f"select[name=\"{name}\"]")
if select_field.is_visible():
return select_field.input_value()
# Try checkbox fields
checkbox = self.page.locator(f"input[name=\"{name}\"][type=\"checkbox\"]")
if checkbox.is_visible():
return "checked" if checkbox.is_checked() else "unchecked"
return ""
def get_field_error(self, name: str) -> str:
"""Get error message for a specific field.
Args:
name: Field name attribute value
Returns:
str: Error message or empty string if no error
Example:
error = form_page.get_field_error("email")
assert "invalid" in error.lower()
"""
# Find the field's parent container
field = self.page.locator(f"input[name=\"{name}\"], select[name=\"{name}\"]")
if field.is_visible():
# Look for error message in same container
container = field.locator("xpath=../..")
error_el = container.locator("div.flex.items-center.text-xs.text-red-500")
if error_el.is_visible():
return error_el.text_content()
return ""
def has_field_error(self, name: str) -> bool:
"""Check if a field has validation error.
Args:
name: Field name attribute value
Returns:
bool: True if field has error message visible
Example:
assert form_page.has_field_error("email") is True
"""
return len(self.get_field_error(name)) > 0
def click_submit(self) -> None:
"""Click form submit button.
Example:
form_page.fill_text_field("name", "John")
form_page.click_submit()
"""
self.form_submit_button.click()
def is_submit_enabled(self) -> bool:
"""Check if submit button is enabled.
Returns:
bool: True if submit button is not disabled
Example:
assert form_page.is_submit_enabled() is True
"""
return not self.form_submit_button.is_disabled()
def is_submitting(self) -> bool:
"""Check if form is currently submitting.
Returns:
bool: True if button shows "Submitting..." text
Example:
form_page.click_submit()
assert form_page.is_submitting() is True
"""
button_text = self.form_submit_button.text_content()
return "Submitting..." in button_text if button_text else False
def is_success_message_visible(self) -> bool:
"""Check if success message is displayed.
Returns:
bool: True if success message with Check icon is visible
Example:
form_page.wait_for_submission()
assert form_page.is_success_message_visible() is True
"""
return self.form_success_message.is_visible()
def get_success_message(self) -> str:
"""Get success message text.
Returns:
str: Success message text or empty string
Example:
msg = form_page.get_success_message()
assert "submitted successfully" in msg.lower()
"""
if self.form_success_message.is_visible():
return self.form_success_message.text_content()
return ""
def wait_for_submission(self, timeout: int = 5000) -> None:
"""Wait for form submission to complete (success or error).
Args:
timeout: Maximum time to wait in milliseconds
Example:
form_page.click_submit()
form_page.wait_for_submission(timeout=10000)
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
# Wait for either success message or submit button to re-enable
self.page.wait_for_selector(
"div.flex.items-center.justify-center.p-8.text-green-600, "
"button[type=\"submit\"]:not([disabled])",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Form submission did not complete within {timeout}ms")
def get_form_data(self) -> dict:
"""Extract current form data from all fields.
Returns:
dict: Form field names and current values
Example:
data = form_page.get_form_data()
assert data["email"] == "user@example.com"
"""
data = {}
all_fields = self.form_field.all()
for field in all_fields:
name = field.get_attribute("name")
if not name:
continue
field_type = field.get_attribute("type")
if field_type == "checkbox":
data[name] = field.is_checked()
elif field_type == "number":
value = field.input_value()
data[name] = float(value) if value else None
else:
data[name] = field.input_value()
return data
def is_field_required(self, name: str) -> bool:
"""Check if field has required indicator (asterisk).
Args:
name: Field name attribute value
Returns:
bool: True if field has required asterisk
Example:
assert form_page.is_field_required("email") is True
"""
field = self.page.locator(f"input[name=\"{name}\"], select[name=\"{name}\"]")
if field.is_visible():
# Look for required asterisk in label container
container = field.locator("xpath=../..")
asterisk = container.locator("span.text-red-500.ml-1")
return asterisk.is_visible()
return False
def get_field_label(self, name: str) -> str:
"""Get label text for a field.
Args:
name: Field name attribute value
Returns:
str: Field label text or empty string
Example:
label = form_page.get_field_label("email")
assert label == "Email Address"
"""
field = self.page.locator(f"input[name=\"{name}\"], select[name=\"{name}\"]")
if field.is_visible():
# Get label text from parent container
container = field.locator("xpath=../..")
label_el = container.locator("label.text-xs.font-medium")
if label_el.is_visible():
label_text = label_el.text_content()
# Remove asterisk if present
if label_text and "*" in label_text:
return label_text.replace("*", "").strip()
return label_text
return ""
class SkillInstallationPage(BasePage):
"""Page Object for Skill Installation workflow.
Encapsulates skill installation interactions including:
- Install button states (Install, Installing..., Installed)
- Installation modal/dialog flow
- Security scan results display
- Installed skills list
- Uninstall functionality
- Governance enforcement for agent maturity levels
Uses data-testid selectors for resilience where available,
falls back to CSS selectors for skill marketplace UI.
Installation flow:
1. Browse marketplace for available skills
2. Click install button on skill card
3. View security scan results (if applicable)
4. Confirm installation in modal
5. Wait for installation to complete
6. Verify skill appears in installed list
Governance behavior:
- STUDENT agents: Blocked from installing Python skills (security risk)
- INTERN agents: Can install prompt_only skills, approval for Python skills
- SUPERVISED+ agents: Can install any Active skill
"""
# Locators using data-testid and CSS selectors
@property
def install_button(self) -> Locator:
"""Install button on skill card or page."""
return self.page.get_by_test_id("skill-install-button").or_(
self.page.locator("button:has-text('Install'), button:has-text('Install Skill')")
)
@property
def install_button_loading(self) -> Locator:
"""Loading state of install button."""
return self.page.get_by_test_id("skill-install-button-loading").or_(
self.page.locator("button:has-text('Installing...'), button:disabled:has-text('Install')")
)
@property
def install_button_installed(self) -> Locator:
"""Installed state button (disabled, shows 'Installed')."""
return self.page.get_by_test_id("skill-install-button-installed").or_(
self.page.locator("button:has-text('Installed'):disabled, button.installed")
)
@property
def installation_modal(self) -> Locator:
"""Installation confirmation modal dialog."""
return self.page.get_by_test_id("skill-installation-modal").or_(
self.page.locator("div[role=\"dialog\"]:has-text('Install Skill')")
)
@property
def security_scan_banner(self) -> Locator:
"""Security scan results display banner."""
return self.page.get_by_test_id("security-scan-banner").or_(
self.page.locator("div[class*=\"security\"], div[class*=\"scan-result\"]")
)
@property
def security_scan_safe(self) -> Locator:
"""Safe/unsafe indicator in security scan."""
return self.page.get_by_test_id("security-scan-safe").or_(
self.page.locator("span:has-text('Safe'), span:has-text('Unsafe'), .safe-indicator, .unsafe-indicator")
)
@property
def security_scan_findings(self) -> Locator:
"""List of security scan findings."""
return self.page.get_by_test_id("security-scan-findings").or_(
self.page.locator("ul[class*=\"findings\"], .security-findings-list")
)
@property
def confirm_install_button(self) -> Locator:
"""Confirm install button in modal."""
return self.page.get_by_test_id("confirm-install-button").or_(
self.page.locator("button:has-text('Confirm'), button:has-text('Install Now')")
)
@property
def cancel_install_button(self) -> Locator:
"""Cancel install button in modal."""
return self.page.get_by_test_id("cancel-install-button").or_(
self.page.locator("button:has-text('Cancel')")
)
@property
def installed_skills_list(self) -> Locator:
"""List/grid of installed skills."""
return self.page.get_by_test_id("installed-skills-list").or_(
self.page.locator("div[class*=\"installed-skills\"], .skills-grid.installed")
)
@property
def installed_skill_card(self) -> Locator:
"""Individual installed skill card."""
return self.page.get_by_test_id("installed-skill-card").or_(
self.page.locator("div[class*=\"skill-card.installed\"]")
)
@property
def uninstall_button(self) -> Locator:
"""Uninstall button on installed skill card."""
return self.page.get_by_test_id("uninstall-button").or_(
self.page.locator("button:has-text('Uninstall'), button:has-text('Remove')")
)
@property
def uninstall_button_loading(self) -> Locator:
"""Loading state of uninstall button."""
return self.page.get_by_test_id("uninstall-button-loading").or_(
self.page.locator("button:has-text('Uninstalling...'), button:disabled:has-text('Uninstall')")
)
@property
def uninstall_confirmation_modal(self) -> Locator:
"""Uninstall confirmation dialog."""
return self.page.get_by_test_id("uninstall-confirmation-modal").or_(
self.page.locator("div[role=\"dialog\"]:has-text('Uninstall Skill'), div[role=\"dialog\"]:has-text('Remove Skill')")
)
@property
def uninstall_skill_name(self) -> Locator:
"""Skill name in confirmation dialog."""
return self.page.get_by_test_id("uninstall-skill-name").or_(
self.page.locator(".uninstall-skill-name, [class*=\"uninstall\"] h2, [class*=\"uninstall\"] h3")
)
@property
def uninstall_warning_message(self) -> Locator:
"""Warning message about data loss."""
return self.page.get_by_test_id("uninstall-warning-message").or_(
self.page.locator("p:has-text('data loss'), p:has-text('configuration'), .uninstall-warning")
)
@property
def confirm_uninstall_button(self) -> Locator:
"""Confirm uninstall button."""
return self.page.get_by_test_id("confirm-uninstall-button").or_(
self.page.locator("button:has-text('Confirm'), button:has-text('Uninstall'), button:has-text('Remove')")
)
@property
def cancel_uninstall_button(self) -> Locator:
"""Cancel uninstall button."""
return self.page.get_by_test_id("cancel-uninstall-button").or_(
self.page.locator("button:has-text('Cancel'), button:has-text('Keep')")
)
@property
def uninstall_success_message(self) -> Locator:
"""Success message after uninstall."""
return self.page.get_by_test_id("uninstall-success-message").or_(
self.page.locator("div[class*=\"success\"]:has-text('uninstalled'), div[class*=\"success\"]:has-text('removed'), .toast.success")
)
@property
def uninstall_error_message(self) -> Locator:
"""Error message if uninstall fails."""
return self.page.get_by_test_id("uninstall-error-message").or_(
self.page.locator("div[class*=\"error\"]:has-text('uninstall'), div[class*=\"error\"]:has-text('remove'), .toast.error")
)
@property
def active_execution_warning(self) -> Locator:
"""Warning about active executions blocking uninstall."""
return self.page.get_by_test_id("active-execution-warning").or_(
self.page.locator("div:has-text('active execution'), div:has-text('currently running'), .execution-warning")
)
@property
def installation_success_message(self) -> Locator:
"""Success toast/message after installation."""
return self.page.get_by_test_id("installation-success-message").or_(
self.page.locator("div[class*=\"success\"]:has-text('installed'), .toast.success")
)
@property
def installation_error_message(self) -> Locator:
"""Error message display for failed installation."""
return self.page.get_by_test_id("installation-error-message").or_(
self.page.locator("div[class*=\"error\"]:has-text('install'), .toast.error")
)
@property
def governance_error_message(self) -> Locator:
"""Governance block error message (e.g., STUDENT agent blocked)."""
return self.page.get_by_test_id("governance-error-message").or_(
self.page.locator("div:has-text('not permitted'), div:has-text('blocked'), div:has-text('maturity')")
)
@property
def skill_marketplace_grid(self) -> Locator:
"""Skills marketplace grid/list."""
return self.page.get_by_test_id("skill-marketplace-grid").or_(
self.page.locator("div[class*=\"marketplace\"], .skills-list")
)
@property
def skill_card(self) -> Locator:
"""Individual skill card in marketplace."""
return self.page.get_by_test_id("skill-card").or_(
self.page.locator("div[class*=\"skill-card\"]")
)
@property
def skill_name(self) -> Locator:
"""Skill name display on card."""
return self.page.get_by_test_id("skill-name").or_(
self.page.locator("h3, h4[class*=\"skill-name\"]")
)
@property
def skill_type_badge(self) -> Locator:
"""Skill type badge (prompt_only, python_code, etc.)."""
return self.page.get_by_test_id("skill-type-badge").or_(
self.page.locator("span:has-text('prompt_only'), span:has-text('python_code'), .skill-type")
)
def is_loaded(self) -> bool:
"""Check if skill installation page/modal is visible.
Returns:
bool: True if installation page or marketplace is loaded
Example:
assert skill_install_page.is_loaded() is True
"""
return (self.skill_marketplace_grid.is_visible() or
self.installation_modal.is_visible() or
self.installed_skills_list.is_visible())
def navigate_to_marketplace(self) -> None:
"""Navigate to skills marketplace page.
Example:
skill_install_page.navigate_to_marketplace()
assert skill_install_page.is_loaded()
"""
self.page.goto("http://localhost:3001/skills/marketplace")
def is_installing(self) -> bool:
"""Check if install button is in loading state.
Returns:
bool: True if button shows "Installing..." or is disabled during install
Example:
skill_install_page.click_install_button()
assert skill_install_page.is_installing() is True
"""
return self.install_button_loading.is_visible()
def is_installed(self, skill_name: Optional[str] = None) -> bool:
"""Check if skill shows as installed.
Args:
skill_name: Optional skill name to check in installed list
Returns:
bool: True if install button shows "Installed" or skill in installed list
Example:
assert skill_install_page.is_installed() is True
assert skill_install_page.is_installed("Calculator") is True
"""
# Check button state first
if self.install_button_installed.is_visible():
return True
# Check installed list if skill_name provided
if skill_name:
return self.is_skill_installed(skill_name)
return False
def get_install_button_text(self) -> str:
"""Get current install button text.
Returns:
str: Button text ("Install", "Installing...", or "Installed")
Example:
text = skill_install_page.get_install_button_text()
assert text == "Installed"
"""
if self.install_button_installed.is_visible():
return "Installed"
elif self.install_button_loading.is_visible():
return "Installing..."
elif self.install_button.is_visible():
return self.install_button.text_content() or "Install"
return ""
def click_install_button(self, skill_name: Optional[str] = None) -> None:
"""Click install button on skill card.
Args:
skill_name: Optional skill name to find specific card
Example:
skill_install_page.click_install_button("Calculator")
"""
if skill_name:
# Find specific skill card and click its install button
skill_cards = self.skill_card.all()
for card in skill_cards:
name_el = card.locator("h3, h4, [class*=\"skill-name\"]")
if name_el.is_visible() and skill_name.lower() in name_el.text_content().lower():
card.locator("button:has-text('Install')").click()
return
raise ValueError(f"Skill card not found: {skill_name}")
else:
# Click first available install button
self.install_button.first.click()
def confirm_installation(self) -> None:
"""Confirm install in modal (click confirm button).
Example:
skill_install_page.confirm_installation()
"""
self.confirm_install_button.click()
def cancel_installation(self) -> None:
"""Cancel install in modal (click cancel button).
Example:
skill_install_page.cancel_installation()
"""
self.cancel_install_button.click()
def get_security_scan_result(self) -> Dict[str, Any]:
"""Get security scan info from modal/banner.
Returns:
Dict with keys:
- safe: bool (True if scan passed)
- risk_level: str ("low", "medium", "high")
- findings: list of str (security findings)
Example:
scan = skill_install_page.get_security_scan_result()
assert scan["safe"] is True
"""
result = {
"safe": False,
"risk_level": "unknown",
"findings": []
}
# Check safe/unsafe indicator
if self.security_scan_safe.is_visible():
safe_text = self.security_scan_safe.text_content() or ""
result["safe"] = "safe" in safe_text.lower()
# Get risk level if present
risk_indicators = self.page.locator("span:has-text('Low'), span:has-text('Medium'), span:has-text('High')")
if risk_indicators.is_visible():
risk_text = risk_indicators.text_content() or ""
if "low" in risk_text.lower():
result["risk_level"] = "low"
elif "medium" in risk_text.lower():
result["risk_level"] = "medium"
elif "high" in risk_text.lower():
result["risk_level"] = "high"
# Get findings list
if self.security_scan_findings.is_visible():
findings_items = self.security_scan_findings.locator("li").all()
result["findings"] = [item.text_content() or "" for item in findings_items if item.is_visible()]
return result
def is_security_scan_visible(self) -> bool:
"""Check if security scan banner is shown.
Returns:
bool: True if security scan results are displayed
Example:
assert skill_install_page.is_security_scan_visible() is True
"""
return self.security_scan_banner.is_visible()
def wait_for_installation_complete(self, timeout: int = 10000) -> None:
"""Wait for install to finish (loading state ends).
Args:
timeout: Maximum time to wait in milliseconds
Example:
skill_install_page.click_install_button()
skill_install_page.wait_for_installation_complete(timeout=15000)
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
# Wait for loading state to end
if self.install_button_loading.is_visible():
self.page.wait_for_selector(
"button:disabled:has-text('Installing...'), [data-testid=\"skill-install-button-loading\"]",
state="hidden",
timeout=timeout
)
# Wait for success message or installed button
self.page.wait_for_selector(
"[data-testid=\"installation-success-message\"], "
"button:has-text('Installed'):disabled, "
"[data-testid=\"skill-install-button-installed\"]",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Installation did not complete within {timeout}ms")
def get_installed_skills_count(self) -> int:
"""Get count of installed skills.
Returns:
int: Number of skills in installed list
Example:
count = skill_install_page.get_installed_skills_count()
assert count > 0
"""
if not self.installed_skills_list.is_visible():
return 0
return self.installed_skill_card.count()
def is_skill_installed(self, skill_name: str) -> bool:
"""Check if skill is in installed list.
Args:
skill_name: Name of skill to check
Returns:
bool: True if skill found in installed list
Example:
assert skill_install_page.is_skill_installed("Calculator") is True
"""
if not self.installed_skills_list.is_visible():
return False
skill_cards = self.installed_skill_card.all()
for card in skill_cards:
name_el = card.locator("h3, h4, [class*=\"skill-name\"], [data-testid=\"skill-name\"]")
if name_el.is_visible() and skill_name.lower() in name_el.text_content().lower():
return True
return False
def click_uninstall(self, skill_name: str) -> None:
"""Click uninstall button for specific skill.
Args:
skill_name: Name of skill to uninstall
Example:
skill_install_page.click_uninstall("Calculator")
"""
if not self.installed_skills_list.is_visible():
raise ValueError("Installed skills list not visible")
skill_cards = self.installed_skill_card.all()
for card in skill_cards:
name_el = card.locator("h3, h4, [class*=\"skill-name\"], [data-testid=\"skill-name\"]")
if name_el.is_visible() and skill_name.lower() in name_el.text_content().lower():
card.locator("button:has-text('Uninstall'), [data-testid=\"uninstall-button\"]").click()
return
raise ValueError(f"Installed skill not found: {skill_name}")
def is_uninstalling(self) -> bool:
"""Check if uninstall is in progress.
Returns:
bool: True if uninstall button shows loading state
Example:
skill_install_page.click_uninstall("Calculator")
assert skill_install_page.is_uninstalling() is True
"""
return self.uninstall_button_loading.is_visible()
def is_confirmation_dialog_visible(self) -> bool:
"""Check if uninstall confirmation modal is shown.
Returns:
bool: True if confirmation dialog is visible
Example:
skill_install_page.click_uninstall("Calculator")
assert skill_install_page.is_confirmation_dialog_visible() is True
"""
return self.uninstall_confirmation_modal.is_visible()
def get_confirmation_skill_name(self) -> str:
"""Get skill name from confirmation dialog.
Returns:
str: Skill name displayed in confirmation
Example:
skill_install_page.click_uninstall("Calculator")
name = skill_install_page.get_confirmation_skill_name()
assert "Calculator" in name
"""
if self.uninstall_skill_name.is_visible():
return self.uninstall_skill_name.text_content() or ""
return ""
def get_confirmation_warning(self) -> str:
"""Get warning message text from confirmation dialog.
Returns:
str: Warning message text
Example:
skill_install_page.click_uninstall("Calculator")
warning = skill_install_page.get_confirmation_warning()
assert "configuration" in warning.lower()
"""
if self.uninstall_warning_message.is_visible():
return self.uninstall_warning_message.text_content() or ""
return ""
def confirm_uninstall(self) -> None:
"""Confirm uninstall in dialog.
Example:
skill_install_page.click_uninstall("Calculator")
skill_install_page.confirm_uninstall()
# Skill uninstall proceeds
"""
self.confirm_uninstall_button.click()
def cancel_uninstall(self) -> None:
"""Cancel uninstall in dialog.
Example:
skill_install_page.click_uninstall("Calculator")
skill_install_page.cancel_uninstall()
# Uninstall canceled, skill remains installed
"""
self.cancel_uninstall_button.click()
def wait_for_uninstall_complete(self, timeout: int = 5000) -> None:
"""Wait for uninstall to finish.
Args:
timeout: Maximum time to wait in milliseconds
Example:
skill_install_page.click_uninstall("Calculator")
skill_install_page.confirm_uninstall()
skill_install_page.wait_for_uninstall_complete(timeout=10000)
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
# Wait for loading state to end
if self.uninstall_button_loading.is_visible():
self.page.wait_for_selector(
"button:disabled:has-text('Uninstalling...'), [data-testid=\"uninstall-button-loading\"]",
state="hidden",
timeout=timeout
)
# Wait for success message or skill to be removed
self.page.wait_for_selector(
"[data-testid=\"uninstall-success-message\"], "
"div[class*=\"success\"]:has-text('uninstalled')",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Uninstall did not complete within {timeout}ms")
def is_skill_uninstalled(self, skill_name: str) -> bool:
"""Check if skill has been removed from installed list.
Args:
skill_name: Name of skill to check
Returns:
bool: True if skill is NOT in installed list (removed)
Example:
skill_install_page.click_uninstall("Calculator")
skill_install_page.confirm_uninstall()
skill_install_page.wait_for_uninstall_complete()
assert skill_install_page.is_skill_uninstalled("Calculator") is True
"""
return not self.is_skill_installed(skill_name)
def get_uninstall_error(self) -> str:
"""Get uninstall error message if present.
Returns:
str: Error message text or empty string
Example:
skill_install_page.click_uninstall("Calculator")
skill_install_page.confirm_uninstall()
error = skill_install_page.get_uninstall_error()
if error:
assert "active execution" in error.lower()
"""
if self.uninstall_error_message.is_visible():
return self.uninstall_error_message.text_content() or ""
return ""
def has_active_execution_warning(self) -> bool:
"""Check if active execution warning is shown.
Returns:
bool: True if active execution warning is visible
Example:
skill_install_page.click_uninstall("Calculator")
assert skill_install_page.has_active_execution_warning() is True
"""
return self.active_execution_warning.is_visible()
def get_install_message(self) -> str:
"""Get success or error message text.
Returns:
str: Message text or empty string
Example:
skill_install_page.wait_for_installation_complete()
msg = skill_install_page.get_install_message()
assert "installed successfully" in msg.lower()
"""
if self.installation_success_message.is_visible():
return self.installation_success_message.text_content() or ""
elif self.installation_error_message.is_visible():
return self.installation_error_message.text_content() or ""
elif self.governance_error_message.is_visible():
return self.governance_error_message.text_content() or ""
return ""
def wait_for_marketplace_load(self, timeout: int = 5000) -> None:
"""Wait for skills marketplace to load.
Args:
timeout: Maximum time to wait in milliseconds
Example:
skill_install_page.navigate_to_marketplace()
skill_install_page.wait_for_marketplace_load()
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
self.page.wait_for_selector(
"[data-testid=\"skill-marketplace-grid\"], "
"div[class*=\"marketplace\"], "
"[data-testid=\"skill-card\"]",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Marketplace did not load within {timeout}ms")
def get_skill_count_in_marketplace(self) -> int:
"""Get number of skills visible in marketplace.
Returns:
int: Number of skill cards
Example:
count = skill_install_page.get_skill_count_in_marketplace()
assert count > 0
"""
return self.skill_card.count()
def get_skill_names_in_marketplace(self) -> list[str]:
"""Get list of skill names visible in marketplace.
Returns:
list[str]: List of skill names
Example:
names = skill_install_page.get_skill_names_in_marketplace()
assert "Calculator" in names
"""
names = []
skill_cards = self.skill_card.all()
for card in skill_cards:
name_el = card.locator("h3, h4, [data-testid=\"skill-name\"]")
if name_el.is_visible():
name = name_el.text_content()
if name:
names.append(name)
return names
def is_governance_blocked(self) -> bool:
"""Check if installation is blocked by governance.
Returns:
bool: True if governance error message is visible
Example:
skill_install_page.click_install_button()
assert skill_install_page.is_governance_blocked() is True
"""
return self.governance_error_message.is_visible()
class SkillExecutionPage(BasePage):
"""Page Object for Skill Execution interface.
Encapsulates skill execution workflow including:
- Execution modal/page interface
- Input parameter configuration
- Progress tracking for long-running skills
- Output display (text, JSON, canvas)
- Error handling and retry
- Execution history
Uses data-testid selectors for resilience.
"""
# Locators
@property
def execution_modal(self) -> Locator:
"""Execution modal/dialog locator."""
return self.page.get_by_test_id("skill-execution-modal")
@property
def execute_button(self) -> Locator:
"""Execute skill button (on card or page)."""
return self.page.get_by_test_id("execute-skill-button")
@property
def execute_button_loading(self) -> Locator:
"""Loading state of execute button."""
return self.page.get_by_test_id("execute-skill-button").locator("[data-loading=\"true\"]")
@property
def input_parameter_section(self) -> Locator:
"""Input parameters form section."""
return self.page.get_by_test_id("input-parameter-section")
@property
def input_field(self) -> Locator:
"""Generic input parameter field locator."""
return self.page.locator("[data-testid^=\"input-param-\"]")
@property
def run_execution_button(self) -> Locator:
"""Confirm/run execution button."""
return self.page.get_by_test_id("run-execution-button")
@property
def progress_indicator(self) -> Locator:
"""Progress/spinner during execution."""
return self.page.get_by_test_id("execution-progress-indicator")
@property
def progress_bar(self) -> Locator:
"""Progress bar for long-running skills."""
return self.page.get_by_test_id("execution-progress-bar")
@property
def progress_percentage(self) -> Locator:
"""Progress percentage text."""
return self.page.get_by_test_id("execution-progress-percentage")
@property
def output_container(self) -> Locator:
"""Output display container."""
return self.page.get_by_test_id("execution-output-container")
@property
def output_text(self) -> Locator:
"""Plain text output locator."""
return self.page.get_by_test_id("execution-output-text")
@property
def output_json(self) -> Locator:
"""JSON formatted output locator."""
return self.page.get_by_test_id("execution-output-json")
@property
def output_canvas(self) -> Locator:
"""Canvas presentation output locator."""
return self.page.get_by_test_id("canvas-host")
@property
def execution_success_message(self) -> Locator:
"""Success message after execution."""
return self.page.get_by_test_id("execution-success-message")
@property
def execution_error_message(self) -> Locator:
"""Error message display locator."""
return self.page.get_by_test_id("execution-error-message")
@property
def error_suggestion(self) -> Locator:
"""Suggested fix for error locator."""
return self.page.get_by_test_id("execution-error-suggestion")
@property
def retry_button(self) -> Locator:
"""Retry execution button locator."""
return self.page.get_by_test_id("execution-retry-button")
@property
def execution_history_list(self) -> Locator:
"""List of past executions locator."""
return self.page.get_by_test_id("execution-history-list")
@property
def history_entry(self) -> Locator:
"""Individual history entry locator."""
return self.page.get_by_test_id("execution-history-entry")
@property
def history_status(self) -> Locator:
"""Status indicator on history entry."""
return self.page.get_by_test_id("history-entry-status")
@property
def history_timestamp(self) -> Locator:
"""Execution timestamp locator."""
return self.page.get_by_test_id("history-entry-timestamp")
@property
def view_result_button(self) -> Locator:
"""View result button in history locator."""
return self.page.get_by_test_id("view-result-button")
@property
def execution_id_display(self) -> Locator:
"""Execution ID display locator."""
return self.page.get_by_test_id("execution-id-display")
@property
def execution_duration(self) -> Locator:
"""Execution duration display locator."""
return self.page.get_by_test_id("execution-duration-display")
def is_loaded(self) -> bool:
"""Check if execution page/modal is visible.
Returns:
bool: True if execution modal or page is loaded
Example:
assert exec_page.is_loaded() is True
"""
return (self.execution_modal.is_visible() or
self.page.locator("[data-testid=\"skill-execution-page\"]").is_visible())
def set_input_param(self, param_name: str, value: str) -> None:
"""Set input parameter value.
Args:
param_name: Name of the parameter
value: Value to set
Example:
exec_page.set_input_param("query", "What is 2+2?")
"""
input_locator = self.page.locator(f"[data-testid=\"input-param-{param_name}\"]")
input_locator.fill(value)
def get_input_param(self, param_name: str) -> str:
"""Get input parameter value.
Args:
param_name: Name of the parameter
Returns:
str: Current value of the parameter
Example:
value = exec_page.get_input_param("query")
assert value == "What is 2+2?"
"""
input_locator = self.page.locator(f"[data-testid=\"input-param-{param_name}\"]")
return input_locator.input_value()
def click_execute(self) -> None:
"""Click execute button.
Example:
exec_page.click_execute()
assert exec_page.is_executing()
"""
self.execute_button.click()
def click_run(self) -> None:
"""Click run/confirm button.
Example:
exec_page.click_run()
exec_page.wait_for_execution_complete()
"""
self.run_execution_button.click()
def is_executing(self) -> bool:
"""Check if execution in progress.
Returns:
bool: True if progress indicator is visible
Example:
exec_page.click_execute()
assert exec_page.is_executing() is True
"""
return self.progress_indicator.is_visible()
def get_progress_percentage(self) -> int:
"""Get progress percentage.
Returns:
int: Progress value from 0-100
Example:
pct = exec_page.get_progress_percentage()
assert 0 <= pct <= 100
"""
if not self.progress_bar.is_visible():
return 100 if not self.is_executing() else 0
pct_text = self.progress_percentage.text_content() or "0"
# Extract number from "75%" or "75%"
import re
match = re.search(r'\d+', pct_text)
return int(match.group()) if match else 0
def wait_for_execution_complete(self, timeout: int = 30000) -> None:
"""Wait for execution to finish.
Args:
timeout: Maximum time to wait in milliseconds
Example:
exec_page.click_run()
exec_page.wait_for_execution_complete(timeout=60000)
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
self.page.wait_for_selector(
'[data-testid="execution-progress-indicator"]',
state="hidden",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Execution did not complete within {timeout}ms")
def get_output_text(self) -> str:
"""Get plain text output.
Returns:
str: Text output content
Example:
output = exec_page.get_output_text()
assert "result" in output.lower()
"""
if self.output_text.is_visible():
return self.output_text.text_content() or ""
return ""
def get_output_json(self) -> dict:
"""Get JSON output as dict.
Returns:
dict: Parsed JSON output
Example:
import json
output = exec_page.get_output_json()
assert "result" in output
"""
import json
if self.output_json.is_visible():
text = self.output_json.text_content() or "{}"
return json.loads(text)
return {}
def is_canvas_output_visible(self) -> bool:
"""Check if canvas output shown.
Returns:
bool: True if canvas_host element is visible
Example:
exec_page.wait_for_execution_complete()
assert exec_page.is_canvas_output_visible() is True
"""
return self.output_canvas.is_visible()
def is_success_message_visible(self) -> bool:
"""Check if success message shown.
Returns:
bool: True if success message is visible
Example:
exec_page.wait_for_execution_complete()
assert exec_page.is_success_message_visible() is True
"""
return self.execution_success_message.is_visible()
def get_error_message(self) -> str:
"""Get error message text.
Returns:
str: Error message content
Example:
error = exec_page.get_error_message()
assert "invalid" in error.lower()
"""
if self.execution_error_message.is_visible():
return self.execution_error_message.text_content() or ""
return ""
def get_error_suggestion(self) -> str:
"""Get suggested fix text.
Returns:
str: Suggestion text
Example:
suggestion = exec_page.get_error_suggestion()
assert "check input" in suggestion.lower()
"""
if self.error_suggestion.is_visible():
return self.error_suggestion.text_content() or ""
return ""
def click_retry(self) -> None:
"""Click retry button.
Example:
exec_page.click_retry()
exec_page.wait_for_execution_complete()
"""
self.retry_button.click()
def get_execution_id(self) -> str:
"""Get execution ID.
Returns:
str: Execution ID from display
Example:
exec_id = exec_page.get_execution_id()
assert len(exec_id) > 0
"""
if self.execution_id_display.is_visible():
return self.execution_id_display.text_content() or ""
return ""
def get_execution_duration(self) -> str:
"""Get execution duration.
Returns:
str: Duration text (e.g., "2.5s")
Example:
duration = exec_page.get_execution_duration()
assert "s" in duration
"""
if self.execution_duration.is_visible():
return self.execution_duration.text_content() or ""
return ""
def get_history_count(self) -> int:
"""Get number of past executions.
Returns:
int: Number of history entries
Example:
count = exec_page.get_history_count()
assert count >= 1
"""
return self.history_entry.count()
def get_history_entry_status(self, index: int) -> str:
"""Get status of history entry.
Args:
index: Zero-based index of history entry
Returns:
str: Status text (e.g., "success", "failed", "running")
Example:
status = exec_page.get_history_entry_status(0)
assert status == "success"
"""
entries = self.history_entry.all()
if index >= len(entries):
raise IndexError(f"History index {index} out of range (count: {len(entries)})")
entry = entries[index]
return entry.get_by_test_id("history-entry-status").text_content()
def click_view_history_result(self, index: int) -> None:
"""View past execution result.
Args:
index: Zero-based index of history entry
Example:
exec_page.click_view_history_result(0)
assert exec_page.is_output_displayed()
"""
entries = self.history_entry.all()
if index >= len(entries):
raise IndexError(f"History index {index} out of range (count: {len(entries)})")
entry = entries[index]
entry.get_by_test_id("view-result-button").click()
def is_output_displayed(self) -> bool:
"""Check if any output shown.
Returns:
bool: True if any output container is visible
Example:
exec_page.wait_for_execution_complete()
assert exec_page.is_output_displayed() is True
"""
return (self.output_text.is_visible() or
self.output_json.is_visible() or
self.output_canvas.is_visible())
class SkillConfigPage(BasePage):
"""Page Object for Skill Configuration page.
Encapsulates skill configuration workflow including:
- API key management (masked display, show/hide toggle)
- Configuration options (boolean toggles, text inputs, number inputs, selects)
- Validation error display
- Save/Reset/Cancel operations
- Configuration persistence
Uses data-testid selectors for resilience.
"""
# Locators
@property
def config_container(self) -> Locator:
"""Main configuration container div."""
return self.page.get_by_test_id("skill-config-container")
@property
def config_form(self) -> Locator:
"""Configuration form element."""
return self.page.get_by_test_id("skill-config-form")
@property
def api_key_section(self) -> Locator:
"""API keys configuration section."""
return self.page.get_by_test_id("api-key-section")
@property
def api_key_input(self) -> Locator:
"""API key text input (password type)."""
return self.page.locator("input[data-testid^='api-key-input']")
@property
def api_key_masked(self) -> Locator:
"""Masked display value for API key."""
return self.page.locator("[data-testid^='api-key-masked']")
@property
def api_key_show_button(self) -> Locator:
"""Toggle visibility button for API key."""
return self.page.locator("button[data-testid^='api-key-show']")
@property
def options_section(self) -> Locator:
"""Options/settings section."""
return self.page.get_by_test_id("options-section")
@property
def boolean_toggle(self) -> Locator:
"""Checkbox/toggle for boolean options."""
return self.page.locator("input[type='checkbox'][data-testid^='config-']")
@property
def text_input(self) -> Locator:
"""Generic text input field."""
return self.page.locator("input[type='text'][data-testid^='config-']")
@property
def number_input(self) -> Locator:
"""Number input field."""
return self.page.locator("input[type='number'][data-testid^='config-']")
@property
def select_dropdown(self) -> Locator:
"""Dropdown select field."""
return self.page.locator("select[data-testid^='config-']")
@property
def text_area(self) -> Locator:
"""Multi-line text area."""
return self.page.locator("textarea[data-testid^='config-']")
@property
def save_button(self) -> Locator:
"""Save configuration button."""
return self.page.get_by_test_id("save-config-button")
@property
def save_button_loading(self) -> Locator:
"""Loading state of save button."""
return self.page.get_by_test_id("save-config-button").locator("[data-loading='true'], .loading")
@property
def reset_button(self) -> Locator:
"""Reset to defaults button."""
return self.page.get_by_test_id("reset-config-button")
@property
def cancel_button(self) -> Locator:
"""Cancel/discard changes button."""
return self.page.get_by_test_id("cancel-config-button")
@property
def validation_error(self) -> Locator:
"""Field validation error message."""
return self.page.locator("[data-testid^='validation-error-']")
@property
def success_message(self) -> Locator:
"""Configuration saved success message."""
return self.page.get_by_test_id("config-success-message")
@property
def config_field_label(self) -> Locator:
"""Field label element."""
return self.page.locator("label[data-testid^='config-label-']")
@property
def config_field_helper(self) -> Locator:
"""Helper text/tooltip for field."""
return self.page.locator("[data-testid^='config-helper-']")
def is_loaded(self) -> bool:
"""Check if config page is visible.
Returns:
bool: True if config container is visible
Example:
assert config_page.is_loaded() is True
"""
return self.config_container.is_visible()
def get_field_count(self) -> int:
"""Get number of config fields.
Returns:
int: Number of configuration fields
Example:
count = config_page.get_field_count()
assert count > 0
"""
return (self.boolean_toggle.count() +
self.text_input.count() +
self.number_input.count() +
self.select_dropdown.count() +
self.text_area.count())
def set_api_key(self, key_name: str, value: str) -> None:
"""Set API key value.
Args:
key_name: Name of the API key field
value: API key value to set
Example:
config_page.set_api_key("openai_api_key", "sk-...")
"""
input_locator = self.page.locator(f"[data-testid='api-key-input-{key_name}']")
input_locator.fill(value)
def get_api_key_value(self, key_name: str) -> str:
"""Get API key value (may be masked).
Args:
key_name: Name of the API key field
Returns:
str: Current API key value (masked if hidden)
Example:
value = config_page.get_api_key_value("openai_api_key")
"""
input_locator = self.page.locator(f"[data-testid='api-key-input-{key_name}']")
return input_locator.input_value()
def show_api_key(self, key_name: str) -> None:
"""Toggle API key visibility.
Args:
key_name: Name of the API key field
Example:
config_page.show_api_key("openai_api_key")
"""
button_locator = self.page.locator(f"[data-testid='api-key-show-{key_name}']")
button_locator.click()
def set_boolean_option(self, option_name: str, value: bool) -> None:
"""Set boolean toggle.
Args:
option_name: Name of the boolean option
value: True to enable, False to disable
Example:
config_page.set_boolean_option("enabled", True)
"""
toggle_locator = self.page.locator(f"[data-testid='config-{option_name}'][type='checkbox']")
current_state = toggle_locator.is_checked()
if current_state != value:
toggle_locator.click()
def get_boolean_option(self, option_name: str) -> bool:
"""Get boolean value.
Args:
option_name: Name of the boolean option
Returns:
bool: Current boolean value
Example:
enabled = config_page.get_boolean_option("enabled")
"""
toggle_locator = self.page.locator(f"[data-testid='config-{option_name}'][type='checkbox']")
return toggle_locator.is_checked()
def set_text_field(self, field_name: str, value: str) -> None:
"""Set text field value.
Args:
field_name: Name of the text field
value: Text value to set
Example:
config_page.set_text_field("endpoint", "https://api.example.com")
"""
input_locator = self.page.locator(f"[data-testid='config-{field_name}'][type='text']")
input_locator.fill(value)
def get_text_field(self, field_name: str) -> str:
"""Get text field value.
Args:
field_name: Name of the text field
Returns:
str: Current text value
Example:
endpoint = config_page.get_text_field("endpoint")
"""
input_locator = self.page.locator(f"[data-testid='config-{field_name}'][type='text']")
return input_locator.input_value()
def set_number_field(self, field_name: str, value: float) -> None:
"""Set number field value.
Args:
field_name: Name of the number field
value: Numeric value to set
Example:
config_page.set_number_field("timeout", 30.0)
"""
input_locator = self.page.locator(f"[data-testid='config-{field_name}'][type='number']")
input_locator.fill(str(value))
def get_number_field(self, field_name: str) -> float:
"""Get number field value.
Args:
field_name: Name of the number field
Returns:
float: Current numeric value
Example:
timeout = config_page.get_number_field("timeout")
"""
input_locator = self.page.locator(f"[data-testid='config-{field_name}'][type='number']")
value = input_locator.input_value()
return float(value) if value else 0.0
def select_option(self, field_name: str, option: str) -> None:
"""Select dropdown option.
Args:
field_name: Name of the select field
option: Option value to select
Example:
config_page.select_option("model", "gpt-4")
"""
select_locator = self.page.locator(f"select[data-testid='config-{field_name}']")
select_locator.select_option(option)
def get_selected_option(self, field_name: str) -> str:
"""Get selected dropdown value.
Args:
field_name: Name of the select field
Returns:
str: Currently selected value
Example:
model = config_page.get_selected_option("model")
"""
select_locator = self.page.locator(f"select[data-testid='config-{field_name}']")
return select_locator.input_value()
def click_save(self) -> None:
"""Click save button.
Example:
config_page.click_save()
config_page.wait_for_save_complete()
"""
self.save_button.click()
def click_reset(self) -> None:
"""Click reset button.
Example:
config_page.click_reset()
"""
self.reset_button.click()
def click_cancel(self) -> None:
"""Click cancel button.
Example:
config_page.click_cancel()
"""
self.cancel_button.click()
def is_saving(self) -> bool:
"""Check if save button in loading state.
Returns:
bool: True if save button shows loading indicator
Example:
config_page.click_save()
assert config_page.is_saving() is True
"""
return self.save_button_loading.is_visible()
def get_validation_errors(self) -> dict:
"""Get all validation errors.
Returns:
dict: Mapping of field name to error message
Example:
errors = config_page.get_validation_errors()
assert "endpoint" in errors
"""
errors = {}
error_elements = self.validation_error.all()
for el in error_elements:
test_id = el.get_attribute("data-testid") or ""
# Extract field name from testid: validation-error-{field_name}
parts = test_id.split("-")
if len(parts) >= 3:
field_name = "-".join(parts[2:])
errors[field_name] = el.text_content() or ""
return errors
def has_field_error(self, field_name: str) -> bool:
"""Check if field has validation error.
Args:
field_name: Name of the field to check
Returns:
bool: True if field has validation error
Example:
assert config_page.has_field_error("endpoint") is True
"""
error_locator = self.page.locator(f"[data-testid='validation-error-{field_name}']")
return error_locator.is_visible()
def wait_for_save_complete(self, timeout: int = 5000) -> None:
"""Wait for save to complete.
Args:
timeout: Maximum time to wait in milliseconds
Example:
config_page.click_save()
config_page.wait_for_save_complete()
"""
from playwright.sync_api import TimeoutError as PlaywrightTimeoutError
try:
self.page.wait_for_selector(
'[data-testid="save-config-button"][data-loading="true"], '
'[data-testid="save-config-button"] .loading',
state="hidden",
timeout=timeout
)
except PlaywrightTimeoutError:
raise TimeoutError(f"Save did not complete within {timeout}ms")
def is_success_message_visible(self) -> bool:
"""Check if success message shown.
Returns:
bool: True if success message is visible
Example:
config_page.wait_for_save_complete()
assert config_page.is_success_message_visible() is True
"""
return self.success_message.is_visible()
def get_all_field_values(self) -> dict:
"""Get all field values as dict.
Returns:
dict: All field values keyed by field name
Example:
values = config_page.get_all_field_values()
assert values["endpoint"] == "https://api.example.com"
"""
values = {}
# Text inputs
text_inputs = self.text_input.all()
for inp in text_inputs:
test_id = inp.get_attribute("data-testid") or ""
if test_id.startswith("config-"):
field_name = test_id.replace("config-", "")
values[field_name] = inp.input_value()
# Number inputs
number_inputs = self.number_input.all()
for inp in number_inputs:
test_id = inp.get_attribute("data-testid") or ""
if test_id.startswith("config-"):
field_name = test_id.replace("config-", "")
values[field_name] = float(inp.input_value()) if inp.input_value() else 0.0
# Boolean toggles
toggles = self.boolean_toggle.all()
for toggle in toggles:
test_id = toggle.get_attribute("data-testid") or ""
if test_id.startswith("config-"):
field_name = test_id.replace("config-", "")
values[field_name] = toggle.is_checked()
# Select dropdowns
selects = self.select_dropdown.all()
for sel in selects:
test_id = sel.get_attribute("data-testid") or ""
if test_id.startswith("config-"):
field_name = test_id.replace("config-", "")
values[field_name] = sel.input_value()
# Text areas
textareas = self.text_area.all()
for ta in textareas:
test_id = ta.get_attribute("data-testid") or ""
if test_id.startswith("config-"):
field_name = test_id.replace("config-", "")
values[field_name] = ta.input_value()
return values
|