playwright-rs 0.11.0

Rust bindings for Microsoft Playwright
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
// Assertions - Auto-retry assertions for testing
//
// Provides expect() API with auto-retry logic matching Playwright's assertions.
//
// See: https://playwright.dev/docs/test-assertions

use crate::error::Result;
use crate::protocol::{Locator, Page};
use std::path::Path;
use std::time::Duration;

/// Default timeout for assertions (5 seconds, matching Playwright)
const DEFAULT_ASSERTION_TIMEOUT: Duration = Duration::from_secs(5);

/// Default polling interval for assertions (100ms)
const DEFAULT_POLL_INTERVAL: Duration = Duration::from_millis(100);

/// Creates an expectation for a locator with auto-retry behavior.
///
/// Assertions will retry until they pass or timeout (default: 5 seconds).
///
/// # Example
///
/// ```ignore
/// use playwright_rs::{expect, protocol::Playwright};
/// use std::time::Duration;
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
///     let playwright = Playwright::launch().await?;
///     let browser = playwright.chromium().launch().await?;
///     let page = browser.new_page().await?;
///
///     // Test to_be_visible and to_be_hidden
///     page.goto("data:text/html,<button id='btn'>Click me</button><div id='hidden' style='display:none'>Hidden</div>", None).await?;
///     expect(page.locator("#btn").await).to_be_visible().await?;
///     expect(page.locator("#hidden").await).to_be_hidden().await?;
///
///     // Test not() negation
///     expect(page.locator("#btn").await).not().to_be_hidden().await?;
///     expect(page.locator("#hidden").await).not().to_be_visible().await?;
///
///     // Test with_timeout()
///     page.goto("data:text/html,<div id='element'>Visible</div>", None).await?;
///     expect(page.locator("#element").await)
///         .with_timeout(Duration::from_secs(10))
///         .to_be_visible()
///         .await?;
///
///     // Test to_be_enabled and to_be_disabled
///     page.goto("data:text/html,<button id='enabled'>Enabled</button><button id='disabled' disabled>Disabled</button>", None).await?;
///     expect(page.locator("#enabled").await).to_be_enabled().await?;
///     expect(page.locator("#disabled").await).to_be_disabled().await?;
///
///     // Test to_be_checked and to_be_unchecked
///     page.goto("data:text/html,<input type='checkbox' id='checked' checked><input type='checkbox' id='unchecked'>", None).await?;
///     expect(page.locator("#checked").await).to_be_checked().await?;
///     expect(page.locator("#unchecked").await).to_be_unchecked().await?;
///
///     // Test to_be_editable
///     page.goto("data:text/html,<input type='text' id='editable'>", None).await?;
///     expect(page.locator("#editable").await).to_be_editable().await?;
///
///     // Test to_be_focused
///     page.goto("data:text/html,<input type='text' id='input'>", None).await?;
///     page.evaluate::<(), ()>("document.getElementById('input').focus()", None).await?;
///     expect(page.locator("#input").await).to_be_focused().await?;
///
///     // Test to_contain_text
///     page.goto("data:text/html,<div id='content'>Hello World</div>", None).await?;
///     expect(page.locator("#content").await).to_contain_text("Hello").await?;
///     expect(page.locator("#content").await).to_contain_text("World").await?;
///
///     // Test to_have_text
///     expect(page.locator("#content").await).to_have_text("Hello World").await?;
///
///     // Test to_have_value
///     page.goto("data:text/html,<input type='text' id='input' value='test value'>", None).await?;
///     expect(page.locator("#input").await).to_have_value("test value").await?;
///
///     browser.close().await?;
///     Ok(())
/// }
/// ```
///
/// See: <https://playwright.dev/docs/test-assertions>
pub fn expect(locator: Locator) -> Expectation {
    Expectation::new(locator)
}

/// Expectation wraps a locator and provides assertion methods with auto-retry.
pub struct Expectation {
    locator: Locator,
    timeout: Duration,
    poll_interval: Duration,
    negate: bool,
}

// Allow clippy::wrong_self_convention for to_* methods that consume self
// This matches Playwright's expect API pattern where assertions are chained and consumed
#[allow(clippy::wrong_self_convention)]
impl Expectation {
    /// Creates a new expectation for the given locator.
    pub(crate) fn new(locator: Locator) -> Self {
        Self {
            locator,
            timeout: DEFAULT_ASSERTION_TIMEOUT,
            poll_interval: DEFAULT_POLL_INTERVAL,
            negate: false,
        }
    }

