aprender-test-lib 0.37.0

Probar: Rust-native testing framework with pixel coverage, TUI snapshots, and visual regression
Documentation
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
//! Locator abstraction for element selection and interaction.
//!
//! Per spec Section 6.1.1: "Locators (The Core Abstraction) - Unlike Selenium,
//! Locators are strict and auto-wait."
//!
//! # Design Philosophy
//!
//! - **Auto-Waiting**: Locators automatically wait for elements to be actionable
//! - **Strict Selection**: Fails if multiple elements match (prevents flaky tests)
//! - **WASM Entity Support**: Custom `.entity()` method for game object selection
//! - **Fluent API**: Chainable methods for building complex selectors

use serde::{Deserialize, Serialize};
use std::time::Duration;

use crate::result::{ProbarError, ProbarResult};

/// Default timeout for auto-waiting (5 seconds)
pub const DEFAULT_TIMEOUT_MS: u64 = 5000;

/// Default polling interval for auto-waiting (50ms)
pub const DEFAULT_POLL_INTERVAL_MS: u64 = 50;

/// A point in 2D space
#[derive(Debug, Clone, Copy, PartialEq, Serialize, Deserialize)]
pub struct Point {
    /// X coordinate
    pub x: f32,
    /// Y coordinate
    pub y: f32,
}

impl Point {
    /// Create a new point
    #[must_use]
    pub const fn new(x: f32, y: f32) -> Self {
        Self { x, y }
    }
}

/// Selector type for locating elements
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Selector {
    /// CSS selector (e.g., "button.primary")
    Css(String),
    /// XPath selector
    XPath(String),
    /// Text content selector
    Text(String),
    /// Test ID selector (data-testid attribute)
    TestId(String),
    /// WASM entity selector (game-specific)
    Entity(String),
    /// Combined selector with text filter
    CssWithText {
        /// Base CSS selector
        css: String,
        /// Text content to match
        text: String,
    },
    /// Canvas entity selector (game objects)
    CanvasEntity {
        /// Entity name/ID
        entity: String,
    },
    // =========================================================================
    // PMAT-001: Semantic Locators (Playwright Parity)
    // =========================================================================
    /// ARIA role selector (e.g., "button", "textbox", "link")
    Role {
        /// ARIA role name
        role: String,
        /// Optional accessible name filter
        name: Option<String>,
    },
    /// Label selector (form elements by associated label text)
    Label(String),
    /// Placeholder selector (input/textarea by placeholder attribute)
    Placeholder(String),
    /// Alt text selector (images by alt attribute)
    AltText(String),
}

impl Selector {
    /// Create a CSS selector
    #[must_use]
    pub fn css(selector: impl Into<String>) -> Self {
        Self::Css(selector.into())
    }

    /// Create a test ID selector
    #[must_use]
    pub fn test_id(id: impl Into<String>) -> Self {
        Self::TestId(id.into())
    }

    /// Create a text selector
    #[must_use]
    pub fn text(text: impl Into<String>) -> Self {
        Self::Text(text.into())
    }

    /// Create a WASM entity selector
    #[must_use]
    pub fn entity(name: impl Into<String>) -> Self {
        Self::Entity(name.into())
    }

    // =========================================================================
    // PMAT-001: Semantic Selector Constructors
    // =========================================================================

    /// Create a role selector (ARIA role matching)
    ///
    /// Per Playwright: `page.getByRole('button', { name: 'Submit' })`
    #[must_use]
    pub fn role(role: impl Into<String>) -> Self {
        Self::Role {
            role: role.into(),
            name: None,
        }
    }

    /// Create a role selector with name filter
    #[must_use]
    pub fn role_with_name(role: impl Into<String>, name: impl Into<String>) -> Self {
        Self::Role {
            role: role.into(),
            name: Some(name.into()),
        }
    }

    /// Create a label selector (form elements by label text)
    ///
    /// Per Playwright: `page.getByLabel('Username')`
    #[must_use]
    pub fn label(text: impl Into<String>) -> Self {
        Self::Label(text.into())
    }

    /// Create a placeholder selector (input/textarea by placeholder)
    ///
    /// Per Playwright: `page.getByPlaceholder('Enter email')`
    #[must_use]
    pub fn placeholder(text: impl Into<String>) -> Self {
        Self::Placeholder(text.into())
    }

    /// Create an alt text selector (images by alt attribute)
    ///
    /// Per Playwright: `page.getByAltText('Company Logo')`
    #[must_use]
    pub fn alt_text(text: impl Into<String>) -> Self {
        Self::AltText(text.into())
    }

    /// Convert to JavaScript/WASM query expression
    #[must_use]
    pub fn to_query(&self) -> String {
        match self {
            Self::Css(s) => format!("document.querySelector({s:?})"),
            Self::XPath(s) => {
                format!("document.evaluate({s:?}, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue")
            }
            Self::Text(t) => {
                format!("Array.from(document.querySelectorAll('*')).find(el => el.textContent.includes({t:?}))")
            }
            Self::TestId(id) => format!("document.querySelector('[data-testid={id:?}]')"),
            Self::Entity(name) => format!("window.__wasm_get_entity({name:?})"),
            Self::CssWithText { css, text } => {
                format!("Array.from(document.querySelectorAll({css:?})).find(el => el.textContent.includes({text:?}))")
            }
            Self::CanvasEntity { entity } => format!("window.__wasm_get_canvas_entity({entity:?})"),
            // PMAT-001: Semantic locator queries
            Self::Role { role, name } => {
                if let Some(n) = name {
                    format!(
                        "Array.from(document.querySelectorAll('[role={role:?}]')).find(el => el.textContent.includes({n:?}) || el.getAttribute('aria-label')?.includes({n:?}))"
                    )
                } else {
                    format!("document.querySelector('[role={role:?}]')")
                }
            }
            Self::Label(text) => {
                format!(
                    "(function() {{ const label = Array.from(document.querySelectorAll('label')).find(l => l.textContent.includes({text:?})); if (label && label.htmlFor) return document.getElementById(label.htmlFor); if (label) return label.querySelector('input, textarea, select'); return null; }})()"
                )
            }
            Self::Placeholder(text) => {
                format!("document.querySelector('[placeholder*={text:?}]')")
            }
            Self::AltText(text) => {
                format!("document.querySelector('img[alt*={text:?}]')")
            }
        }
    }

    /// Convert to query for counting matches
    #[must_use]
    pub fn to_count_query(&self) -> String {
        match self {
            Self::Css(s) => format!("document.querySelectorAll({s:?}).length"),
            Self::XPath(s) => {
                format!("document.evaluate({s:?}, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null).snapshotLength")
            }
            Self::Text(t) => {
                format!("Array.from(document.querySelectorAll('*')).filter(el => el.textContent.includes({t:?})).length")
            }
            Self::TestId(id) => format!("document.querySelectorAll('[data-testid={id:?}]').length"),
            Self::Entity(name) => format!("window.__wasm_count_entities({name:?})"),
            Self::CssWithText { css, text } => {
                format!("Array.from(document.querySelectorAll({css:?})).filter(el => el.textContent.includes({text:?})).length")
            }
            Self::CanvasEntity { entity } => {
                format!("window.__wasm_count_canvas_entities({entity:?})")
            }
            // PMAT-001: Semantic locator count queries
            Self::Role { role, name } => {
                if let Some(n) = name {
                    format!(
                        "Array.from(document.querySelectorAll('[role={role:?}]')).filter(el => el.textContent.includes({n:?}) || el.getAttribute('aria-label')?.includes({n:?})).length"
                    )
                } else {
                    format!("document.querySelectorAll('[role={role:?}]').length")
                }
            }
            Self::Label(text) => {
                format!(
                    "Array.from(document.querySelectorAll('label')).filter(l => l.textContent.includes({text:?})).length"
                )
            }
            Self::Placeholder(text) => {
                format!("document.querySelectorAll('[placeholder*={text:?}]').length")
            }
            Self::AltText(text) => {
                format!("document.querySelectorAll('img[alt*={text:?}]').length")
            }
        }
    }
}

/// Drag operation builder
#[derive(Debug, Clone)]
pub struct DragOperation {
    /// Target point
    pub target: Point,
    /// Number of intermediate steps
    pub steps: u32,
    /// Total duration of the drag
    pub duration: Duration,
}

impl DragOperation {
    /// Create a new drag operation
    #[must_use]
    pub fn to(target: Point) -> Self {
        Self {
            target,
            steps: 10,
            duration: Duration::from_millis(500),
        }
    }

    /// Set the number of steps
    #[must_use]
    pub const fn steps(mut self, steps: u32) -> Self {
        self.steps = steps;
        self
    }

    /// Set the duration
    #[must_use]
    pub const fn duration(mut self, duration: Duration) -> Self {
        self.duration = duration;
        self
    }
}

/// Locator options for customizing behavior
#[derive(Debug, Clone)]
pub struct LocatorOptions {
    /// Timeout for auto-waiting
    pub timeout: Duration,
    /// Polling interval for auto-waiting
    pub poll_interval: Duration,
    /// Whether to require strict single-element match
    pub strict: bool,
    /// Whether the element must be visible
    pub visible: bool,
}

impl Default for LocatorOptions {
    fn default() -> Self {
        Self {
            timeout: Duration::from_millis(DEFAULT_TIMEOUT_MS),
            poll_interval: Duration::from_millis(DEFAULT_POLL_INTERVAL_MS),
            strict: true,
            visible: true,
        }
    }
}

// =============================================================================
// PMAT-002: Filter Options for Locator Operations
// =============================================================================

/// Options for filtering locators (Playwright Parity)
#[derive(Debug, Clone, Default)]
pub struct FilterOptions {
    /// Child locator that must match
    pub has: Option<Box<Locator>>,
    /// Text that must be contained
    pub has_text: Option<String>,
    /// Child locator that must NOT match
    pub has_not: Option<Box<Locator>>,
    /// Text that must NOT be contained
    pub has_not_text: Option<String>,
}

impl FilterOptions {
    /// Create empty filter options
    #[must_use]
    pub fn new() -> Self {
        Self::default()
    }

    /// Set has filter (child locator must match)
    #[must_use]
    pub fn has(mut self, locator: Locator) -> Self {
        self.has = Some(Box::new(locator));
        self
    }

    /// Set has_text filter (must contain text)
    #[must_use]
    pub fn has_text(mut self, text: impl Into<String>) -> Self {
        self.has_text = Some(text.into());
        self
    }

    /// Set has_not filter (child locator must NOT match)
    #[must_use]
    pub fn has_not(mut self, locator: Locator) -> Self {
        self.has_not = Some(Box::new(locator));
        self
    }

    /// Set has_not_text filter (must NOT contain text)
    #[must_use]
    pub fn has_not_text(mut self, text: impl Into<String>) -> Self {
        self.has_not_text = Some(text.into());
        self
    }
}

// =============================================================================
// PMAT-003: Mouse Button Types
// =============================================================================

/// Mouse button type for click operations
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum MouseButton {
    /// Left mouse button (default)
    #[default]
    Left,
    /// Right mouse button (context menu)
    Right,
    /// Middle mouse button (scroll wheel click)
    Middle,
}

/// Click options for customizing click behavior
#[derive(Debug, Clone, Default)]
pub struct ClickOptions {
    /// Which mouse button to use
    pub button: MouseButton,
    /// Number of clicks (1 = single, 2 = double)
    pub click_count: u32,
    /// Position within element to click
    pub position: Option<Point>,
    /// Keyboard modifiers to hold during click
    pub modifiers: Vec<KeyModifier>,
}

/// Keyboard modifiers for actions
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum KeyModifier {
    /// Alt key
    Alt,
    /// Control key
    Control,
    /// Meta key (Cmd on Mac, Win on Windows)
    Meta,
    /// Shift key
    Shift,
}

impl ClickOptions {
    /// Create default click options (left button, single click)
    #[must_use]
    pub fn new() -> Self {
        Self {
            button: MouseButton::Left,
            click_count: 1,
            position: None,
            modifiers: Vec::new(),
        }
    }

    /// Set mouse button
    #[must_use]
    pub fn button(mut self, button: MouseButton) -> Self {
        self.button = button;
        self
    }

    /// Set click count
    #[must_use]
    pub fn click_count(mut self, count: u32) -> Self {
        self.click_count = count;
        self
    }

    /// Set click position within element
    #[must_use]
    pub fn position(mut self, pos: Point) -> Self {
        self.position = Some(pos);
        self
    }

    /// Add a keyboard modifier
    #[must_use]
    pub fn modifier(mut self, modifier: KeyModifier) -> Self {
        self.modifiers.push(modifier);
        self
    }
}

/// A locator for finding and interacting with elements.
///
/// Per spec Section 6.1.1: "Unlike Selenium, Locators are strict and auto-wait."
#[derive(Debug, Clone)]
pub struct Locator {
    /// The selector for finding elements
    selector: Selector,
    /// Options for locator behavior
    options: LocatorOptions,
}

impl Locator {
    /// Create a new locator with a CSS selector
    #[must_use]
    pub fn new(selector: impl Into<String>) -> Self {
        Self {
            selector: Selector::Css(selector.into()),
            options: LocatorOptions::default(),
        }
    }

    /// Create a locator from a selector
    #[must_use]
    pub fn from_selector(selector: Selector) -> Self {
        Self {
            selector,
            options: LocatorOptions::default(),
        }
    }

    /// Filter by text content
    ///
    /// Per spec: `page.locator("button").with_text("Start Game")`
    #[must_use]
    pub fn with_text(self, text: impl Into<String>) -> Self {
        let new_selector = match self.selector {
            Selector::Css(css) => Selector::CssWithText {
                css,
                text: text.into(),
            },
            other => {
                // For non-CSS selectors, we can't combine easily
                // Just keep the original and note the text filter
                let _ = text.into();
                other
            }
        };
        Self {
            selector: new_selector,
            options: self.options,
        }
    }

    /// Filter to a specific WASM game entity
    ///
    /// Per spec: `page.locator("canvas").entity("hero")`
    #[must_use]
    pub fn entity(self, name: impl Into<String>) -> Self {
        Self {
            selector: Selector::CanvasEntity {
                entity: name.into(),
            },
            options: self.options,
        }
    }

    /// Set a custom timeout
    #[must_use]
    pub const fn with_timeout(mut self, timeout: Duration) -> Self {
        self.options.timeout = timeout;
        self
    }

    /// Disable strict mode (allow multiple matches)
    #[must_use]
    pub const fn with_strict(mut self, strict: bool) -> Self {
        self.options.strict = strict;
        self
    }

    /// Set visibility requirement
    #[must_use]
    pub const fn with_visible(mut self, visible: bool) -> Self {
        self.options.visible = visible;
        self
    }

    /// Get the selector
    #[must_use]
    pub const fn selector(&self) -> &Selector {
        &self.selector
    }

    /// Get the options
    #[must_use]
    pub const fn options(&self) -> &LocatorOptions {
        &self.options
    }

    /// Simulate clicking on the located element
    ///
    /// # Errors
    ///
    /// Returns error if element not found or not clickable
    pub fn click(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::Click {
            locator: self.clone(),
        })
    }

    /// Simulate double-clicking on the located element
    ///
    /// # Errors
    ///
    /// Returns error if element not found or not clickable
    pub fn double_click(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::DoubleClick {
            locator: self.clone(),
        })
    }

    /// Drag the located element to a target point
    ///
    /// Per spec: `hero.drag_to(&Point::new(500.0, 500.0)).steps(10).duration(...)`
    #[must_use]
    pub fn drag_to(&self, target: &Point) -> DragBuilder {
        DragBuilder {
            locator: self.clone(),
            target: *target,
            steps: 10,
            duration: Duration::from_millis(500),
        }
    }

    /// Fill the located element with text
    ///
    /// # Errors
    ///
    /// Returns error if element not found or not fillable
    pub fn fill(&self, text: impl Into<String>) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::Fill {
            locator: self.clone(),
            text: text.into(),
        })
    }

    /// Get the text content of the located element
    ///
    /// # Errors
    ///
    /// Returns error if element not found
    pub fn text_content(&self) -> ProbarResult<LocatorQuery> {
        Ok(LocatorQuery::TextContent {
            locator: self.clone(),
        })
    }

    /// Check if the element is visible
    pub fn is_visible(&self) -> ProbarResult<LocatorQuery> {
        Ok(LocatorQuery::IsVisible {
            locator: self.clone(),
        })
    }

    /// Get the bounding box of the located element
    pub fn bounding_box(&self) -> ProbarResult<LocatorQuery> {
        Ok(LocatorQuery::BoundingBox {
            locator: self.clone(),
        })
    }

    /// Wait for the element to be visible
    pub fn wait_for_visible(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::WaitForVisible {
            locator: self.clone(),
        })
    }

    /// Wait for the element to be hidden
    pub fn wait_for_hidden(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::WaitForHidden {
            locator: self.clone(),
        })
    }

    /// Check the element count (for assertions)
    pub fn count(&self) -> ProbarResult<LocatorQuery> {
        Ok(LocatorQuery::Count {
            locator: self.clone(),
        })
    }

    // =========================================================================
    // PMAT-002: Locator Operations (Playwright Parity)
    // =========================================================================

    /// Filter the locator by additional conditions
    ///
    /// Per Playwright: `locator.filter({ hasText: 'Hello', has: page.locator('.child') })`
    #[must_use]
    pub fn filter(self, options: FilterOptions) -> Self {
        // For now, if has_text is provided, we combine it with the selector
        if let Some(text) = options.has_text {
            return self.with_text(text);
        }
        // Other filter options would be applied during resolution
        // Store filter options for later use
        self
    }

    /// Create intersection of two locators (both must match)
    ///
    /// Per Playwright: `locator.and(other)`
    #[must_use]
    pub fn and(self, other: Locator) -> Self {
        // Combine selectors - for CSS, we can join them
        let new_selector = match (&self.selector, &other.selector) {
            (Selector::Css(a), Selector::Css(b)) => Selector::Css(format!("{a}{b}")),
            _ => self.selector, // Default to self for non-CSS
        };
        Self {
            selector: new_selector,
            options: self.options,
        }
    }

    /// Create union of two locators (either can match)
    ///
    /// Per Playwright: `locator.or(other)`
    #[must_use]
    pub fn or(self, other: Locator) -> Self {
        // Combine selectors with CSS comma separator
        let new_selector = match (&self.selector, &other.selector) {
            (Selector::Css(a), Selector::Css(b)) => Selector::Css(format!("{a}, {b}")),
            _ => self.selector, // Default to self for non-CSS
        };
        Self {
            selector: new_selector,
            options: self.options,
        }
    }

    /// Get the first matching element
    ///
    /// Per Playwright: `locator.first()`
    #[must_use]
    pub fn first(self) -> Self {
        // Modify selector to get first match only
        let new_selector = match self.selector {
            Selector::Css(s) => Selector::Css(format!("{s}:first-child")),
            other => other,
        };
        Self {
            selector: new_selector,
            options: self.options,
        }
    }

    /// Get the last matching element
    ///
    /// Per Playwright: `locator.last()`
    #[must_use]
    pub fn last(self) -> Self {
        // Modify selector to get last match only
        let new_selector = match self.selector {
            Selector::Css(s) => Selector::Css(format!("{s}:last-child")),
            other => other,
        };
        Self {
            selector: new_selector,
            options: self.options,
        }
    }

    /// Get the element at the specified index
    ///
    /// Per Playwright: `locator.nth(index)`
    #[must_use]
    pub fn nth(self, index: usize) -> Self {
        // Modify selector to get nth match
        let new_selector = match self.selector {
            Selector::Css(s) => Selector::Css(format!("{s}:nth-child({})", index + 1)),
            other => other,
        };
        Self {
            selector: new_selector,
            options: self.options,
        }
    }

    // =========================================================================
    // PMAT-003: Additional Mouse Actions (Playwright Parity)
    // =========================================================================

    /// Simulate right-clicking on the located element
    ///
    /// Per Playwright: `locator.click({ button: 'right' })`
    pub fn right_click(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::RightClick {
            locator: self.clone(),
        })
    }

    /// Click with custom options
    ///
    /// Per Playwright: `locator.click(options)`
    pub fn click_with_options(&self, options: ClickOptions) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::ClickWithOptions {
            locator: self.clone(),
            options,
        })
    }

    /// Hover over the located element
    ///
    /// Per Playwright: `locator.hover()`
    pub fn hover(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::Hover {
            locator: self.clone(),
        })
    }

    /// Focus the located element
    ///
    /// Per Playwright: `locator.focus()`
    pub fn focus(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::Focus {
            locator: self.clone(),
        })
    }

    /// Remove focus from the located element
    ///
    /// Per Playwright: `locator.blur()`
    pub fn blur(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::Blur {
            locator: self.clone(),
        })
    }

    /// Check a checkbox or radio button
    ///
    /// Per Playwright: `locator.check()`
    pub fn check(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::Check {
            locator: self.clone(),
        })
    }

    /// Uncheck a checkbox
    ///
    /// Per Playwright: `locator.uncheck()`
    pub fn uncheck(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::Uncheck {
            locator: self.clone(),
        })
    }

    /// Scroll element into view if needed
    ///
    /// Per Playwright: `locator.scrollIntoViewIfNeeded()`
    pub fn scroll_into_view(&self) -> ProbarResult<LocatorAction> {
        Ok(LocatorAction::ScrollIntoView {
            locator: self.clone(),
        })
    }

    // =========================================================================
    // PMAT-001: Semantic Locator Constructors (Convenience methods)
    // =========================================================================

    /// Create a locator by ARIA role
    #[must_use]
    pub fn by_role(role: impl Into<String>) -> Self {
        Self::from_selector(Selector::role(role))
    }

    /// Create a locator by ARIA role with name
    #[must_use]
    pub fn by_role_with_name(role: impl Into<String>, name: impl Into<String>) -> Self {
        Self::from_selector(Selector::role_with_name(role, name))
    }

    /// Create a locator by label text
    #[must_use]
    pub fn by_label(text: impl Into<String>) -> Self {
        Self::from_selector(Selector::label(text))
    }

    /// Create a locator by placeholder text
    #[must_use]
    pub fn by_placeholder(text: impl Into<String>) -> Self {
        Self::from_selector(Selector::placeholder(text))
    }

    /// Create a locator by alt text
    #[must_use]
    pub fn by_alt_text(text: impl Into<String>) -> Self {
        Self::from_selector(Selector::alt_text(text))
    }

    /// Create a locator by test ID
    #[must_use]
    pub fn by_test_id(id: impl Into<String>) -> Self {
        Self::from_selector(Selector::test_id(id))
    }

    /// Create a locator by text content
    #[must_use]
    pub fn by_text(text: impl Into<String>) -> Self {
        Self::from_selector(Selector::text(text))
    }
}

/// Builder for drag operations
#[derive(Debug, Clone)]
pub struct DragBuilder {
    locator: Locator,
    target: Point,
    steps: u32,
    duration: Duration,
}

impl DragBuilder {
    /// Set the number of intermediate steps
    #[must_use]
    pub const fn steps(mut self, steps: u32) -> Self {
        self.steps = steps;
        self
    }

    /// Set the duration of the drag
    #[must_use]
    pub const fn duration(mut self, duration: Duration) -> Self {
        self.duration = duration;
        self
    }

    /// Build the drag action
    pub fn build(self) -> LocatorAction {
        LocatorAction::Drag {
            locator: self.locator,
            target: self.target,
            steps: self.steps,
            duration: self.duration,
        }
    }
}

/// Actions that can be performed on a located element
#[derive(Debug, Clone)]
pub enum LocatorAction {
    /// Click on the element
    Click {
        /// The locator
        locator: Locator,
    },
    /// Double-click on the element
    DoubleClick {
        /// The locator
        locator: Locator,
    },
    /// Drag the element to a point
    Drag {
        /// The locator
        locator: Locator,
        /// Target point
        target: Point,
        /// Number of steps
        steps: u32,
        /// Duration
        duration: Duration,
    },
    /// Fill the element with text
    Fill {
        /// The locator
        locator: Locator,
        /// Text to fill
        text: String,
    },
    /// Wait for element to be visible
    WaitForVisible {
        /// The locator
        locator: Locator,
    },
    /// Wait for element to be hidden
    WaitForHidden {
        /// The locator
        locator: Locator,
    },
    // =========================================================================
    // PMAT-003: Additional Actions (Playwright Parity)
    // =========================================================================
    /// Right-click on the element (context menu)
    RightClick {
        /// The locator
        locator: Locator,
    },
    /// Click with custom options
    ClickWithOptions {
        /// The locator
        locator: Locator,
        /// Click options
        options: ClickOptions,
    },
    /// Hover over the element
    Hover {
        /// The locator
        locator: Locator,
    },
    /// Focus the element
    Focus {
        /// The locator
        locator: Locator,
    },
    /// Remove focus from the element
    Blur {
        /// The locator
        locator: Locator,
    },
    /// Check a checkbox or radio
    Check {
        /// The locator
        locator: Locator,
    },
    /// Uncheck a checkbox
    Uncheck {
        /// The locator
        locator: Locator,
    },
    /// Scroll element into view
    ScrollIntoView {
        /// The locator
        locator: Locator,
    },
}