    /// Sets a custom timeout for this assertion.
    ///
    pub fn with_timeout(mut self, timeout: Duration) -> Self {
        self.timeout = timeout;
        self
    }

    /// Sets a custom poll interval for this assertion.
    ///
    /// Default is 100ms.
    pub fn with_poll_interval(mut self, interval: Duration) -> Self {
        self.poll_interval = interval;
        self
    }

    /// Negates the assertion.
    ///
    /// Note: We intentionally use `.not()` method instead of implementing `std::ops::Not`
    /// to match Playwright's API across all language bindings (JS/Python/Java/.NET).
    #[allow(clippy::should_implement_trait)]
    pub fn not(mut self) -> Self {
        self.negate = true;
        self
    }

    /// Asserts that the element is visible.
    ///
    /// This assertion will retry until the element becomes visible or timeout.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-be-visible>
    pub async fn to_be_visible(self) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();

        loop {
            let is_visible = self.locator.is_visible().await?;

            // Check if condition matches (with negation support)
            let matches = if self.negate { !is_visible } else { is_visible };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected element '{}' NOT to be visible, but it was visible after {:?}",
                        selector, self.timeout
                    )
                } else {
                    format!(
                        "Expected element '{}' to be visible, but it was not visible after {:?}",
                        selector, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the element is hidden (not visible).
    ///
    /// This assertion will retry until the element becomes hidden or timeout.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-be-hidden>
    pub async fn to_be_hidden(self) -> Result<()> {
        // to_be_hidden is the opposite of to_be_visible
        // Use negation to reuse the visibility logic
        let negated = Expectation {
            negate: !self.negate, // Flip negation
            ..self
        };
        negated.to_be_visible().await
    }

    /// Asserts that the element has the specified text content (exact match).
    ///
    /// This assertion will retry until the element has the exact text or timeout.
    /// Text is trimmed before comparison.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-have-text>
    pub async fn to_have_text(self, expected: &str) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();
        let expected = expected.trim();

        loop {
            // Get text content (using inner_text for consistency with Playwright)
            let actual_text = self.locator.inner_text().await?;
            let actual = actual_text.trim();

            // Check if condition matches (with negation support)
            let matches = if self.negate {
                actual != expected
            } else {
                actual == expected
            };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected element '{}' NOT to have text '{}', but it did after {:?}",
                        selector, expected, self.timeout
                    )
                } else {
                    format!(
                        "Expected element '{}' to have text '{}', but had '{}' after {:?}",
                        selector, expected, actual, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the element's text matches the specified regex pattern.
    ///
    /// This assertion will retry until the element's text matches the pattern or timeout.
    pub async fn to_have_text_regex(self, pattern: &str) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();
        let re = regex::Regex::new(pattern)
            .map_err(|e| crate::error::Error::InvalidArgument(format!("Invalid regex: {}", e)))?;

        loop {
            let actual_text = self.locator.inner_text().await?;
            let actual = actual_text.trim();

            // Check if condition matches (with negation support)
            let matches = if self.negate {
                !re.is_match(actual)
            } else {
                re.is_match(actual)
            };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected element '{}' NOT to match pattern '{}', but it did after {:?}",
                        selector, pattern, self.timeout
                    )
                } else {
                    format!(
                        "Expected element '{}' to match pattern '{}', but had '{}' after {:?}",
                        selector, pattern, actual, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the element contains the specified text (substring match).
    ///
    /// This assertion will retry until the element contains the text or timeout.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-contain-text>
    pub async fn to_contain_text(self, expected: &str) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();

        loop {
            let actual_text = self.locator.inner_text().await?;
            let actual = actual_text.trim();

            // Check if condition matches (with negation support)
            let matches = if self.negate {
                !actual.contains(expected)
            } else {
                actual.contains(expected)
            };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected element '{}' NOT to contain text '{}', but it did after {:?}",
                        selector, expected, self.timeout
                    )
                } else {
                    format!(
                        "Expected element '{}' to contain text '{}', but had '{}' after {:?}",
                        selector, expected, actual, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the element's text contains a substring matching the regex pattern.
    ///
    /// This assertion will retry until the element contains the pattern or timeout.
    pub async fn to_contain_text_regex(self, pattern: &str) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();
        let re = regex::Regex::new(pattern)
            .map_err(|e| crate::error::Error::InvalidArgument(format!("Invalid regex: {}", e)))?;

        loop {
            let actual_text = self.locator.inner_text().await?;
            let actual = actual_text.trim();

            // Check if condition matches (with negation support)
            let matches = if self.negate {
                !re.is_match(actual)
            } else {
                re.is_match(actual)
            };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected element '{}' NOT to contain pattern '{}', but it did after {:?}",
                        selector, pattern, self.timeout
                    )
                } else {
                    format!(
                        "Expected element '{}' to contain pattern '{}', but had '{}' after {:?}",
                        selector, pattern, actual, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the input element has the specified value.
    ///
    /// This assertion will retry until the input has the exact value or timeout.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-have-value>
    pub async fn to_have_value(self, expected: &str) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();

        loop {
            let actual = self.locator.input_value(None).await?;

            // Check if condition matches (with negation support)
            let matches = if self.negate {
                actual != expected
            } else {
                actual == expected
            };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected input '{}' NOT to have value '{}', but it did after {:?}",
                        selector, expected, self.timeout
                    )
                } else {
                    format!(
                        "Expected input '{}' to have value '{}', but had '{}' after {:?}",
                        selector, expected, actual, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the input element's value matches the specified regex pattern.
    ///
    /// This assertion will retry until the input value matches the pattern or timeout.
    pub async fn to_have_value_regex(self, pattern: &str) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();
        let re = regex::Regex::new(pattern)
            .map_err(|e| crate::error::Error::InvalidArgument(format!("Invalid regex: {}", e)))?;

        loop {
            let actual = self.locator.input_value(None).await?;

            // Check if condition matches (with negation support)
            let matches = if self.negate {
                !re.is_match(&actual)
            } else {
                re.is_match(&actual)
            };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected input '{}' NOT to match pattern '{}', but it did after {:?}",
                        selector, pattern, self.timeout
                    )
                } else {
                    format!(
                        "Expected input '{}' to match pattern '{}', but had '{}' after {:?}",
                        selector, pattern, actual, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the element is enabled.
    ///
    /// This assertion will retry until the element is enabled or timeout.
    /// An element is enabled if it does not have the "disabled" attribute.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-be-enabled>
    pub async fn to_be_enabled(self) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();

        loop {
            let is_enabled = self.locator.is_enabled().await?;

            // Check if condition matches (with negation support)
            let matches = if self.negate { !is_enabled } else { is_enabled };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected element '{}' NOT to be enabled, but it was enabled after {:?}",
                        selector, self.timeout
                    )
                } else {
                    format!(
                        "Expected element '{}' to be enabled, but it was not enabled after {:?}",
                        selector, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the element is disabled.
    ///
    /// This assertion will retry until the element is disabled or timeout.
    /// An element is disabled if it has the "disabled" attribute.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-be-disabled>
    pub async fn to_be_disabled(self) -> Result<()> {
        // to_be_disabled is the opposite of to_be_enabled
        // Use negation to reuse the enabled logic
        let negated = Expectation {
            negate: !self.negate, // Flip negation
            ..self
        };
        negated.to_be_enabled().await
    }

    /// Asserts that the checkbox or radio button is checked.
    ///
    /// This assertion will retry until the element is checked or timeout.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-be-checked>
    pub async fn to_be_checked(self) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();

        loop {
            let is_checked = self.locator.is_checked().await?;

            // Check if condition matches (with negation support)
            let matches = if self.negate { !is_checked } else { is_checked };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected element '{}' NOT to be checked, but it was checked after {:?}",
                        selector, self.timeout
                    )
                } else {
                    format!(
                        "Expected element '{}' to be checked, but it was not checked after {:?}",
                        selector, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the checkbox or radio button is unchecked.
    ///
    /// This assertion will retry until the element is unchecked or timeout.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-be-checked>
    pub async fn to_be_unchecked(self) -> Result<()> {
        // to_be_unchecked is the opposite of to_be_checked
        // Use negation to reuse the checked logic
        let negated = Expectation {
            negate: !self.negate, // Flip negation
            ..self
        };
        negated.to_be_checked().await
    }

    /// Asserts that the element is editable.
    ///
    /// This assertion will retry until the element is editable or timeout.
    /// An element is editable if it is enabled and does not have the "readonly" attribute.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-be-editable>
    pub async fn to_be_editable(self) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();

        loop {
            let is_editable = self.locator.is_editable().await?;

            // Check if condition matches (with negation support)
            let matches = if self.negate {
                !is_editable
            } else {
                is_editable
            };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected element '{}' NOT to be editable, but it was editable after {:?}",
                        selector, self.timeout
                    )
                } else {
                    format!(
                        "Expected element '{}' to be editable, but it was not editable after {:?}",
                        selector, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the element is focused (currently has focus).
    ///
    /// This assertion will retry until the element becomes focused or timeout.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-be-focused>
    pub async fn to_be_focused(self) -> Result<()> {
        let start = std::time::Instant::now();
        let selector = self.locator.selector().to_string();

        loop {
            let is_focused = self.locator.is_focused().await?;

            // Check if condition matches (with negation support)
            let matches = if self.negate { !is_focused } else { is_focused };

            if matches {
                return Ok(());
            }

            // Check timeout
            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected element '{}' NOT to be focused, but it was focused after {:?}",
                        selector, self.timeout
                    )
                } else {
                    format!(
                        "Expected element '{}' to be focused, but it was not focused after {:?}",
                        selector, self.timeout
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            // Wait before next poll
            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that a locator's screenshot matches a baseline image.
    ///
    /// On first run (no baseline file), saves the screenshot as the new baseline.
    /// On subsequent runs, compares the screenshot pixel-by-pixel against the baseline.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#locator-assertions-to-have-screenshot-1>
    pub async fn to_have_screenshot(
        self,
        baseline_path: impl AsRef<Path>,
        options: Option<ScreenshotAssertionOptions>,
    ) -> Result<()> {
        let opts = options.unwrap_or_default();
        let baseline_path = baseline_path.as_ref();

        // Disable animations if requested
        if opts.animations == Some(Animations::Disabled) {
            let _ = self
                .locator
                .evaluate_js(DISABLE_ANIMATIONS_JS, None::<&()>)
                .await;
        }

        // Build screenshot options with mask support
        let screenshot_opts = if let Some(ref mask_locators) = opts.mask {
            // Inject mask overlays before capturing
            let mask_js = build_mask_js(mask_locators);
            let _ = self.locator.evaluate_js(&mask_js, None::<&()>).await;
            None
        } else {
            None
        };

        compare_screenshot(
            &opts,
            baseline_path,
            self.timeout,
            self.poll_interval,
            self.negate,
            || async { self.locator.screenshot(screenshot_opts.clone()).await },
        )
        .await
    }
}

/// CSS to disable all animations and transitions
const DISABLE_ANIMATIONS_JS: &str = r#"
(() => {
    const style = document.createElement('style');
    style.textContent = '*, *::before, *::after { animation-duration: 0s !important; animation-delay: 0s !important; transition-duration: 0s !important; transition-delay: 0s !important; }';
    style.setAttribute('data-playwright-no-animations', '');
    document.head.appendChild(style);
})()
"#;

/// Build JavaScript to overlay mask regions with pink (#FF00FF) rectangles
fn build_mask_js(locators: &[Locator]) -> String {
    let selectors: Vec<String> = locators
        .iter()
        .map(|l| {
            let sel = l.selector().replace('\'', "\\'");
            format!(
                r#"
                (function() {{
                    var els = document.querySelectorAll('{}');
                    els.forEach(function(el) {{
                        var rect = el.getBoundingClientRect();
                        var overlay = document.createElement('div');
                        overlay.setAttribute('data-playwright-mask', '');
                        overlay.style.cssText = 'position:fixed;z-index:2147483647;background:#FF00FF;pointer-events:none;'
                            + 'left:' + rect.left + 'px;top:' + rect.top + 'px;width:' + rect.width + 'px;height:' + rect.height + 'px;';
                        document.body.appendChild(overlay);
                    }});
                }})();
                "#,
                sel
            )
        })
        .collect();
    selectors.join("\n")
}

/// Animation control for screenshots
///
/// See: <https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-screenshot-1>
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Animations {
    /// Allow animations to run normally
    Allow,
    /// Disable CSS animations and transitions before capturing
    Disabled,
}

/// Options for screenshot assertions
///
/// See: <https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-screenshot-1>
#[derive(Debug, Clone, Default)]
pub struct ScreenshotAssertionOptions {
    /// Maximum number of different pixels allowed (default: 0)
    pub max_diff_pixels: Option<u32>,
    /// Maximum ratio of different pixels (0.0 to 1.0)
    pub max_diff_pixel_ratio: Option<f64>,
    /// Per-pixel color distance threshold (0.0 to 1.0, default: 0.2)
    pub threshold: Option<f64>,
    /// Disable CSS animations before capturing
    pub animations: Option<Animations>,
    /// Locators to mask with pink (#FF00FF) overlay
    pub mask: Option<Vec<Locator>>,
    /// Force update baseline even if it exists
    pub update_snapshots: Option<bool>,
}

impl ScreenshotAssertionOptions {
    /// Create a new builder for ScreenshotAssertionOptions
    pub fn builder() -> ScreenshotAssertionOptionsBuilder {
        ScreenshotAssertionOptionsBuilder::default()
    }
}

/// Builder for ScreenshotAssertionOptions
#[derive(Debug, Clone, Default)]
pub struct ScreenshotAssertionOptionsBuilder {
    max_diff_pixels: Option<u32>,
    max_diff_pixel_ratio: Option<f64>,
    threshold: Option<f64>,
    animations: Option<Animations>,
    mask: Option<Vec<Locator>>,
    update_snapshots: Option<bool>,
}

impl ScreenshotAssertionOptionsBuilder {
    /// Maximum number of different pixels allowed
    pub fn max_diff_pixels(mut self, pixels: u32) -> Self {
        self.max_diff_pixels = Some(pixels);
        self
    }

    /// Maximum ratio of different pixels (0.0 to 1.0)
    pub fn max_diff_pixel_ratio(mut self, ratio: f64) -> Self {
        self.max_diff_pixel_ratio = Some(ratio);
        self
    }

    /// Per-pixel color distance threshold (0.0 to 1.0)
    pub fn threshold(mut self, threshold: f64) -> Self {
        self.threshold = Some(threshold);
        self
    }

    /// Disable CSS animations and transitions before capturing
    pub fn animations(mut self, animations: Animations) -> Self {
        self.animations = Some(animations);
        self
    }

    /// Locators to mask with pink (#FF00FF) overlay
    pub fn mask(mut self, locators: Vec<Locator>) -> Self {
        self.mask = Some(locators);
        self
    }

    /// Force update baseline even if it exists
    pub fn update_snapshots(mut self, update: bool) -> Self {
        self.update_snapshots = Some(update);
        self
    }

    /// Build the ScreenshotAssertionOptions
    pub fn build(self) -> ScreenshotAssertionOptions {
        ScreenshotAssertionOptions {
            max_diff_pixels: self.max_diff_pixels,
            max_diff_pixel_ratio: self.max_diff_pixel_ratio,
            threshold: self.threshold,
            animations: self.animations,
            mask: self.mask,
            update_snapshots: self.update_snapshots,
        }
    }
}

/// Creates a page-level expectation for screenshot assertions.
///
/// See: <https://playwright.dev/docs/test-assertions#page-assertions-to-have-screenshot-1>
pub fn expect_page(page: &Page) -> PageExpectation {
    PageExpectation::new(page.clone())
}

/// Page-level expectation for screenshot assertions.
#[allow(clippy::wrong_self_convention)]
pub struct PageExpectation {
    page: Page,
    timeout: Duration,
    poll_interval: Duration,
    negate: bool,
}

impl PageExpectation {
    fn new(page: Page) -> Self {
        Self {
            page,
            timeout: DEFAULT_ASSERTION_TIMEOUT,
            poll_interval: DEFAULT_POLL_INTERVAL,
            negate: false,
        }
    }

    /// Sets a custom timeout for this assertion.
    pub fn with_timeout(mut self, timeout: Duration) -> Self {
        self.timeout = timeout;
        self
    }

    /// Negates the assertion.
    #[allow(clippy::should_implement_trait)]
    pub fn not(mut self) -> Self {
        self.negate = true;
        self
    }

    /// Asserts that the page title matches the expected string.
    ///
    /// Auto-retries until the title matches or the timeout expires.
    ///
    /// See: <https://playwright.dev/docs/api/class-pageassertions#page-assertions-to-have-title>
    pub async fn to_have_title(self, expected: &str) -> Result<()> {
        let start = std::time::Instant::now();
        let expected = expected.trim();

        loop {
            let actual = self.page.title().await?;
            let actual = actual.trim();

            let matches = if self.negate {
                actual != expected
            } else {
                actual == expected
            };

            if matches {
                return Ok(());
            }

            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected page NOT to have title '{}', but it did after {:?}",
                        expected, self.timeout,
                    )
                } else {
                    format!(
                        "Expected page to have title '{}', but got '{}' after {:?}",
                        expected, actual, self.timeout,
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the page title matches the given regex pattern.
    ///
    /// Auto-retries until the title matches or the timeout expires.
    ///
    /// See: <https://playwright.dev/docs/api/class-pageassertions#page-assertions-to-have-title>
    pub async fn to_have_title_regex(self, pattern: &str) -> Result<()> {
        let start = std::time::Instant::now();
        let re = regex::Regex::new(pattern)
            .map_err(|e| crate::error::Error::InvalidArgument(format!("Invalid regex: {}", e)))?;

        loop {
            let actual = self.page.title().await?;

            let matches = if self.negate {
                !re.is_match(&actual)
            } else {
                re.is_match(&actual)
            };

            if matches {
                return Ok(());
            }

            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected page title NOT to match '{}', but '{}' matched after {:?}",
                        pattern, actual, self.timeout,
                    )
                } else {
                    format!(
                        "Expected page title to match '{}', but got '{}' after {:?}",
                        pattern, actual, self.timeout,
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the page URL matches the expected string.
    ///
    /// Auto-retries until the URL matches or the timeout expires.
    ///
    /// See: <https://playwright.dev/docs/api/class-pageassertions#page-assertions-to-have-url>
    pub async fn to_have_url(self, expected: &str) -> Result<()> {
        let start = std::time::Instant::now();

        loop {
            let actual = self.page.url();

            let matches = if self.negate {
                actual != expected
            } else {
                actual == expected
            };

            if matches {
                return Ok(());
            }

            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected page NOT to have URL '{}', but it did after {:?}",
                        expected, self.timeout,
                    )
                } else {
                    format!(
                        "Expected page to have URL '{}', but got '{}' after {:?}",
                        expected, actual, self.timeout,
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the page URL matches the given regex pattern.
    ///
    /// Auto-retries until the URL matches or the timeout expires.
    ///
    /// See: <https://playwright.dev/docs/api/class-pageassertions#page-assertions-to-have-url>
    pub async fn to_have_url_regex(self, pattern: &str) -> Result<()> {
        let start = std::time::Instant::now();
        let re = regex::Regex::new(pattern)
            .map_err(|e| crate::error::Error::InvalidArgument(format!("Invalid regex: {}", e)))?;

        loop {
            let actual = self.page.url();

            let matches = if self.negate {
                !re.is_match(&actual)
            } else {
                re.is_match(&actual)
            };

            if matches {
                return Ok(());
            }

            if start.elapsed() >= self.timeout {
                let message = if self.negate {
                    format!(
                        "Expected page URL NOT to match '{}', but '{}' matched after {:?}",
                        pattern, actual, self.timeout,
                    )
                } else {
                    format!(
                        "Expected page URL to match '{}', but got '{}' after {:?}",
                        pattern, actual, self.timeout,
                    )
                };
                return Err(crate::error::Error::AssertionTimeout(message));
            }

            tokio::time::sleep(self.poll_interval).await;
        }
    }

    /// Asserts that the page screenshot matches a baseline image.
    ///
    /// See: <https://playwright.dev/docs/test-assertions#page-assertions-to-have-screenshot-1>
    pub async fn to_have_screenshot(
        self,
        baseline_path: impl AsRef<Path>,
        options: Option<ScreenshotAssertionOptions>,
    ) -> Result<()> {
        let opts = options.unwrap_or_default();
        let baseline_path = baseline_path.as_ref();

        // Disable animations if requested
        if opts.animations == Some(Animations::Disabled) {
            let _ = self.page.evaluate_expression(DISABLE_ANIMATIONS_JS).await;
        }

        // Inject mask overlays if specified
        if let Some(ref mask_locators) = opts.mask {
            let mask_js = build_mask_js(mask_locators);
            let _ = self.page.evaluate_expression(&mask_js).await;
        }

        compare_screenshot(
            &opts,
            baseline_path,
            self.timeout,
            self.poll_interval,
            self.negate,
            || async { self.page.screenshot(None).await },
        )
        .await
    }
}

/// Core screenshot comparison logic shared by Locator and Page assertions.
async fn compare_screenshot<F, Fut>(
    opts: &ScreenshotAssertionOptions,
    baseline_path: &Path,
    timeout: Duration,
    poll_interval: Duration,
    negate: bool,
    take_screenshot: F,
) -> Result<()>
where
    F: Fn() -> Fut,
    Fut: std::future::Future<Output = Result<Vec<u8>>>,
{
    let threshold = opts.threshold.unwrap_or(0.2);
    let max_diff_pixels = opts.max_diff_pixels;
    let max_diff_pixel_ratio = opts.max_diff_pixel_ratio;
    let update_snapshots = opts.update_snapshots.unwrap_or(false);

    // Take initial screenshot
    let actual_bytes = take_screenshot().await?;

    // If baseline doesn't exist or update_snapshots is set, save and return
    if !baseline_path.exists() || update_snapshots {
        if let Some(parent) = baseline_path.parent() {
            tokio::fs::create_dir_all(parent).await.map_err(|e| {
                crate::error::Error::ProtocolError(format!(
                    "Failed to create baseline directory: {}",
                    e
                ))
            })?;
        }
        tokio::fs::write(baseline_path, &actual_bytes)
            .await
            .map_err(|e| {
                crate::error::Error::ProtocolError(format!(
                    "Failed to write baseline screenshot: {}",
                    e
                ))
            })?;
        return Ok(());
    }

    // Load baseline
    let baseline_bytes = tokio::fs::read(baseline_path).await.map_err(|e| {
        crate::error::Error::ProtocolError(format!("Failed to read baseline screenshot: {}", e))
    })?;

    let start = std::time::Instant::now();

    loop {
        let screenshot_bytes = if start.elapsed().is_zero() {
            actual_bytes.clone()
        } else {
            take_screenshot().await?
        };

        let comparison = compare_images(&baseline_bytes, &screenshot_bytes, threshold)?;

        let within_tolerance =
            is_within_tolerance(&comparison, max_diff_pixels, max_diff_pixel_ratio);

        let matches = if negate {
            !within_tolerance
        } else {
            within_tolerance
        };

        if matches {
            return Ok(());
        }

        if start.elapsed() >= timeout {
            if negate {
                return Err(crate::error::Error::AssertionTimeout(format!(
                    "Expected screenshots NOT to match, but they matched after {:?}",
                    timeout
                )));
            }

            // Save actual and diff images for debugging
            let baseline_stem = baseline_path
                .file_stem()
                .and_then(|s| s.to_str())
                .unwrap_or("screenshot");
            let baseline_ext = baseline_path
                .extension()
                .and_then(|s| s.to_str())
                .unwrap_or("png");
            let baseline_dir = baseline_path.parent().unwrap_or(Path::new("."));

            let actual_path =
                baseline_dir.join(format!("{}-actual.{}", baseline_stem, baseline_ext));
            let diff_path = baseline_dir.join(format!("{}-diff.{}", baseline_stem, baseline_ext));

            let _ = tokio::fs::write(&actual_path, &screenshot_bytes).await;

            if let Ok(diff_bytes) =
                generate_diff_image(&baseline_bytes, &screenshot_bytes, threshold)
            {
                let _ = tokio::fs::write(&diff_path, diff_bytes).await;
            }

            return Err(crate::error::Error::AssertionTimeout(format!(
                "Screenshot mismatch: {} pixels differ ({:.2}% of total). \
                 Max allowed: {}. Threshold: {:.2}. \
                 Actual saved to: {}. Diff saved to: {}. \
                 Timed out after {:?}",
                comparison.diff_count,
                comparison.diff_ratio * 100.0,
                max_diff_pixels
                    .map(|p| p.to_string())
                    .or_else(|| max_diff_pixel_ratio.map(|r| format!("{:.2}%", r * 100.0)))
                    .unwrap_or_else(|| "0".to_string()),
                threshold,
                actual_path.display(),
                diff_path.display(),
                timeout,
            )));
        }

        tokio::time::sleep(poll_interval).await;
    }
}

/// Result of comparing two images pixel-by-pixel
struct ImageComparison {
    diff_count: u32,
    diff_ratio: f64,
}

fn is_within_tolerance(
    comparison: &ImageComparison,
    max_diff_pixels: Option<u32>,
    max_diff_pixel_ratio: Option<f64>,
) -> bool {
    if let Some(max_pixels) = max_diff_pixels {
        if comparison.diff_count > max_pixels {
            return false;
        }
    } else if let Some(max_ratio) = max_diff_pixel_ratio {
        if comparison.diff_ratio > max_ratio {
            return false;
        }
    } else {
        // No tolerance specified — require exact match
        if comparison.diff_count > 0 {
            return false;
        }
    }
    true
}

/// Compare two PNG images pixel-by-pixel with a color distance threshold
fn compare_images(
    baseline_bytes: &[u8],
    actual_bytes: &[u8],
    threshold: f64,
) -> Result<ImageComparison> {
    use image::GenericImageView;

    let baseline_img = image::load_from_memory(baseline_bytes).map_err(|e| {
        crate::error::Error::ProtocolError(format!("Failed to decode baseline image: {}", e))
    })?;
    let actual_img = image::load_from_memory(actual_bytes).map_err(|e| {
        crate::error::Error::ProtocolError(format!("Failed to decode actual image: {}", e))
    })?;

    let (bw, bh) = baseline_img.dimensions();
    let (aw, ah) = actual_img.dimensions();

    // Different dimensions = all pixels differ
    if bw != aw || bh != ah {
        let total = bw.max(aw) * bh.max(ah);
        return Ok(ImageComparison {
            diff_count: total,
            diff_ratio: 1.0,
        });
    }

    let total_pixels = bw * bh;
    if total_pixels == 0 {
        return Ok(ImageComparison {
            diff_count: 0,
            diff_ratio: 0.0,
        });
    }

    let threshold_sq = threshold * threshold;
    let mut diff_count: u32 = 0;

    for y in 0..bh {
        for x in 0..bw {
            let bp = baseline_img.get_pixel(x, y);
            let ap = actual_img.get_pixel(x, y);

            // Compute normalized color distance (each channel 0.0-1.0)
            let dr = (bp[0] as f64 - ap[0] as f64) / 255.0;
            let dg = (bp[1] as f64 - ap[1] as f64) / 255.0;
            let db = (bp[2] as f64 - ap[2] as f64) / 255.0;
            let da = (bp[3] as f64 - ap[3] as f64) / 255.0;

            let dist_sq = (dr * dr + dg * dg + db * db + da * da) / 4.0;

            if dist_sq > threshold_sq {
                diff_count += 1;
            }
        }
    }

    Ok(ImageComparison {
        diff_count,
        diff_ratio: diff_count as f64 / total_pixels as f64,
    })
}

/// Generate a diff image highlighting differences in red
fn generate_diff_image(
    baseline_bytes: &[u8],
    actual_bytes: &[u8],
    threshold: f64,
) -> Result<Vec<u8>> {
    use image::{GenericImageView, ImageBuffer, Rgba};

    let baseline_img = image::load_from_memory(baseline_bytes).map_err(|e| {
        crate::error::Error::ProtocolError(format!("Failed to decode baseline image: {}", e))
    })?;
    let actual_img = image::load_from_memory(actual_bytes).map_err(|e| {
        crate::error::Error::ProtocolError(format!("Failed to decode actual image: {}", e))
    })?;

    let (bw, bh) = baseline_img.dimensions();
    let (aw, ah) = actual_img.dimensions();
    let width = bw.max(aw);
    let height = bh.max(ah);

    let threshold_sq = threshold * threshold;

    let mut diff_img: ImageBuffer<Rgba<u8>, Vec<u8>> = ImageBuffer::new(width, height);

    for y in 0..height {
        for x in 0..width {
            if x >= bw || y >= bh || x >= aw || y >= ah {
                // Out of bounds for one image — mark as diff
                diff_img.put_pixel(x, y, Rgba([255, 0, 0, 255]));
                continue;
            }

            let bp = baseline_img.get_pixel(x, y);
            let ap = actual_img.get_pixel(x, y);

            let dr = (bp[0] as f64 - ap[0] as f64) / 255.0;
            let dg = (bp[1] as f64 - ap[1] as f64) / 255.0;
            let db = (bp[2] as f64 - ap[2] as f64) / 255.0;
            let da = (bp[3] as f64 - ap[3] as f64) / 255.0;

            let dist_sq = (dr * dr + dg * dg + db * db + da * da) / 4.0;

            if dist_sq > threshold_sq {
                // Different — red highlight
                diff_img.put_pixel(x, y, Rgba([255, 0, 0, 255]));
            } else {
                // Same — semi-transparent grayscale of actual
                let gray = ((ap[0] as u16 + ap[1] as u16 + ap[2] as u16) / 3) as u8;
                diff_img.put_pixel(x, y, Rgba([gray, gray, gray, 100]));
            }
        }
    }

    let mut output = std::io::Cursor::new(Vec::new());
    diff_img
        .write_to(&mut output, image::ImageFormat::Png)
        .map_err(|e| {
            crate::error::Error::ProtocolError(format!("Failed to encode diff image: {}", e))
        })?;

    Ok(output.into_inner())
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_expectation_defaults() {
        // Verify default timeout and poll interval constants
        assert_eq!(DEFAULT_ASSERTION_TIMEOUT, Duration::from_secs(5));
        assert_eq!(DEFAULT_POLL_INTERVAL, Duration::from_millis(100));
    }
}