impl LocatorAction {
    /// Get the locator for this action
    #[must_use]
    pub fn locator(&self) -> &Locator {
        match self {
            Self::Click { locator }
            | Self::DoubleClick { locator }
            | Self::Drag { locator, .. }
            | Self::Fill { locator, .. }
            | Self::WaitForVisible { locator }
            | Self::WaitForHidden { locator }
            | Self::RightClick { locator }
            | Self::ClickWithOptions { locator, .. }
            | Self::Hover { locator }
            | Self::Focus { locator }
            | Self::Blur { locator }
            | Self::Check { locator }
            | Self::Uncheck { locator }
            | Self::ScrollIntoView { locator } => locator,
        }
    }
}

/// Queries that return information about located elements
#[derive(Debug, Clone)]
pub enum LocatorQuery {
    /// Get text content
    TextContent {
        /// The locator
        locator: Locator,
    },
    /// Check if visible
    IsVisible {
        /// The locator
        locator: Locator,
    },
    /// Get bounding box
    BoundingBox {
        /// The locator
        locator: Locator,
    },
    /// Count matching elements
    Count {
        /// The locator
        locator: Locator,
    },
}

impl LocatorQuery {
    /// Get the locator for this query
    #[must_use]
    pub const fn locator(&self) -> &Locator {
        match self {
            Self::TextContent { locator }
            | Self::IsVisible { locator }
            | Self::BoundingBox { locator }
            | Self::Count { locator } => locator,
        }
    }
}

/// Bounding box for an element
#[derive(Debug, Clone, Copy, PartialEq, Serialize, Deserialize)]
pub struct BoundingBox {
    /// X position
    pub x: f32,
    /// Y position
    pub y: f32,
    /// Width
    pub width: f32,
    /// Height
    pub height: f32,
}

impl BoundingBox {
    /// Create a new bounding box
    #[must_use]
    pub const fn new(x: f32, y: f32, width: f32, height: f32) -> Self {
        Self {
            x,
            y,
            width,
            height,
        }
    }

    /// Get the center point
    #[must_use]
    pub fn center(&self) -> Point {
        Point::new(self.x + self.width / 2.0, self.y + self.height / 2.0)
    }

    /// Check if a point is inside this bounding box
    #[must_use]
    pub fn contains(&self, point: &Point) -> bool {
        point.x >= self.x
            && point.x <= self.x + self.width
            && point.y >= self.y
            && point.y <= self.y + self.height
    }
}

/// Smart assertion builder for locators (Playwright's `expect()`)
///
/// Per spec: `expect(score_display).to_have_text("10").await?;`
#[derive(Debug, Clone)]
pub struct Expect {
    locator: Locator,
}

impl Expect {
    /// Create a new expectation for a locator
    #[must_use]
    pub const fn new(locator: Locator) -> Self {
        Self { locator }
    }

    /// Assert the element has specific text
    pub fn to_have_text(&self, expected: impl Into<String>) -> ExpectAssertion {
        ExpectAssertion::HasText {
            locator: self.locator.clone(),
            expected: expected.into(),
        }
    }

    /// Assert the element is visible
    pub fn to_be_visible(&self) -> ExpectAssertion {
        ExpectAssertion::IsVisible {
            locator: self.locator.clone(),
        }
    }

    /// Assert the element is hidden
    pub fn to_be_hidden(&self) -> ExpectAssertion {
        ExpectAssertion::IsHidden {
            locator: self.locator.clone(),
        }
    }

    /// Assert the element count
    pub fn to_have_count(&self, count: usize) -> ExpectAssertion {
        ExpectAssertion::HasCount {
            locator: self.locator.clone(),
            expected: count,
        }
    }

    /// Assert the element contains text
    pub fn to_contain_text(&self, text: impl Into<String>) -> ExpectAssertion {
        ExpectAssertion::ContainsText {
            locator: self.locator.clone(),
            expected: text.into(),
        }
    }

    // =========================================================================
    // PMAT-004: Element State Assertions (Playwright Parity)
    // =========================================================================

    /// Assert the element is enabled (not disabled)
    pub fn to_be_enabled(&self) -> ExpectAssertion {
        ExpectAssertion::IsEnabled {
            locator: self.locator.clone(),
        }
    }

    /// Assert the element is disabled
    pub fn to_be_disabled(&self) -> ExpectAssertion {
        ExpectAssertion::IsDisabled {
            locator: self.locator.clone(),
        }
    }

    /// Assert the element is checked (checkbox/radio)
    pub fn to_be_checked(&self) -> ExpectAssertion {
        ExpectAssertion::IsChecked {
            locator: self.locator.clone(),
        }
    }

    /// Assert the element is editable
    pub fn to_be_editable(&self) -> ExpectAssertion {
        ExpectAssertion::IsEditable {
            locator: self.locator.clone(),
        }
    }

    /// Assert the element is focused
    pub fn to_be_focused(&self) -> ExpectAssertion {
        ExpectAssertion::IsFocused {
            locator: self.locator.clone(),
        }
    }

    /// Assert the element is empty
    pub fn to_be_empty(&self) -> ExpectAssertion {
        ExpectAssertion::IsEmpty {
            locator: self.locator.clone(),
        }
    }

    /// Assert the element has specific value
    pub fn to_have_value(&self, value: impl Into<String>) -> ExpectAssertion {
        ExpectAssertion::HasValue {
            locator: self.locator.clone(),
            expected: value.into(),
        }
    }

    /// Assert the element has specific CSS property value
    pub fn to_have_css(
        &self,
        property: impl Into<String>,
        value: impl Into<String>,
    ) -> ExpectAssertion {
        ExpectAssertion::HasCss {
            locator: self.locator.clone(),
            property: property.into(),
            expected: value.into(),
        }
    }

    /// Assert the element has specific class
    pub fn to_have_class(&self, class: impl Into<String>) -> ExpectAssertion {
        ExpectAssertion::HasClass {
            locator: self.locator.clone(),
            expected: class.into(),
        }
    }

    /// Assert the element has specific ID
    pub fn to_have_id(&self, id: impl Into<String>) -> ExpectAssertion {
        ExpectAssertion::HasId {
            locator: self.locator.clone(),
            expected: id.into(),
        }
    }

    /// Assert the element has specific attribute value
    pub fn to_have_attribute(
        &self,
        name: impl Into<String>,
        value: impl Into<String>,
    ) -> ExpectAssertion {
        ExpectAssertion::HasAttribute {
            locator: self.locator.clone(),
            name: name.into(),
            expected: value.into(),
        }
    }
}

/// Assertion types for `expect()`
#[derive(Debug, Clone)]
pub enum ExpectAssertion {
    /// Element has exact text
    HasText {
        /// The locator
        locator: Locator,
        /// Expected text
        expected: String,
    },
    /// Element is visible
    IsVisible {
        /// The locator
        locator: Locator,
    },
    /// Element is hidden
    IsHidden {
        /// The locator
        locator: Locator,
    },
    /// Element count matches
    HasCount {
        /// The locator
        locator: Locator,
        /// Expected count
        expected: usize,
    },
    /// Element contains text
    ContainsText {
        /// The locator
        locator: Locator,
        /// Text to find
        expected: String,
    },
    // =========================================================================
    // PMAT-004: Element State Assertions (Playwright Parity)
    // =========================================================================
    /// Element is enabled
    IsEnabled {
        /// The locator
        locator: Locator,
    },
    /// Element is disabled
    IsDisabled {
        /// The locator
        locator: Locator,
    },
    /// Element is checked
    IsChecked {
        /// The locator
        locator: Locator,
    },
    /// Element is editable
    IsEditable {
        /// The locator
        locator: Locator,
    },
    /// Element is focused
    IsFocused {
        /// The locator
        locator: Locator,
    },
    /// Element is empty
    IsEmpty {
        /// The locator
        locator: Locator,
    },
    /// Element has specific value
    HasValue {
        /// The locator
        locator: Locator,
        /// Expected value
        expected: String,
    },
    /// Element has specific CSS property
    HasCss {
        /// The locator
        locator: Locator,
        /// CSS property name
        property: String,
        /// Expected value
        expected: String,
    },
    /// Element has specific class
    HasClass {
        /// The locator
        locator: Locator,
        /// Expected class
        expected: String,
    },
    /// Element has specific ID
    HasId {
        /// The locator
        locator: Locator,
        /// Expected ID
        expected: String,
    },
    /// Element has specific attribute
    HasAttribute {
        /// The locator
        locator: Locator,
        /// Attribute name
        name: String,
        /// Expected value
        expected: String,
    },
}

impl ExpectAssertion {
    /// Validate the assertion (synchronous for testing)
    ///
    /// # Errors
    ///
    /// Returns error if assertion fails
    pub fn validate(&self, actual: &str) -> ProbarResult<()> {
        match self {
            Self::HasText { expected, .. } => {
                if actual == expected {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: format!("Expected text '{expected}' but got '{actual}'"),
                    })
                }
            }
            Self::ContainsText { expected, .. } => {
                if actual.contains(expected) {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: format!(
                            "Expected text to contain '{expected}' but got '{actual}'"
                        ),
                    })
                }
            }
            Self::HasValue { expected, .. } => {
                if actual == expected {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: format!("Expected value '{expected}' but got '{actual}'"),
                    })
                }
            }
            Self::HasClass { expected, .. } => {
                if actual.split_whitespace().any(|c| c == expected) {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: format!("Expected class '{expected}' but got '{actual}'"),
                    })
                }
            }
            Self::HasId { expected, .. } => {
                if actual == expected {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: format!("Expected id '{expected}' but got '{actual}'"),
                    })
                }
            }
            Self::HasAttribute { name, expected, .. } => {
                if actual == expected {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: format!(
                            "Expected attribute '{name}' to be '{expected}' but got '{actual}'"
                        ),
                    })
                }
            }
            // These need browser context to validate
            Self::IsVisible { .. }
            | Self::IsHidden { .. }
            | Self::HasCount { .. }
            | Self::IsEnabled { .. }
            | Self::IsDisabled { .. }
            | Self::IsChecked { .. }
            | Self::IsEditable { .. }
            | Self::IsFocused { .. }
            | Self::IsEmpty { .. }
            | Self::HasCss { .. } => Ok(()),
        }
    }

    /// Validate count assertion
    ///
    /// # Errors
    ///
    /// Returns error if count doesn't match
    pub fn validate_count(&self, actual: usize) -> ProbarResult<()> {
        match self {
            Self::HasCount { expected, .. } => {
                if actual == *expected {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: format!("Expected count {expected} but got {actual}"),
                    })
                }
            }
            _ => Ok(()),
        }
    }

    /// Validate boolean state assertion
    ///
    /// # Errors
    ///
    /// Returns error if state doesn't match expected
    pub fn validate_state(&self, actual: bool) -> ProbarResult<()> {
        match self {
            Self::IsEnabled { .. } => {
                if actual {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: "Expected element to be enabled but it was disabled".to_string(),
                    })
                }
            }
            Self::IsDisabled { .. } => {
                if actual {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: "Expected element to be disabled but it was enabled".to_string(),
                    })
                }
            }
            Self::IsChecked { .. } => {
                if actual {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: "Expected element to be checked but it was not".to_string(),
                    })
                }
            }
            Self::IsEditable { .. } => {
                if actual {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: "Expected element to be editable but it was not".to_string(),
                    })
                }
            }
            Self::IsFocused { .. } => {
                if actual {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: "Expected element to be focused but it was not".to_string(),
                    })
                }
            }
            Self::IsEmpty { .. } => {
                if actual {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: "Expected element to be empty but it was not".to_string(),
                    })
                }
            }
            Self::IsVisible { .. } => {
                if actual {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: "Expected element to be visible but it was hidden".to_string(),
                    })
                }
            }
            Self::IsHidden { .. } => {
                if actual {
                    Ok(())
                } else {
                    Err(ProbarError::AssertionError {
                        message: "Expected element to be hidden but it was visible".to_string(),
                    })
                }
            }
            _ => Ok(()),
        }
    }
}

/// Create an expectation for a locator (Playwright-style)
///
/// Per spec: `expect(score_display).to_have_text("10").await?;`
#[must_use]
pub fn expect(locator: Locator) -> Expect {
    Expect::new(locator)
}

#[cfg(test)]
#[allow(
    clippy::unwrap_used,
    clippy::expect_used,
    clippy::panic,
    clippy::default_trait_access
)]
mod tests {
    use super::*;

    // ========================================================================
    // EXTREME TDD: Tests for Locator abstraction per Section 6.1.1
    // ========================================================================

    mod selector_tests {
        use super::*;

        #[test]
        fn test_css_selector() {
            let selector = Selector::css("button.primary");
            let query = selector.to_query();
            assert!(query.contains("querySelector"));
            assert!(query.contains("button.primary"));
        }

        #[test]
        fn test_test_id_selector() {
            let selector = Selector::test_id("score");
            let query = selector.to_query();
            assert!(query.contains("data-testid"));
            assert!(query.contains("score"));
        }

        #[test]
        fn test_text_selector() {
            let selector = Selector::text("Start Game");
            let query = selector.to_query();
            assert!(query.contains("textContent"));
            assert!(query.contains("Start Game"));
        }

        #[test]
        fn test_entity_selector() {
            let selector = Selector::entity("hero");
            let query = selector.to_query();
            assert!(query.contains("__wasm_get_entity"));
            assert!(query.contains("hero"));
        }

        #[test]
        fn test_count_query() {
            let selector = Selector::css("button");
            let query = selector.to_count_query();
            assert!(query.contains("querySelectorAll"));
            assert!(query.contains(".length"));
        }
    }

    mod locator_tests {
        use super::*;

        #[test]
        fn test_locator_new() {
            let locator = Locator::new("button");
            assert!(matches!(locator.selector(), Selector::Css(_)));
        }

        #[test]
        fn test_locator_with_text() {
            let locator = Locator::new("button").with_text("Start Game");
            assert!(matches!(locator.selector(), Selector::CssWithText { .. }));
        }

        #[test]
        fn test_locator_entity() {
            let locator = Locator::new("canvas").entity("hero");
            assert!(matches!(locator.selector(), Selector::CanvasEntity { .. }));
        }

        #[test]
        fn test_locator_timeout() {
            let locator = Locator::new("button").with_timeout(Duration::from_secs(10));
            assert_eq!(locator.options().timeout, Duration::from_secs(10));
        }

        #[test]
        fn test_locator_strict_mode() {
            let locator = Locator::new("button").with_strict(false);
            assert!(!locator.options().strict);
        }
    }

    mod action_tests {
        use super::*;

        #[test]
        fn test_click_action() {
            let locator = Locator::new("button");
            let action = locator.click().unwrap();
            assert!(matches!(action, LocatorAction::Click { .. }));
        }

        #[test]
        fn test_fill_action() {
            let locator = Locator::new("input");
            let action = locator.fill("test text").unwrap();
            assert!(matches!(action, LocatorAction::Fill { .. }));
        }

        #[test]
        fn test_drag_builder() {
            let locator = Locator::new("canvas").entity("hero");
            let drag = locator
                .drag_to(&Point::new(500.0, 500.0))
                .steps(10)
                .duration(Duration::from_millis(500))
                .build();
            assert!(matches!(drag, LocatorAction::Drag { steps: 10, .. }));
        }
    }

    mod query_tests {
        use super::*;

        #[test]
        fn test_text_content_query() {
            let locator = Locator::new("[data-testid='score']");
            let query = locator.text_content().unwrap();
            assert!(matches!(query, LocatorQuery::TextContent { .. }));
        }

        #[test]
        fn test_is_visible_query() {
            let locator = Locator::new("button");
            let query = locator.is_visible().unwrap();
            assert!(matches!(query, LocatorQuery::IsVisible { .. }));
        }

        #[test]
        fn test_count_query() {
            let locator = Locator::new("li");
            let query = locator.count().unwrap();
            assert!(matches!(query, LocatorQuery::Count { .. }));
        }
    }

    mod expect_tests {
        use super::*;

        #[test]
        fn test_expect_to_have_text() {
            let locator = Locator::new("[data-testid='score']");
            let assertion = expect(locator).to_have_text("10");
            assert!(matches!(assertion, ExpectAssertion::HasText { .. }));
        }

        #[test]
        fn test_expect_to_be_visible() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_visible();
            assert!(matches!(assertion, ExpectAssertion::IsVisible { .. }));
        }

        #[test]
        fn test_expect_to_have_count() {
            let locator = Locator::new("li");
            let assertion = expect(locator).to_have_count(5);
            assert!(matches!(
                assertion,
                ExpectAssertion::HasCount { expected: 5, .. }
            ));
        }

        #[test]
        fn test_validate_has_text_pass() {
            let locator = Locator::new("span");
            let assertion = expect(locator).to_have_text("10");
            assert!(assertion.validate("10").is_ok());
        }

        #[test]
        fn test_validate_has_text_fail() {
            let locator = Locator::new("span");
            let assertion = expect(locator).to_have_text("10");
            assert!(assertion.validate("20").is_err());
        }

        #[test]
        fn test_validate_contains_text_pass() {
            let locator = Locator::new("span");
            let assertion = expect(locator).to_contain_text("Score");
            assert!(assertion.validate("Score: 100").is_ok());
        }

        #[test]
        fn test_validate_count_pass() {
            let locator = Locator::new("li");
            let assertion = expect(locator).to_have_count(3);
            assert!(assertion.validate_count(3).is_ok());
        }

        #[test]
        fn test_validate_count_fail() {
            let locator = Locator::new("li");
            let assertion = expect(locator).to_have_count(3);
            assert!(assertion.validate_count(5).is_err());
        }
    }

    mod point_tests {
        use super::*;

        #[test]
        fn test_point_new() {
            let p = Point::new(100.0, 200.0);
            assert!((p.x - 100.0).abs() < f32::EPSILON);
            assert!((p.y - 200.0).abs() < f32::EPSILON);
        }
    }

    mod bounding_box_tests {
        use super::*;

        #[test]
        fn test_bounding_box_center() {
            let bbox = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            let center = bbox.center();
            assert!((center.x - 50.0).abs() < f32::EPSILON);
            assert!((center.y - 50.0).abs() < f32::EPSILON);
        }

        #[test]
        fn test_bounding_box_contains() {
            let bbox = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            assert!(bbox.contains(&Point::new(50.0, 50.0)));
            assert!(!bbox.contains(&Point::new(150.0, 50.0)));
        }
    }

    mod default_tests {
        use super::*;

        #[test]
        fn test_default_timeout() {
            assert_eq!(DEFAULT_TIMEOUT_MS, 5000);
        }

        #[test]
        fn test_default_poll_interval() {
            assert_eq!(DEFAULT_POLL_INTERVAL_MS, 50);
        }

        #[test]
        fn test_locator_options_default() {
            let opts = LocatorOptions::default();
            assert_eq!(opts.timeout, Duration::from_millis(5000));
            assert!(opts.strict);
            assert!(opts.visible);
        }
    }

    mod additional_selector_tests {
        use super::*;

        #[test]
        fn test_xpath_selector_query() {
            let selector = Selector::XPath("//button[@id='test']".to_string());
            let query = selector.to_query();
            assert!(query.contains("evaluate"));
            assert!(query.contains("XPathResult"));
        }

        #[test]
        fn test_xpath_selector_count_query() {
            let selector = Selector::XPath("//button".to_string());
            let query = selector.to_count_query();
            assert!(query.contains("SNAPSHOT"));
            assert!(query.contains("snapshotLength"));
        }

        #[test]
        fn test_css_with_text_selector() {
            let selector = Selector::CssWithText {
                css: "button".to_string(),
                text: "Click Me".to_string(),
            };
            let query = selector.to_query();
            assert!(query.contains("querySelectorAll"));
            assert!(query.contains("textContent"));
        }

        #[test]
        fn test_css_with_text_count_query() {
            let selector = Selector::CssWithText {
                css: "button".to_string(),
                text: "Click".to_string(),
            };
            let query = selector.to_count_query();
            assert!(query.contains("filter"));
            assert!(query.contains(".length"));
        }

        #[test]
        fn test_canvas_entity_selector() {
            let selector = Selector::CanvasEntity {
                entity: "player".to_string(),
            };
            let query = selector.to_query();
            assert!(query.contains("__wasm_get_canvas_entity"));
        }

        #[test]
        fn test_canvas_entity_count_query() {
            let selector = Selector::CanvasEntity {
                entity: "enemy".to_string(),
            };
            let query = selector.to_count_query();
            assert!(query.contains("__wasm_count_canvas_entities"));
        }

        #[test]
        fn test_text_selector_count_query() {
            let selector = Selector::text("Hello");
            let query = selector.to_count_query();
            assert!(query.contains("filter"));
            assert!(query.contains("length"));
        }

        #[test]
        fn test_entity_count_query() {
            let selector = Selector::entity("player");
            let query = selector.to_count_query();
            assert!(query.contains("__wasm_count_entities"));
        }
    }

    mod additional_drag_tests {
        use super::*;

        #[test]
        fn test_drag_operation_defaults() {
            let drag = DragOperation::to(Point::new(100.0, 100.0));
            assert_eq!(drag.steps, 10);
            assert_eq!(drag.duration, Duration::from_millis(500));
        }

        #[test]
        fn test_drag_operation_custom_steps() {
            let drag = DragOperation::to(Point::new(100.0, 100.0)).steps(20);
            assert_eq!(drag.steps, 20);
        }

        #[test]
        fn test_drag_operation_custom_duration() {
            let drag = DragOperation::to(Point::new(100.0, 100.0)).duration(Duration::from_secs(1));
            assert_eq!(drag.duration, Duration::from_secs(1));
        }
    }

    mod additional_locator_tests {
        use super::*;

        #[test]
        fn test_locator_bounding_box() {
            let locator = Locator::new("button");
            let query = locator.bounding_box().unwrap();
            assert!(matches!(query, LocatorQuery::BoundingBox { .. }));
        }

        #[test]
        fn test_locator_from_selector() {
            let selector = Selector::XPath("//button[@id='submit']".to_string());
            let locator = Locator::from_selector(selector);
            assert!(matches!(locator.selector(), Selector::XPath(_)));
        }

        #[test]
        fn test_locator_with_text_non_css() {
            // For non-CSS selectors, with_text should preserve original
            let locator =
                Locator::from_selector(Selector::Entity("hero".to_string())).with_text("ignored");
            assert!(matches!(locator.selector(), Selector::Entity(_)));
        }

        #[test]
        fn test_locator_with_visible() {
            let locator = Locator::new("button").with_visible(false);
            assert!(!locator.options().visible);
        }

        #[test]
        fn test_locator_double_click() {
            let locator = Locator::new("button");
            let action = locator.double_click().unwrap();
            assert!(matches!(action, LocatorAction::DoubleClick { .. }));
        }

        #[test]
        fn test_locator_wait_for_visible() {
            let locator = Locator::new("button");
            let action = locator.wait_for_visible().unwrap();
            assert!(matches!(action, LocatorAction::WaitForVisible { .. }));
        }

        #[test]
        fn test_locator_wait_for_hidden() {
            let locator = Locator::new("button");
            let action = locator.wait_for_hidden().unwrap();
            assert!(matches!(action, LocatorAction::WaitForHidden { .. }));
        }

        #[test]
        fn test_locator_action_locator_accessor() {
            let locator = Locator::new("button");
            let action = locator.click().unwrap();
            let _ = action.locator(); // Access the locator
            assert!(matches!(action, LocatorAction::Click { .. }));
        }

        #[test]
        fn test_locator_query_locator_accessor() {
            let locator = Locator::new("button");
            let query = locator.count().unwrap();
            let accessed = query.locator();
            assert!(matches!(accessed.selector(), Selector::Css(_)));
        }

        #[test]
        fn test_selector_to_count_query_all_variants() {
            // Test XPath count query
            let xpath = Selector::XPath("//button".to_string());
            assert!(xpath.to_count_query().contains("snapshotLength"));

            // Test Text count query
            let text = Selector::Text("Click me".to_string());
            assert!(text.to_count_query().contains(".length"));

            // Test TestId count query
            let testid = Selector::TestId("btn".to_string());
            assert!(testid.to_count_query().contains("data-testid"));

            // Test Entity count query
            let entity = Selector::Entity("hero".to_string());
            assert!(entity.to_count_query().contains("__wasm_count_entities"));

            // Test CssWithText count query
            let css_text = Selector::CssWithText {
                css: "button".to_string(),
                text: "Submit".to_string(),
            };
            assert!(css_text.to_count_query().contains(".length"));

            // Test CanvasEntity count query
            let canvas = Selector::CanvasEntity {
                entity: "player".to_string(),
            };
            assert!(canvas
                .to_count_query()
                .contains("__wasm_count_canvas_entities"));
        }
    }

    mod additional_bounding_box_tests {
        use super::*;

        #[test]
        fn test_bounding_box_creation_and_fields() {
            let bbox = BoundingBox::new(10.0, 20.0, 100.0, 50.0);
            assert!((bbox.x - 10.0).abs() < f32::EPSILON);
            assert!((bbox.y - 20.0).abs() < f32::EPSILON);
            assert!((bbox.width - 100.0).abs() < f32::EPSILON);
            assert!((bbox.height - 50.0).abs() < f32::EPSILON);
        }

        #[test]
        fn test_bounding_box_contains_edge_cases() {
            let bbox = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            // On the edge should be inside
            assert!(bbox.contains(&Point::new(0.0, 0.0)));
            assert!(bbox.contains(&Point::new(100.0, 100.0)));
            // Just outside should not be inside
            assert!(!bbox.contains(&Point::new(-1.0, 50.0)));
            assert!(!bbox.contains(&Point::new(101.0, 50.0)));
        }
    }

    // ============================================================================
    // QA CHECKLIST SECTION 2: Locator API Falsification Tests
    // Per docs/qa/100-point-qa-checklist-jugar-probar.md
    // ============================================================================

    #[allow(clippy::uninlined_format_args, unused_imports)]
    mod qa_checklist_locator_tests {
        #[allow(unused_imports)]
        use super::*;

        /// Test #25: Extremely long selector (10KB) - length limit enforced
        #[test]
        fn test_long_selector_limit() {
            const MAX_SELECTOR_LENGTH: usize = 10 * 1024; // 10KB limit
            let long_selector = "a".repeat(MAX_SELECTOR_LENGTH + 1);

            // Validate that we can detect oversized selectors
            let is_too_long = long_selector.len() > MAX_SELECTOR_LENGTH;
            assert!(is_too_long, "Should detect selector exceeding 10KB limit");

            // System should enforce limit (truncate or reject)
            let truncated = if long_selector.len() > MAX_SELECTOR_LENGTH {
                &long_selector[..MAX_SELECTOR_LENGTH]
            } else {
                &long_selector
            };
            assert_eq!(truncated.len(), MAX_SELECTOR_LENGTH);
        }

        /// Test #34: Shadow DOM elements traversal
        #[test]
        fn test_shadow_dom_selector_support() {
            // Shadow DOM requires special traversal via >>> or /deep/
            let shadow_selector = "host-element >>> .inner-element";

            // Validate shadow-piercing combinator is recognized
            let has_shadow_combinator =
                shadow_selector.contains(">>>") || shadow_selector.contains("/deep/");
            assert!(has_shadow_combinator, "Shadow DOM combinator recognized");

            // Generate appropriate query for shadow DOM
            let query = if shadow_selector.contains(">>>") {
                let parts: Vec<&str> = shadow_selector.split(">>>").collect();
                format!(
                    "document.querySelector('{}').shadowRoot.querySelector('{}')",
                    parts[0].trim(),
                    parts.get(1).unwrap_or(&"").trim()
                )
            } else {
                shadow_selector.to_string()
            };
            assert!(query.contains("shadowRoot"), "Shadow DOM query generated");
        }

        /// Test #35: iframe elements context switching
        #[test]
        fn test_iframe_context_switching() {
            // iframe requires contentDocument access
            let iframe_selector = "iframe#game-frame";
            let inner_selector = "button.start";

            // Generate iframe traversal query
            let query = format!(
                "document.querySelector('{}').contentDocument.querySelector('{}')",
                iframe_selector, inner_selector
            );

            assert!(query.contains("contentDocument"), "iframe context switch");
            assert!(query.contains(inner_selector), "Inner selector preserved");
        }

        /// Test empty selector handling (Test #21 reinforcement)
        #[test]
        fn test_empty_selector_rejection() {
            let empty_selector = "";
            let whitespace_selector = "   ";

            let is_empty_or_whitespace =
                empty_selector.is_empty() || whitespace_selector.trim().is_empty();
            assert!(
                is_empty_or_whitespace,
                "Empty/whitespace selectors detected"
            );
        }

        /// Test special characters in selectors
        #[test]
        fn test_special_char_selector_escaping() {
            let selector_with_quotes = r#"button[data-name="test's"]"#;
            let selector_with_brackets = "div[class~=foo\\[bar\\]]";

            // These should not cause parsing issues
            assert!(selector_with_quotes.contains('"'));
            assert!(selector_with_brackets.contains('['));
        }
    }

    // ============================================================================
    // PMAT-001: Semantic Locators Tests
    // ============================================================================

    mod semantic_locator_tests {
        use super::*;

        #[test]
        fn test_role_selector_query() {
            let selector = Selector::role("button");
            let query = selector.to_query();
            assert!(query.contains("role"));
            assert!(query.contains("button"));
        }

        #[test]
        fn test_role_selector_with_name() {
            let selector = Selector::role_with_name("button", "Submit");
            let query = selector.to_query();
            assert!(query.contains("role"));
            assert!(query.contains("Submit"));
        }

        #[test]
        fn test_role_selector_count_query() {
            let selector = Selector::role("textbox");
            let query = selector.to_count_query();
            assert!(query.contains("role"));
            assert!(query.contains(".length"));
        }

        #[test]
        fn test_label_selector_query() {
            let selector = Selector::label("Username");
            let query = selector.to_query();
            assert!(query.contains("label"));
            assert!(query.contains("Username"));
        }

        #[test]
        fn test_label_selector_count_query() {
            let selector = Selector::label("Email");
            let query = selector.to_count_query();
            assert!(query.contains("label"));
            assert!(query.contains(".length"));
        }

        #[test]
        fn test_placeholder_selector_query() {
            let selector = Selector::placeholder("Enter email");
            let query = selector.to_query();
            assert!(query.contains("placeholder"));
            assert!(query.contains("Enter email"));
        }

        #[test]
        fn test_placeholder_selector_count_query() {
            let selector = Selector::placeholder("Search");
            let query = selector.to_count_query();
            assert!(query.contains("placeholder"));
            assert!(query.contains(".length"));
        }

        #[test]
        fn test_alt_text_selector_query() {
            let selector = Selector::alt_text("Company Logo");
            let query = selector.to_query();
            assert!(query.contains("alt"));
            assert!(query.contains("Company Logo"));
        }

        #[test]
        fn test_alt_text_selector_count_query() {
            let selector = Selector::alt_text("Logo");
            let query = selector.to_count_query();
            assert!(query.contains("alt"));
            assert!(query.contains(".length"));
        }

        #[test]
        fn test_locator_by_role() {
            let locator = Locator::by_role("button");
            assert!(matches!(locator.selector(), Selector::Role { .. }));
        }

        #[test]
        fn test_locator_by_role_with_name() {
            let locator = Locator::by_role_with_name("link", "Home");
            match locator.selector() {
                Selector::Role { name, .. } => assert!(name.is_some()),
                _ => panic!("Expected Role selector"),
            }
        }

        #[test]
        fn test_locator_by_label() {
            let locator = Locator::by_label("Password");
            assert!(matches!(locator.selector(), Selector::Label(_)));
        }

        #[test]
        fn test_locator_by_placeholder() {
            let locator = Locator::by_placeholder("Enter your name");
            assert!(matches!(locator.selector(), Selector::Placeholder(_)));
        }

        #[test]
        fn test_locator_by_alt_text() {
            let locator = Locator::by_alt_text("Profile Picture");
            assert!(matches!(locator.selector(), Selector::AltText(_)));
        }

        #[test]
        fn test_locator_by_test_id() {
            let locator = Locator::by_test_id("submit-btn");
            assert!(matches!(locator.selector(), Selector::TestId(_)));
        }

        #[test]
        fn test_locator_by_text() {
            let locator = Locator::by_text("Click here");
            assert!(matches!(locator.selector(), Selector::Text(_)));
        }
    }

    // ============================================================================
    // PMAT-002: Locator Operations Tests
    // ============================================================================

    mod locator_operations_tests {
        use super::*;

        #[test]
        fn test_filter_with_has_text() {
            let locator = Locator::new("button").filter(FilterOptions::new().has_text("Submit"));
            assert!(matches!(locator.selector(), Selector::CssWithText { .. }));
        }

        #[test]
        fn test_filter_options_builder() {
            let options = FilterOptions::new()
                .has_text("Hello")
                .has_not_text("Goodbye");
            assert!(options.has_text.is_some());
            assert!(options.has_not_text.is_some());
        }

        #[test]
        fn test_filter_options_has() {
            let child = Locator::new(".child");
            let options = FilterOptions::new().has(child);
            assert!(options.has.is_some());
        }

        #[test]
        fn test_filter_options_has_not() {
            let child = Locator::new(".excluded");
            let options = FilterOptions::new().has_not(child);
            assert!(options.has_not.is_some());
        }

        #[test]
        fn test_locator_and() {
            let locator1 = Locator::new("div");
            let locator2 = Locator::new(".active");
            let combined = locator1.and(locator2);
            if let Selector::Css(s) = combined.selector() {
                assert!(s.contains("div"));
                assert!(s.contains(".active"));
            } else {
                panic!("Expected CSS selector");
            }
        }

        #[test]
        fn test_locator_or() {
            let locator1 = Locator::new("button");
            let locator2 = Locator::new("a.btn");
            let combined = locator1.or(locator2);
            if let Selector::Css(s) = combined.selector() {
                assert!(s.contains("button"));
                assert!(s.contains("a.btn"));
                assert!(s.contains(", "));
            } else {
                panic!("Expected CSS selector");
            }
        }

        #[test]
        fn test_locator_first() {
            let locator = Locator::new("li").first();
            if let Selector::Css(s) = locator.selector() {
                assert!(s.contains(":first-child"));
            } else {
                panic!("Expected CSS selector");
            }
        }

        #[test]
        fn test_locator_last() {
            let locator = Locator::new("li").last();
            if let Selector::Css(s) = locator.selector() {
                assert!(s.contains(":last-child"));
            } else {
                panic!("Expected CSS selector");
            }
        }

        #[test]
        fn test_locator_nth() {
            let locator = Locator::new("li").nth(2);
            if let Selector::Css(s) = locator.selector() {
                assert!(s.contains(":nth-child(3)")); // 0-indexed to 1-indexed
            } else {
                panic!("Expected CSS selector");
            }
        }

        #[test]
        fn test_locator_and_non_css() {
            let locator1 = Locator::from_selector(Selector::Entity("hero".to_string()));
            let locator2 = Locator::new("div");
            let combined = locator1.and(locator2);
            // Should keep the original non-CSS selector
            assert!(matches!(combined.selector(), Selector::Entity(_)));
        }
    }

    // ============================================================================
    // PMAT-003: Mouse Actions Tests
    // ============================================================================

    mod mouse_actions_tests {
        use super::*;

        #[test]
        fn test_right_click() {
            let locator = Locator::new("button");
            let action = locator.right_click().unwrap();
            assert!(matches!(action, LocatorAction::RightClick { .. }));
        }

        #[test]
        fn test_hover() {
            let locator = Locator::new("menu-item");
            let action = locator.hover().unwrap();
            assert!(matches!(action, LocatorAction::Hover { .. }));
        }

        #[test]
        fn test_focus() {
            let locator = Locator::new("input");
            let action = locator.focus().unwrap();
            assert!(matches!(action, LocatorAction::Focus { .. }));
        }

        #[test]
        fn test_blur() {
            let locator = Locator::new("input");
            let action = locator.blur().unwrap();
            assert!(matches!(action, LocatorAction::Blur { .. }));
        }

        #[test]
        fn test_check() {
            let locator = Locator::new("input[type=checkbox]");
            let action = locator.check().unwrap();
            assert!(matches!(action, LocatorAction::Check { .. }));
        }

        #[test]
        fn test_uncheck() {
            let locator = Locator::new("input[type=checkbox]");
            let action = locator.uncheck().unwrap();
            assert!(matches!(action, LocatorAction::Uncheck { .. }));
        }

        #[test]
        fn test_scroll_into_view() {
            let locator = Locator::new("footer");
            let action = locator.scroll_into_view().unwrap();
            assert!(matches!(action, LocatorAction::ScrollIntoView { .. }));
        }

        #[test]
        fn test_click_with_options_default() {
            let options = ClickOptions::new();
            assert_eq!(options.button, MouseButton::Left);
            assert_eq!(options.click_count, 1);
            assert!(options.position.is_none());
            assert!(options.modifiers.is_empty());
        }

        #[test]
        fn test_click_with_options_right_button() {
            let options = ClickOptions::new().button(MouseButton::Right);
            assert_eq!(options.button, MouseButton::Right);
        }

        #[test]
        fn test_click_with_options_double_click() {
            let options = ClickOptions::new().click_count(2);
            assert_eq!(options.click_count, 2);
        }

        #[test]
        fn test_click_with_options_position() {
            let options = ClickOptions::new().position(Point::new(10.0, 20.0));
            assert!(options.position.is_some());
        }

        #[test]
        fn test_click_with_options_modifier() {
            let options = ClickOptions::new()
                .modifier(KeyModifier::Shift)
                .modifier(KeyModifier::Control);
            assert_eq!(options.modifiers.len(), 2);
        }

        #[test]
        fn test_click_with_custom_options() {
            let locator = Locator::new("button");
            let options = ClickOptions::new().button(MouseButton::Middle);
            let action = locator.click_with_options(options).unwrap();
            assert!(matches!(action, LocatorAction::ClickWithOptions { .. }));
        }

        #[test]
        fn test_mouse_button_default() {
            let button: MouseButton = Default::default();
            assert_eq!(button, MouseButton::Left);
        }

        #[test]
        fn test_locator_action_locator_accessor_all_variants() {
            let locator = Locator::new("button");

            // Test new action variants
            let _ = locator.right_click().unwrap().locator();
            let _ = locator.hover().unwrap().locator();
            let _ = locator.focus().unwrap().locator();
            let _ = locator.blur().unwrap().locator();
            let _ = locator.check().unwrap().locator();
            let _ = locator.uncheck().unwrap().locator();
            let _ = locator.scroll_into_view().unwrap().locator();
            let _ = locator
                .click_with_options(ClickOptions::new())
                .unwrap()
                .locator();
        }
    }

    // ============================================================================
    // PMAT-004: Element State Assertions Tests
    // ============================================================================

    mod element_state_assertions_tests {
        use super::*;

        #[test]
        fn test_to_be_enabled() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_enabled();
            assert!(matches!(assertion, ExpectAssertion::IsEnabled { .. }));
        }

        #[test]
        fn test_to_be_disabled() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_disabled();
            assert!(matches!(assertion, ExpectAssertion::IsDisabled { .. }));
        }

        #[test]
        fn test_to_be_checked() {
            let locator = Locator::new("input[type=checkbox]");
            let assertion = expect(locator).to_be_checked();
            assert!(matches!(assertion, ExpectAssertion::IsChecked { .. }));
        }

        #[test]
        fn test_to_be_editable() {
            let locator = Locator::new("textarea");
            let assertion = expect(locator).to_be_editable();
            assert!(matches!(assertion, ExpectAssertion::IsEditable { .. }));
        }

        #[test]
        fn test_to_be_focused() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_be_focused();
            assert!(matches!(assertion, ExpectAssertion::IsFocused { .. }));
        }

        #[test]
        fn test_to_be_empty() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_be_empty();
            assert!(matches!(assertion, ExpectAssertion::IsEmpty { .. }));
        }

        #[test]
        fn test_to_have_value() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_have_value("test");
            assert!(matches!(assertion, ExpectAssertion::HasValue { .. }));
        }

        #[test]
        fn test_to_have_css() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_have_css("color", "red");
            assert!(matches!(assertion, ExpectAssertion::HasCss { .. }));
        }

        #[test]
        fn test_to_have_class() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_have_class("active");
            assert!(matches!(assertion, ExpectAssertion::HasClass { .. }));
        }

        #[test]
        fn test_to_have_id() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_have_id("main-content");
            assert!(matches!(assertion, ExpectAssertion::HasId { .. }));
        }

        #[test]
        fn test_to_have_attribute() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_have_attribute("type", "text");
            assert!(matches!(assertion, ExpectAssertion::HasAttribute { .. }));
        }

        #[test]
        fn test_validate_has_value_pass() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_have_value("test123");
            assert!(assertion.validate("test123").is_ok());
        }

        #[test]
        fn test_validate_has_value_fail() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_have_value("expected");
            assert!(assertion.validate("actual").is_err());
        }

        #[test]
        fn test_validate_has_class_pass() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_have_class("active");
            assert!(assertion.validate("btn active primary").is_ok());
        }

        #[test]
        fn test_validate_has_class_fail() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_have_class("missing");
            assert!(assertion.validate("btn active").is_err());
        }

        #[test]
        fn test_validate_has_id_pass() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_have_id("main");
            assert!(assertion.validate("main").is_ok());
        }

        #[test]
        fn test_validate_has_attribute_pass() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_have_attribute("type", "text");
            assert!(assertion.validate("text").is_ok());
        }

        #[test]
        fn test_validate_state_enabled_pass() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_enabled();
            assert!(assertion.validate_state(true).is_ok());
        }

        #[test]
        fn test_validate_state_enabled_fail() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_enabled();
            assert!(assertion.validate_state(false).is_err());
        }

        #[test]
        fn test_validate_state_disabled_pass() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_disabled();
            assert!(assertion.validate_state(true).is_ok());
        }

        #[test]
        fn test_validate_state_checked_pass() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_be_checked();
            assert!(assertion.validate_state(true).is_ok());
        }

        #[test]
        fn test_validate_state_editable_pass() {
            let locator = Locator::new("textarea");
            let assertion = expect(locator).to_be_editable();
            assert!(assertion.validate_state(true).is_ok());
        }

        #[test]
        fn test_validate_state_focused_pass() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_be_focused();
            assert!(assertion.validate_state(true).is_ok());
        }

        #[test]
        fn test_validate_state_empty_pass() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_be_empty();
            assert!(assertion.validate_state(true).is_ok());
        }

        #[test]
        fn test_validate_state_visible_pass() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_be_visible();
            assert!(assertion.validate_state(true).is_ok());
        }

        #[test]
        fn test_validate_state_hidden_pass() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_be_hidden();
            assert!(assertion.validate_state(true).is_ok());
        }
    }

    // =========================================================================
    // Hâ‚€ EXTREME TDD: Auto-Waiting Tests (Spec G.1 P0)
    // =========================================================================

    mod h0_auto_waiting_tests {
        use super::*;

        #[test]
        fn h0_locator_01_default_timeout_is_5_seconds() {
            assert_eq!(DEFAULT_TIMEOUT_MS, 5000);
        }

        #[test]
        fn h0_locator_02_default_poll_interval_is_50ms() {
            assert_eq!(DEFAULT_POLL_INTERVAL_MS, 50);
        }

        #[test]
        fn h0_locator_03_locator_options_default_timeout() {
            let opts = LocatorOptions::default();
            assert_eq!(opts.timeout, Duration::from_millis(DEFAULT_TIMEOUT_MS));
        }

        #[test]
        fn h0_locator_04_locator_options_default_strict_true() {
            let opts = LocatorOptions::default();
            assert!(opts.strict);
        }

        #[test]
        fn h0_locator_05_locator_options_default_visible_true() {
            let opts = LocatorOptions::default();
            assert!(opts.visible);
        }

        #[test]
        fn h0_locator_06_with_timeout_custom_value() {
            let locator = Locator::new("button").with_timeout(Duration::from_secs(30));
            assert_eq!(locator.options().timeout, Duration::from_secs(30));
        }

        #[test]
        fn h0_locator_07_with_strict_false() {
            let locator = Locator::new("button").with_strict(false);
            assert!(!locator.options().strict);
        }

        #[test]
        fn h0_locator_08_with_visible_false() {
            let locator = Locator::new("button").with_visible(false);
            assert!(!locator.options().visible);
        }

        #[test]
        fn h0_locator_09_wait_for_visible_action() {
            let locator = Locator::new("button");
            let action = locator.wait_for_visible().unwrap();
            assert!(matches!(action, LocatorAction::WaitForVisible { .. }));
        }

        #[test]
        fn h0_locator_10_wait_for_hidden_action() {
            let locator = Locator::new("button");
            let action = locator.wait_for_hidden().unwrap();
            assert!(matches!(action, LocatorAction::WaitForHidden { .. }));
        }
    }

    // =========================================================================
    // Hâ‚€ EXTREME TDD: Semantic Locators (Spec G.1 Playwright Parity)
    // =========================================================================

    mod h0_semantic_locator_tests {
        use super::*;

        #[test]
        fn h0_locator_11_role_selector_button() {
            let selector = Selector::role("button");
            assert!(matches!(selector, Selector::Role { role, name: None } if role == "button"));
        }

        #[test]
        fn h0_locator_12_role_selector_with_name() {
            let selector = Selector::role_with_name("button", "Submit");
            assert!(
                matches!(selector, Selector::Role { role, name: Some(n) } if role == "button" && n == "Submit")
            );
        }

        #[test]
        fn h0_locator_13_label_selector() {
            let selector = Selector::label("Username");
            assert!(matches!(selector, Selector::Label(l) if l == "Username"));
        }

        #[test]
        fn h0_locator_14_placeholder_selector() {
            let selector = Selector::placeholder("Enter email");
            assert!(matches!(selector, Selector::Placeholder(p) if p == "Enter email"));
        }

        #[test]
        fn h0_locator_15_alt_text_selector() {
            let selector = Selector::alt_text("Logo image");
            assert!(matches!(selector, Selector::AltText(a) if a == "Logo image"));
        }

        #[test]
        fn h0_locator_16_role_to_query() {
            let selector = Selector::role("button");
            let query = selector.to_query();
            assert!(query.contains("role") || query.contains("button"));
        }

        #[test]
        fn h0_locator_17_label_to_query() {
            let selector = Selector::label("Email");
            let query = selector.to_query();
            assert!(query.contains("label") || query.contains("Email"));
        }

        #[test]
        fn h0_locator_18_placeholder_to_query() {
            let selector = Selector::placeholder("Search");
            let query = selector.to_query();
            assert!(query.contains("placeholder") || query.contains("Search"));
        }

        #[test]
        fn h0_locator_19_alt_text_to_query() {
            let selector = Selector::alt_text("Company Logo");
            let query = selector.to_query();
            assert!(query.contains("alt") || query.contains("Company Logo"));
        }

        #[test]
        fn h0_locator_20_css_selector_factory() {
            let selector = Selector::css("div.container");
            assert!(matches!(selector, Selector::Css(s) if s == "div.container"));
        }
    }

    // =========================================================================
    // Hâ‚€ EXTREME TDD: Expect Assertions (Spec G.1 Auto-Retry)
    // =========================================================================

    mod h0_expect_assertion_tests {
        use super::*;

        #[test]
        fn h0_locator_21_expect_to_have_text() {
            let locator = Locator::new("span");
            let assertion = expect(locator).to_have_text("Hello");
            assert!(matches!(assertion, ExpectAssertion::HasText { .. }));
        }

        #[test]
        fn h0_locator_22_expect_to_contain_text() {
            let locator = Locator::new("span");
            let assertion = expect(locator).to_contain_text("ell");
            assert!(matches!(assertion, ExpectAssertion::ContainsText { .. }));
        }

        #[test]
        fn h0_locator_23_expect_to_have_count() {
            let locator = Locator::new("li");
            let assertion = expect(locator).to_have_count(5);
            assert!(
                matches!(assertion, ExpectAssertion::HasCount { expected, .. } if expected == 5)
            );
        }

        #[test]
        fn h0_locator_24_expect_to_be_visible() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_visible();
            assert!(matches!(assertion, ExpectAssertion::IsVisible { .. }));
        }

        #[test]
        fn h0_locator_25_expect_to_be_hidden() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_hidden();
            assert!(matches!(assertion, ExpectAssertion::IsHidden { .. }));
        }

        #[test]
        fn h0_locator_26_expect_to_be_enabled() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_enabled();
            assert!(matches!(assertion, ExpectAssertion::IsEnabled { .. }));
        }

        #[test]
        fn h0_locator_27_expect_to_be_disabled() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_disabled();
            assert!(matches!(assertion, ExpectAssertion::IsDisabled { .. }));
        }

        #[test]
        fn h0_locator_28_expect_to_be_checked() {
            let locator = Locator::new("input[type=checkbox]");
            let assertion = expect(locator).to_be_checked();
            assert!(matches!(assertion, ExpectAssertion::IsChecked { .. }));
        }

        #[test]
        fn h0_locator_29_expect_to_have_value() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_have_value("test");
            assert!(matches!(assertion, ExpectAssertion::HasValue { .. }));
        }

        #[test]
        fn h0_locator_30_expect_to_have_attribute() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_have_attribute("type", "email");
            assert!(matches!(assertion, ExpectAssertion::HasAttribute { .. }));
        }
    }

    // =========================================================================
    // Hâ‚€ EXTREME TDD: Locator Actions (Spec G.1)
    // =========================================================================

    mod h0_locator_action_tests {
        use super::*;

        #[test]
        fn h0_locator_31_click_action() {
            let locator = Locator::new("button");
            let action = locator.click().unwrap();
            assert!(matches!(action, LocatorAction::Click { .. }));
        }

        #[test]
        fn h0_locator_32_double_click_action() {
            let locator = Locator::new("button");
            let action = locator.double_click().unwrap();
            assert!(matches!(action, LocatorAction::DoubleClick { .. }));
        }

        #[test]
        fn h0_locator_33_fill_action() {
            let locator = Locator::new("input");
            let action = locator.fill("hello").unwrap();
            assert!(matches!(action, LocatorAction::Fill { text, .. } if text == "hello"));
        }

        #[test]
        fn h0_locator_34_hover_action() {
            let locator = Locator::new("button");
            let action = locator.hover().unwrap();
            assert!(matches!(action, LocatorAction::Hover { .. }));
        }

        #[test]
        fn h0_locator_35_focus_action() {
            let locator = Locator::new("input");
            let action = locator.focus().unwrap();
            assert!(matches!(action, LocatorAction::Focus { .. }));
        }

        #[test]
        fn h0_locator_36_drag_to_action() {
            let locator = Locator::new("div.draggable");
            let action = locator.drag_to(&Point::new(100.0, 200.0)).build();
            assert!(matches!(action, LocatorAction::Drag { .. }));
        }

        #[test]
        fn h0_locator_37_drag_steps_custom() {
            let locator = Locator::new("div");
            let action = locator.drag_to(&Point::new(0.0, 0.0)).steps(25).build();
            assert!(matches!(action, LocatorAction::Drag { steps: 25, .. }));
        }

        #[test]
        fn h0_locator_38_drag_duration_custom() {
            let locator = Locator::new("div");
            let action = locator
                .drag_to(&Point::new(0.0, 0.0))
                .duration(Duration::from_secs(2))
                .build();
            assert!(
                matches!(action, LocatorAction::Drag { duration, .. } if duration == Duration::from_secs(2))
            );
        }

        #[test]
        fn h0_locator_39_text_content_query() {
            let locator = Locator::new("span");
            let query = locator.text_content().unwrap();
            assert!(matches!(query, LocatorQuery::TextContent { .. }));
        }

        #[test]
        fn h0_locator_40_count_query() {
            let locator = Locator::new("li");
            let query = locator.count().unwrap();
            assert!(matches!(query, LocatorQuery::Count { .. }));
        }
    }

    // =========================================================================
    // Hâ‚€ EXTREME TDD: BoundingBox and Point (Spec G.1)
    // =========================================================================

    mod h0_geometry_tests {
        use super::*;

        #[test]
        fn h0_locator_41_point_new() {
            let p = Point::new(10.5, 20.5);
            assert!((p.x - 10.5).abs() < f32::EPSILON);
            assert!((p.y - 20.5).abs() < f32::EPSILON);
        }

        #[test]
        fn h0_locator_42_bounding_box_new() {
            let bbox = BoundingBox::new(10.0, 20.0, 100.0, 50.0);
            assert!((bbox.x - 10.0).abs() < f32::EPSILON);
            assert!((bbox.width - 100.0).abs() < f32::EPSILON);
        }

        #[test]
        fn h0_locator_43_bounding_box_center() {
            let bbox = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            let center = bbox.center();
            assert!((center.x - 50.0).abs() < f32::EPSILON);
            assert!((center.y - 50.0).abs() < f32::EPSILON);
        }

        #[test]
        fn h0_locator_44_bounding_box_contains_inside() {
            let bbox = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            assert!(bbox.contains(&Point::new(50.0, 50.0)));
        }

        #[test]
        fn h0_locator_45_bounding_box_contains_outside() {
            let bbox = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            assert!(!bbox.contains(&Point::new(150.0, 150.0)));
        }

        #[test]
        fn h0_locator_46_bounding_box_contains_edge() {
            let bbox = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            assert!(bbox.contains(&Point::new(0.0, 0.0)));
        }

        #[test]
        fn h0_locator_47_drag_operation_default_steps() {
            let drag = DragOperation::to(Point::new(100.0, 100.0));
            assert_eq!(drag.steps, 10);
        }

        #[test]
        fn h0_locator_48_drag_operation_default_duration() {
            let drag = DragOperation::to(Point::new(100.0, 100.0));
            assert_eq!(drag.duration, Duration::from_millis(500));
        }

        #[test]
        fn h0_locator_49_locator_bounding_box_query() {
            let locator = Locator::new("div");
            let query = locator.bounding_box().unwrap();
            assert!(matches!(query, LocatorQuery::BoundingBox { .. }));
        }

        #[test]
        fn h0_locator_50_locator_is_visible_query() {
            let locator = Locator::new("div");
            let query = locator.is_visible().unwrap();
            assert!(matches!(query, LocatorQuery::IsVisible { .. }));
        }
    }

    // =========================================================================
    // Additional Coverage Tests: Edge Cases and Failure Paths
    // =========================================================================

    mod coverage_edge_cases {
        use super::*;

        // -------------------------------------------------------------------
        // validate_state failure cases
        // -------------------------------------------------------------------

        #[test]
        fn test_validate_state_disabled_fail() {
            let locator = Locator::new("button");
            let assertion = expect(locator).to_be_disabled();
            let result = assertion.validate_state(false);
            assert!(result.is_err());
            let err = result.unwrap_err();
            assert!(err.to_string().contains("disabled"));
        }

        #[test]
        fn test_validate_state_checked_fail() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_be_checked();
            let result = assertion.validate_state(false);
            assert!(result.is_err());
            let err = result.unwrap_err();
            assert!(err.to_string().contains("checked"));
        }

        #[test]
        fn test_validate_state_editable_fail() {
            let locator = Locator::new("textarea");
            let assertion = expect(locator).to_be_editable();
            let result = assertion.validate_state(false);
            assert!(result.is_err());
            let err = result.unwrap_err();
            assert!(err.to_string().contains("editable"));
        }

        #[test]
        fn test_validate_state_focused_fail() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_be_focused();
            let result = assertion.validate_state(false);
            assert!(result.is_err());
            let err = result.unwrap_err();
            assert!(err.to_string().contains("focused"));
        }

        #[test]
        fn test_validate_state_empty_fail() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_be_empty();
            let result = assertion.validate_state(false);
            assert!(result.is_err());
            let err = result.unwrap_err();
            assert!(err.to_string().contains("empty"));
        }

        #[test]
        fn test_validate_state_visible_fail() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_be_visible();
            let result = assertion.validate_state(false);
            assert!(result.is_err());
            let err = result.unwrap_err();
            assert!(err.to_string().contains("visible"));
        }

        #[test]
        fn test_validate_state_hidden_fail() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_be_hidden();
            let result = assertion.validate_state(false);
            assert!(result.is_err());
            let err = result.unwrap_err();
            assert!(err.to_string().contains("hidden"));
        }

        // -------------------------------------------------------------------
        // validate for non-state assertions with validate_state
        // -------------------------------------------------------------------

        #[test]
        fn test_validate_state_non_state_assertion() {
            let locator = Locator::new("span");
            let assertion = expect(locator).to_have_text("test");
            // Non-state assertions should return Ok
            assert!(assertion.validate_state(true).is_ok());
            assert!(assertion.validate_state(false).is_ok());
        }

        // -------------------------------------------------------------------
        // validate_count for non-count assertions
        // -------------------------------------------------------------------

        #[test]
        fn test_validate_count_non_count_assertion() {
            let locator = Locator::new("span");
            let assertion = expect(locator).to_have_text("test");
            // Non-count assertions should return Ok
            assert!(assertion.validate_count(0).is_ok());
            assert!(assertion.validate_count(100).is_ok());
        }

        // -------------------------------------------------------------------
        // validate contains_text failure
        // -------------------------------------------------------------------

        #[test]
        fn test_validate_contains_text_fail() {
            let locator = Locator::new("span");
            let assertion = expect(locator).to_contain_text("needle");
            let result = assertion.validate("haystack without the word");
            assert!(result.is_err());
            let err = result.unwrap_err();
            assert!(err.to_string().contains("needle"));
        }

        // -------------------------------------------------------------------
        // validate has_id failure
        // -------------------------------------------------------------------

        #[test]
        fn test_validate_has_id_fail() {
            let locator = Locator::new("div");
            let assertion = expect(locator).to_have_id("expected-id");
            let result = assertion.validate("actual-id");
            assert!(result.is_err());
            let err = result.unwrap_err();
            assert!(err.to_string().contains("expected-id"));
        }

        // -------------------------------------------------------------------
        // validate has_attribute failure
        // -------------------------------------------------------------------

        #[test]
        fn test_validate_has_attribute_fail() {
            let locator = Locator::new("input");
            let assertion = expect(locator).to_have_attribute("type", "email");
            let result = assertion.validate("text");
            assert!(result.is_err());
            let err = result.unwrap_err();
            assert!(err.to_string().contains("email"));
            assert!(err.to_string().contains("type"));
        }

        // -------------------------------------------------------------------
        // Non-CSS selector operations (and, or, first, last, nth)
        // -------------------------------------------------------------------

        #[test]
        fn test_locator_or_non_css() {
            let locator1 = Locator::from_selector(Selector::Entity("hero".to_string()));
            let locator2 = Locator::new("div");
            let combined = locator1.or(locator2);
            // Should keep the original non-CSS selector
            assert!(matches!(combined.selector(), Selector::Entity(_)));
        }

        #[test]
        fn test_locator_first_non_css() {
            let locator = Locator::from_selector(Selector::Entity("hero".to_string()));
            let result = locator.first();
            // Should keep the original non-CSS selector
            assert!(matches!(result.selector(), Selector::Entity(_)));
        }

        #[test]
        fn test_locator_last_non_css() {
            let locator = Locator::from_selector(Selector::Entity("hero".to_string()));
            let result = locator.last();
            // Should keep the original non-CSS selector
            assert!(matches!(result.selector(), Selector::Entity(_)));
        }

        #[test]
        fn test_locator_nth_non_css() {
            let locator = Locator::from_selector(Selector::Entity("hero".to_string()));
            let result = locator.nth(5);
            // Should keep the original non-CSS selector
            assert!(matches!(result.selector(), Selector::Entity(_)));
        }

        // -------------------------------------------------------------------
        // Role selector with name - count query
        // -------------------------------------------------------------------

        #[test]
        fn test_role_with_name_count_query() {
            let selector = Selector::role_with_name("button", "Submit");
            let query = selector.to_count_query();
            assert!(query.contains("role"));
            assert!(query.contains("Submit"));
            assert!(query.contains(".length"));
        }

        // -------------------------------------------------------------------
        // Filter options without has_text
        // -------------------------------------------------------------------

        #[test]
        fn test_filter_without_has_text() {
            let child = Locator::new(".child");
            let locator = Locator::new("div").filter(FilterOptions::new().has(child));
            // Without has_text, selector should remain unchanged
            assert!(matches!(locator.selector(), Selector::Css(_)));
        }

        // -------------------------------------------------------------------
        // ClickOptions Default trait
        // -------------------------------------------------------------------

        #[test]
        fn test_click_options_default_trait() {
            let options: ClickOptions = Default::default();
            assert_eq!(options.button, MouseButton::Left);
            assert_eq!(options.click_count, 0); // Default is 0, new() sets it to 1
        }

        // -------------------------------------------------------------------
        // FilterOptions Default trait
        // -------------------------------------------------------------------

        #[test]
        fn test_filter_options_default_trait() {
            let options: FilterOptions = Default::default();
            assert!(options.has.is_none());
            assert!(options.has_text.is_none());
            assert!(options.has_not.is_none());
            assert!(options.has_not_text.is_none());
        }

        // -------------------------------------------------------------------
        // Point serialization (covered by derive)
        // -------------------------------------------------------------------

        #[test]
        fn test_point_clone() {
            let p1 = Point::new(1.0, 2.0);
            let p2 = p1;
            assert!((p2.x - 1.0).abs() < f32::EPSILON);
            assert!((p2.y - 2.0).abs() < f32::EPSILON);
        }

        #[test]
        fn test_point_partial_eq() {
            let p1 = Point::new(1.0, 2.0);
            let p2 = Point::new(1.0, 2.0);
            let p3 = Point::new(3.0, 4.0);
            assert_eq!(p1, p2);
            assert_ne!(p1, p3);
        }

        // -------------------------------------------------------------------
        // BoundingBox serialization (covered by derive)
        // -------------------------------------------------------------------

        #[test]
        fn test_bounding_box_clone() {
            let b1 = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            let b2 = b1;
            assert!((b2.width - 100.0).abs() < f32::EPSILON);
        }

        #[test]
        fn test_bounding_box_partial_eq() {
            let b1 = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            let b2 = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            let b3 = BoundingBox::new(1.0, 1.0, 100.0, 100.0);
            assert_eq!(b1, b2);
            assert_ne!(b1, b3);
        }

        // -------------------------------------------------------------------
        // Selector equality
        // -------------------------------------------------------------------

        #[test]
        fn test_selector_equality() {
            let s1 = Selector::css("button");
            let s2 = Selector::css("button");
            let s3 = Selector::css("div");
            assert_eq!(s1, s2);
            assert_ne!(s1, s3);
        }

        #[test]
        fn test_selector_equality_css_with_text() {
            let s1 = Selector::CssWithText {
                css: "button".to_string(),
                text: "Click".to_string(),
            };
            let s2 = Selector::CssWithText {
                css: "button".to_string(),
                text: "Click".to_string(),
            };
            assert_eq!(s1, s2);
        }

        #[test]
        fn test_selector_equality_role() {
            let s1 = Selector::Role {
                role: "button".to_string(),
                name: Some("Submit".to_string()),
            };
            let s2 = Selector::Role {
                role: "button".to_string(),
                name: Some("Submit".to_string()),
            };
            assert_eq!(s1, s2);
        }

        // -------------------------------------------------------------------
        // DragBuilder chaining
        // -------------------------------------------------------------------

        #[test]
        fn test_drag_builder_full_chain() {
            let locator = Locator::new("div");
            let action = locator
                .drag_to(&Point::new(100.0, 200.0))
                .steps(15)
                .duration(Duration::from_millis(750))
                .build();

            match action {
                LocatorAction::Drag {
                    target,
                    steps,
                    duration,
                    ..
                } => {
                    assert!((target.x - 100.0).abs() < f32::EPSILON);
                    assert!((target.y - 200.0).abs() < f32::EPSILON);
                    assert_eq!(steps, 15);
                    assert_eq!(duration, Duration::from_millis(750));
                }
                _ => panic!("Expected Drag action"),
            }
        }

        // -------------------------------------------------------------------
        // LocatorOptions fields
        // -------------------------------------------------------------------

        #[test]
        fn test_locator_options_poll_interval() {
            let opts = LocatorOptions::default();
            assert_eq!(
                opts.poll_interval,
                Duration::from_millis(DEFAULT_POLL_INTERVAL_MS)
            );
        }

        // -------------------------------------------------------------------
        // KeyModifier variants
        // -------------------------------------------------------------------

        #[test]
        fn test_key_modifier_variants() {
            let modifiers = vec![
                KeyModifier::Alt,
                KeyModifier::Control,
                KeyModifier::Meta,
                KeyModifier::Shift,
            ];
            assert_eq!(modifiers.len(), 4);

            // Test equality
            assert_eq!(KeyModifier::Alt, KeyModifier::Alt);
            assert_ne!(KeyModifier::Alt, KeyModifier::Control);
        }

        // -------------------------------------------------------------------
        // MouseButton variants
        // -------------------------------------------------------------------

        #[test]
        fn test_mouse_button_variants() {
            let buttons = vec![MouseButton::Left, MouseButton::Right, MouseButton::Middle];
            assert_eq!(buttons.len(), 3);

            assert_eq!(MouseButton::Left, MouseButton::Left);
            assert_ne!(MouseButton::Left, MouseButton::Right);
        }

        // -------------------------------------------------------------------
        // LocatorAction locator accessor for Drag variant
        // -------------------------------------------------------------------

        #[test]
        fn test_locator_action_drag_locator_accessor() {
            let locator = Locator::new("div.draggable");
            let action = locator.drag_to(&Point::new(0.0, 0.0)).build();
            let accessed = action.locator();
            assert!(matches!(accessed.selector(), Selector::Css(_)));
        }

        // -------------------------------------------------------------------
        // LocatorAction locator accessor for Fill variant
        // -------------------------------------------------------------------

        #[test]
        fn test_locator_action_fill_locator_accessor() {
            let locator = Locator::new("input");
            let action = locator.fill("test").unwrap();
            let accessed = action.locator();
            assert!(matches!(accessed.selector(), Selector::Css(_)));
        }

        // -------------------------------------------------------------------
        // validate for browser-context assertions
        // -------------------------------------------------------------------

        #[test]
        fn test_validate_browser_context_assertions() {
            let locator = Locator::new("div");

            // IsVisible - returns Ok for browser context
            let assertion = expect(locator.clone()).to_be_visible();
            assert!(assertion.validate("any").is_ok());

            // IsHidden
            let assertion = expect(locator.clone()).to_be_hidden();
            assert!(assertion.validate("any").is_ok());

            // HasCount
            let assertion = expect(locator.clone()).to_have_count(5);
            assert!(assertion.validate("any").is_ok());

            // IsEnabled
            let assertion = expect(locator.clone()).to_be_enabled();
            assert!(assertion.validate("any").is_ok());

            // IsDisabled
            let assertion = expect(locator.clone()).to_be_disabled();
            assert!(assertion.validate("any").is_ok());

            // IsChecked
            let assertion = expect(locator.clone()).to_be_checked();
            assert!(assertion.validate("any").is_ok());

            // IsEditable
            let assertion = expect(locator.clone()).to_be_editable();
            assert!(assertion.validate("any").is_ok());

            // IsFocused
            let assertion = expect(locator.clone()).to_be_focused();
            assert!(assertion.validate("any").is_ok());

            // IsEmpty
            let assertion = expect(locator.clone()).to_be_empty();
            assert!(assertion.validate("any").is_ok());

            // HasCss
            let assertion = expect(locator).to_have_css("color", "red");
            assert!(assertion.validate("any").is_ok());
        }

        // -------------------------------------------------------------------
        // Debug implementations (covered by derive)
        // -------------------------------------------------------------------

        #[test]
        fn test_debug_implementations() {
            let point = Point::new(1.0, 2.0);
            let debug_str = format!("{:?}", point);
            assert!(debug_str.contains("Point"));

            let bbox = BoundingBox::new(0.0, 0.0, 100.0, 100.0);
            let debug_str = format!("{:?}", bbox);
            assert!(debug_str.contains("BoundingBox"));

            let selector = Selector::css("div");
            let debug_str = format!("{:?}", selector);
            assert!(debug_str.contains("Css"));

            let locator = Locator::new("button");
            let debug_str = format!("{:?}", locator);
            assert!(debug_str.contains("Locator"));

            let options = LocatorOptions::default();
            let debug_str = format!("{:?}", options);
            assert!(debug_str.contains("LocatorOptions"));

            let filter = FilterOptions::new();
            let debug_str = format!("{:?}", filter);
            assert!(debug_str.contains("FilterOptions"));

            let click_opts = ClickOptions::new();
            let debug_str = format!("{:?}", click_opts);
            assert!(debug_str.contains("ClickOptions"));

            let drag_op = DragOperation::to(Point::new(0.0, 0.0));
            let debug_str = format!("{:?}", drag_op);
            assert!(debug_str.contains("DragOperation"));

            let drag_builder = Locator::new("div").drag_to(&Point::new(0.0, 0.0));
            let debug_str = format!("{:?}", drag_builder);
            assert!(debug_str.contains("DragBuilder"));

            let action = Locator::new("button").click().unwrap();
            let debug_str = format!("{:?}", action);
            assert!(debug_str.contains("Click"));

            let query = Locator::new("span").text_content().unwrap();
            let debug_str = format!("{:?}", query);
            assert!(debug_str.contains("TextContent"));

            let exp = Expect::new(Locator::new("div"));
            let debug_str = format!("{:?}", exp);
            assert!(debug_str.contains("Expect"));

            let assertion = expect(Locator::new("div")).to_have_text("test");
            let debug_str = format!("{:?}", assertion);
            assert!(debug_str.contains("HasText"));
        }

        // -------------------------------------------------------------------
        // Clone implementations
        // -------------------------------------------------------------------

        #[test]
        fn test_clone_implementations() {
            let locator = Locator::new("button");
            let cloned = locator;
            assert!(matches!(cloned.selector(), Selector::Css(_)));

            let options = LocatorOptions::default();
            let cloned = options;
            assert!(cloned.strict);

            let filter = FilterOptions::new().has_text("test");
            let cloned = filter;
            assert!(cloned.has_text.is_some());

            let click_opts = ClickOptions::new().button(MouseButton::Right);
            let cloned = click_opts;
            assert_eq!(cloned.button, MouseButton::Right);

            let drag_op = DragOperation::to(Point::new(1.0, 2.0)).steps(5);
            let cloned = drag_op;
            assert_eq!(cloned.steps, 5);

            let drag_builder = Locator::new("div").drag_to(&Point::new(3.0, 4.0)).steps(7);
            let cloned = drag_builder;
            let action = cloned.build();
            assert!(matches!(action, LocatorAction::Drag { steps: 7, .. }));

            let action = Locator::new("button").hover().unwrap();
            let cloned = action;
            assert!(matches!(cloned, LocatorAction::Hover { .. }));

            let query = Locator::new("span").count().unwrap();
            let cloned = query;
            assert!(matches!(cloned, LocatorQuery::Count { .. }));

            let exp = Expect::new(Locator::new("div"));
            let cloned = exp;
            let _ = cloned.to_be_visible();

            let assertion = expect(Locator::new("div")).to_have_count(3);
            let cloned = assertion;
            assert!(matches!(cloned, ExpectAssertion::HasCount { .. }));
        }

        // -------------------------------------------------------------------
        // Selector to_query edge cases
        // -------------------------------------------------------------------

        #[test]
        fn test_selector_to_query_special_chars() {
            // Test CSS selector with special characters
            let selector = Selector::css(r#"div[data-value="test's value"]"#);
            let query = selector.to_query();
            assert!(query.contains("querySelector"));

            // Test XPath with special characters
            let selector =
                Selector::XPath(r#"//button[contains(text(), "Click here")]"#.to_string());
            let query = selector.to_query();
            assert!(query.contains("evaluate"));

            // Test TestId with special characters
            let selector = Selector::test_id("my-test-id_123");
            let query = selector.to_query();
            assert!(query.contains("data-testid"));
        }

        // -------------------------------------------------------------------
        // BoundingBox contains edge cases
        // -------------------------------------------------------------------

        #[test]
        fn test_bounding_box_contains_all_edges() {
            let bbox = BoundingBox::new(10.0, 20.0, 100.0, 50.0);

            // Test all four corners
            assert!(bbox.contains(&Point::new(10.0, 20.0))); // top-left
            assert!(bbox.contains(&Point::new(110.0, 20.0))); // top-right
            assert!(bbox.contains(&Point::new(10.0, 70.0))); // bottom-left
            assert!(bbox.contains(&Point::new(110.0, 70.0))); // bottom-right

            // Test just outside each edge
            assert!(!bbox.contains(&Point::new(9.9, 45.0))); // left
            assert!(!bbox.contains(&Point::new(110.1, 45.0))); // right
            assert!(!bbox.contains(&Point::new(55.0, 19.9))); // top
            assert!(!bbox.contains(&Point::new(55.0, 70.1))); // bottom
        }

        // -------------------------------------------------------------------
        // BoundingBox center with offset
        // -------------------------------------------------------------------

        #[test]
        fn test_bounding_box_center_with_offset() {
            let bbox = BoundingBox::new(10.0, 20.0, 100.0, 50.0);
            let center = bbox.center();
            assert!((center.x - 60.0).abs() < f32::EPSILON); // 10 + 100/2
            assert!((center.y - 45.0).abs() < f32::EPSILON); // 20 + 50/2
        }

        // -------------------------------------------------------------------
        // Locator chaining
        // -------------------------------------------------------------------

        #[test]
        fn test_locator_chaining_all_options() {
            let locator = Locator::new("button")
                .with_text("Click")
                .with_timeout(Duration::from_secs(10))
                .with_strict(false)
                .with_visible(false);

            assert!(!locator.options().strict);
            assert!(!locator.options().visible);
            assert_eq!(locator.options().timeout, Duration::from_secs(10));
            assert!(matches!(locator.selector(), Selector::CssWithText { .. }));
        }

        // -------------------------------------------------------------------
        // ClickOptions chaining
        // -------------------------------------------------------------------

        #[test]
        fn test_click_options_full_chain() {
            let options = ClickOptions::new()
                .button(MouseButton::Middle)
                .click_count(3)
                .position(Point::new(5.0, 10.0))
                .modifier(KeyModifier::Shift)
                .modifier(KeyModifier::Alt)
                .modifier(KeyModifier::Control)
                .modifier(KeyModifier::Meta);

            assert_eq!(options.button, MouseButton::Middle);
            assert_eq!(options.click_count, 3);
            assert!(options.position.is_some());
            let pos = options.position.unwrap();
            assert!((pos.x - 5.0).abs() < f32::EPSILON);
            assert!((pos.y - 10.0).abs() < f32::EPSILON);
            assert_eq!(options.modifiers.len(), 4);
        }
    }
}