forked from playwright-community/playwright-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.patch
2405 lines (2152 loc) · 86.3 KB
/
main.patch
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
diff --git a/docs/src/api/class-apirequest.md b/docs/src/api/class-apirequest.md
index 2f832e1dd..b8a33f161 100644
--- a/docs/src/api/class-apirequest.md
+++ b/docs/src/api/class-apirequest.md
@@ -48,7 +48,7 @@ Methods like [`method: APIRequestContext.get`] take the base URL into considerat
### option: APIRequest.newContext.storageState
* since: v1.16
-* langs: js, python
+* langs: js, python, go
- `storageState` <[path]|[Object]>
- `cookies` <[Array]<[Object]>>
- `name` <[string]>
diff --git a/docs/src/api/class-apirequestcontext.md b/docs/src/api/class-apirequestcontext.md
index 40742e2a1..74ce6194d 100644
--- a/docs/src/api/class-apirequestcontext.md
+++ b/docs/src/api/class-apirequestcontext.md
@@ -159,6 +159,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.delete.data = %%-js-python-csharp-fetch-option-data-%%
* since: v1.17
+### option: APIRequestContext.delete.data = %%-go-fetch-option-data-%%
+* since: v1.17
+
### option: APIRequestContext.delete.form = %%-js-fetch-option-form-%%
* since: v1.17
@@ -168,6 +171,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.delete.form = %%-csharp-fetch-option-form-%%
* since: v1.17
+### option: APIRequestContext.delete.form = %%-go-fetch-option-form-%%
+* since: v1.17
+
### option: APIRequestContext.delete.multipart = %%-js-fetch-option-multipart-%%
* since: v1.17
@@ -177,6 +183,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.delete.multipart = %%-csharp-fetch-option-multipart-%%
* since: v1.17
+### option: APIRequestContext.delete.multipart = %%-go-fetch-option-multipart-%%
+* since: v1.17
+
### option: APIRequestContext.delete.timeout = %%-js-python-csharp-fetch-option-timeout-%%
* since: v1.16
@@ -324,7 +333,7 @@ Target URL or Request to get all parameters from.
### option: APIRequestContext.fetch.method
* since: v1.16
-* langs: js, python, csharp
+* langs: js, python, csharp, go
- `method` <[string]>
If set changes the fetch method (e.g. [PUT](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PUT) or
@@ -336,6 +345,9 @@ If set changes the fetch method (e.g. [PUT](https://developer.mozilla.org/en-US/
### option: APIRequestContext.fetch.data = %%-js-python-csharp-fetch-option-data-%%
* since: v1.16
+### option: APIRequestContext.fetch.data = %%-go-fetch-option-data-%%
+* since: v1.16
+
### option: APIRequestContext.fetch.form = %%-js-fetch-option-form-%%
* since: v1.16
@@ -345,6 +357,9 @@ If set changes the fetch method (e.g. [PUT](https://developer.mozilla.org/en-US/
### option: APIRequestContext.fetch.form = %%-csharp-fetch-option-form-%%
* since: v1.16
+### option: APIRequestContext.fetch.form = %%-go-fetch-option-form-%%
+* since: v1.16
+
### option: APIRequestContext.fetch.multipart = %%-js-fetch-option-multipart-%%
* since: v1.16
@@ -354,6 +369,9 @@ If set changes the fetch method (e.g. [PUT](https://developer.mozilla.org/en-US/
### option: APIRequestContext.fetch.multipart = %%-csharp-fetch-option-multipart-%%
* since: v1.16
+### option: APIRequestContext.fetch.multipart = %%-go-fetch-option-multipart-%%
+* since: v1.16
+
### option: APIRequestContext.fetch.timeout = %%-js-python-csharp-fetch-option-timeout-%%
* since: v1.16
@@ -449,6 +467,9 @@ await request.GetAsync("https://example.com/api/getText", new() { Params = query
### option: APIRequestContext.get.data = %%-js-python-csharp-fetch-option-data-%%
* since: v1.26
+### option: APIRequestContext.get.data = %%-go-fetch-option-data-%%
+* since: v1.26
+
### option: APIRequestContext.get.form = %%-js-fetch-option-form-%%
* since: v1.26
@@ -458,6 +479,9 @@ await request.GetAsync("https://example.com/api/getText", new() { Params = query
### option: APIRequestContext.get.form = %%-csharp-fetch-option-form-%%
* since: v1.26
+### option: APIRequestContext.get.form = %%-go-fetch-option-form-%%
+* since: v1.26
+
### option: APIRequestContext.get.multipart = %%-js-fetch-option-multipart-%%
* since: v1.26
@@ -467,6 +491,9 @@ await request.GetAsync("https://example.com/api/getText", new() { Params = query
### option: APIRequestContext.get.multipart = %%-csharp-fetch-option-multipart-%%
* since: v1.26
+### option: APIRequestContext.get.multipart = %%-go-fetch-option-multipart-%%
+* since: v1.26
+
### option: APIRequestContext.get.timeout = %%-js-python-csharp-fetch-option-timeout-%%
* since: v1.16
@@ -514,6 +541,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.head.data = %%-js-python-csharp-fetch-option-data-%%
* since: v1.26
+### option: APIRequestContext.head.data = %%-go-fetch-option-data-%%
+* since: v1.26
+
### option: APIRequestContext.head.form = %%-python-fetch-option-form-%%
* since: v1.26
@@ -523,6 +553,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.head.form = %%-csharp-fetch-option-form-%%
* since: v1.26
+### option: APIRequestContext.head.form = %%-go-fetch-option-form-%%
+* since: v1.26
+
### option: APIRequestContext.head.multipart = %%-js-fetch-option-multipart-%%
* since: v1.26
@@ -532,6 +565,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.head.multipart = %%-csharp-fetch-option-multipart-%%
* since: v1.26
+### option: APIRequestContext.head.multipart = %%-go-fetch-option-multipart-%%
+* since: v1.26
+
### option: APIRequestContext.head.timeout = %%-js-python-csharp-fetch-option-timeout-%%
* since: v1.16
@@ -579,6 +615,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.patch.data = %%-js-python-csharp-fetch-option-data-%%
* since: v1.16
+### option: APIRequestContext.patch.data = %%-go-fetch-option-data-%%
+* since: v1.16
+
### option: APIRequestContext.patch.form = %%-js-fetch-option-form-%%
* since: v1.16
@@ -588,6 +627,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.patch.form = %%-csharp-fetch-option-form-%%
* since: v1.16
+### option: APIRequestContext.patch.form = %%-go-fetch-option-form-%%
+* since: v1.16
+
### option: APIRequestContext.patch.multipart = %%-js-fetch-option-multipart-%%
* since: v1.16
@@ -597,6 +639,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.patch.multipart = %%-csharp-fetch-option-multipart-%%
* since: v1.16
+### option: APIRequestContext.patch.multipart = %%-go-fetch-option-multipart-%%
+* since: v1.16
+
### option: APIRequestContext.patch.timeout = %%-js-python-csharp-fetch-option-timeout-%%
* since: v1.16
@@ -765,6 +810,9 @@ await request.PostAsync("https://example.com/api/uploadScript", new() { Multipar
### option: APIRequestContext.post.data = %%-js-python-csharp-fetch-option-data-%%
* since: v1.16
+### option: APIRequestContext.post.data = %%-go-fetch-option-data-%%
+* since: v1.16
+
### option: APIRequestContext.post.form = %%-js-fetch-option-form-%%
* since: v1.16
@@ -774,6 +822,9 @@ await request.PostAsync("https://example.com/api/uploadScript", new() { Multipar
### option: APIRequestContext.post.form = %%-csharp-fetch-option-form-%%
* since: v1.16
+### option: APIRequestContext.post.form = %%-go-fetch-option-form-%%
+* since: v1.16
+
### option: APIRequestContext.post.multipart = %%-js-fetch-option-multipart-%%
* since: v1.16
@@ -783,6 +834,9 @@ await request.PostAsync("https://example.com/api/uploadScript", new() { Multipar
### option: APIRequestContext.post.multipart = %%-csharp-fetch-option-multipart-%%
* since: v1.16
+### option: APIRequestContext.post.multipart = %%-go-fetch-option-multipart-%%
+* since: v1.16
+
### option: APIRequestContext.post.timeout = %%-js-python-csharp-fetch-option-timeout-%%
* since: v1.16
@@ -830,6 +884,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.put.data = %%-js-python-csharp-fetch-option-data-%%
* since: v1.16
+### option: APIRequestContext.put.data = %%-go-fetch-option-data-%%
+* since: v1.16
+
### option: APIRequestContext.put.form = %%-python-fetch-option-form-%%
* since: v1.16
@@ -839,6 +896,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.put.form = %%-csharp-fetch-option-form-%%
* since: v1.16
+### option: APIRequestContext.put.form = %%-go-fetch-option-form-%%
+* since: v1.16
+
### option: APIRequestContext.put.multipart = %%-js-fetch-option-multipart-%%
* since: v1.16
@@ -848,6 +908,9 @@ context cookies from the response. The method will automatically follow redirect
### option: APIRequestContext.put.multipart = %%-csharp-fetch-option-multipart-%%
* since: v1.16
+### option: APIRequestContext.put.multipart = %%-go-fetch-option-multipart-%%
+* since: v1.16
+
### option: APIRequestContext.put.timeout = %%-js-python-csharp-fetch-option-timeout-%%
* since: v1.16
diff --git a/docs/src/api/class-apiresponse.md b/docs/src/api/class-apiresponse.md
index 5a901b76b..26da2aa12 100644
--- a/docs/src/api/class-apiresponse.md
+++ b/docs/src/api/class-apiresponse.md
@@ -65,7 +65,7 @@ Headers with multiple entries, such as `Set-Cookie`, appear in the array multipl
## async method: APIResponse.json
* since: v1.16
-* langs: js, python
+* langs: js, python, go
- returns: <[Serializable]>
Returns the JSON representation of response body.
diff --git a/docs/src/api/class-apiresponseassertions.md b/docs/src/api/class-apiresponseassertions.md
index 9584365d8..35ce3c1bc 100644
--- a/docs/src/api/class-apiresponseassertions.md
+++ b/docs/src/api/class-apiresponseassertions.md
@@ -48,7 +48,7 @@ def test_navigates_to_login_page(page: Page) -> None:
## property: APIResponseAssertions.not
* since: v1.20
-* langs: java, js, csharp
+* langs: java, js, csharp, go
- returns: <[APIResponseAssertions]>
Makes the assertion check for the opposite condition. For example, this code tests that the response status is not successful:
diff --git a/docs/src/api/class-browser.md b/docs/src/api/class-browser.md
index 4dabfc52e..eb986309e 100644
--- a/docs/src/api/class-browser.md
+++ b/docs/src/api/class-browser.md
@@ -261,6 +261,9 @@ await browser.CloseAsync();
### option: Browser.newContext.storageState = %%-js-python-context-option-storage-state-%%
* since: v1.8
+### option: Browser.newContext.storageState = %%-go-context-option-storage-state-%%
+* since: v1.8
+
### option: Browser.newContext.storageState = %%-csharp-java-context-option-storage-state-%%
* since: v1.8
@@ -289,6 +292,9 @@ testing frameworks should explicitly create [`method: Browser.newContext`] follo
### option: Browser.newPage.storageState = %%-js-python-context-option-storage-state-%%
* since: v1.8
+### option: Browser.newPage.storageState = %%-go-context-option-storage-state-%%
+* since: v1.8
+
### option: Browser.newPage.storageState = %%-csharp-java-context-option-storage-state-%%
* since: v1.8
@@ -311,7 +317,7 @@ Allows to wait for async listeners to complete or to ignore subsequent errors fr
## async method: Browser.startTracing
* since: v1.11
-* langs: java, js, python
+* langs: java, js, python, go
:::note
This API controls [Chromium Tracing](https://www.chromium.org/developers/how-tos/trace-event-profiling-tool) which is a low-level chromium-specific debugging tool. API to control [Playwright Tracing](../trace-viewer) could be found [here](./class-tracing).
@@ -349,10 +355,18 @@ browser.stop_tracing()
### param: Browser.startTracing.page
* since: v1.11
+* langs: js, java, python, csharp
- `page` ?<[Page]>
Optional, if specified, tracing includes screenshots of the given page.
+### option: Browser.startTracing.page
+* since: v1.11
+* langs: go
+- `page` <[Page]>
+
+Optional, if specified, tracing includes screenshots of the given page.
+
### option: Browser.startTracing.path
* since: v1.11
- `path` <[path]>
@@ -373,7 +387,7 @@ specify custom categories to use instead of default.
## async method: Browser.stopTracing
* since: v1.11
-* langs: java, js, python
+* langs: java, js, python, go
- returns: <[Buffer]>
:::note
diff --git a/docs/src/api/class-browsercontext.md b/docs/src/api/class-browsercontext.md
index 8d6c57a3e..8001ddc34 100644
--- a/docs/src/api/class-browsercontext.md
+++ b/docs/src/api/class-browsercontext.md
@@ -417,7 +417,7 @@ The order of evaluation of multiple scripts installed via [`method: BrowserConte
### param: BrowserContext.addInitScript.script
* since: v1.8
-* langs: js
+* langs: js, go
- `script` <[function]|[string]|[Object]>
- `path` ?<[path]> Path to the JavaScript file. If `path` is a relative path, then it is resolved relative to the
current working directory. Optional.
@@ -1211,7 +1211,7 @@ handler function to route the request.
### param: BrowserContext.route.handler
* since: v1.8
-* langs: csharp, java
+* langs: csharp, java,go
- `handler` <[function]\([Route]\)>
handler function to route the request.
@@ -1354,7 +1354,7 @@ Handler function to route the WebSocket.
### param: BrowserContext.routeWebSocket.handler
* since: v1.48
-* langs: csharp, java
+* langs: csharp, java, go
- `handler` <[function]\([WebSocketRoute]\)>
Handler function to route the WebSocket.
@@ -1362,7 +1362,7 @@ Handler function to route the WebSocket.
## method: BrowserContext.serviceWorkers
* since: v1.11
-* langs: js, python
+* langs: js, python, go
- returns: <[Array]<[Worker]>>
:::note
@@ -1549,6 +1549,13 @@ A glob pattern, regex pattern or predicate receiving [URL] used to register a ro
Optional handler function used to register a routing with [`method: BrowserContext.route`].
+### param: BrowserContext.unroute.handler
+* since: v1.8
+* langs: go
+- `handler` ?<[function]\([Route]\)>
+
+Optional handler function used to register a routing with [`method: BrowserContext.route`].
+
### param: BrowserContext.unroute.handler
* since: v1.8
* langs: csharp, java
@@ -1590,7 +1597,8 @@ Condition to wait for.
## async method: BrowserContext.waitForConsoleMessage
* since: v1.34
-* langs: java, python, csharp
+* langs: java, python, csharp, go
+ - alias-go: ExpectConsoleMessage
- alias-python: expect_console_message
- alias-csharp: RunAndWaitForConsoleMessage
- returns: <[ConsoleMessage]>
@@ -1621,7 +1629,8 @@ Receives the [ConsoleMessage] object and resolves to truthy value when the waiti
## async method: BrowserContext.waitForEvent
* since: v1.8
-* langs: js, python
+* langs: js, python, go
+ - alias-go: ExpectEvent
- alias-python: expect_event
- returns: <[any]>
@@ -1687,7 +1696,8 @@ Either a predicate that receives an event or an options object. Optional.
## async method: BrowserContext.waitForPage
* since: v1.9
-* langs: java, python, csharp
+* langs: java, python, csharp, go
+ - alias-go: ExpectPage
- alias-python: expect_page
- alias-csharp: RunAndWaitForPage
- returns: <[Page]>
@@ -1706,7 +1716,7 @@ Will throw an error if the context closes before new [Page] is created.
### option: BrowserContext.waitForPage.predicate
* since: v1.9
-* langs: csharp, java, python
+* langs: csharp, java, python, go
- `predicate` <[function]\([Page]\):[boolean]>
Receives the [Page] object and resolves to truthy value when the waiting should resolve.
@@ -1719,7 +1729,8 @@ Receives the [Page] object and resolves to truthy value when the waiting should
## async method: BrowserContext.waitForEvent2
* since: v1.8
-* langs: python
+* langs: python, go
+ - alias-go: WaitForEvent
- alias-python: wait_for_event
- returns: <[any]>
diff --git a/docs/src/api/class-cdpsession.md b/docs/src/api/class-cdpsession.md
index a14dd58fb..8e3807d87 100644
--- a/docs/src/api/class-cdpsession.md
+++ b/docs/src/api/class-cdpsession.md
@@ -102,7 +102,7 @@ Optional method parameters.
### param: CDPSession.send.params
* since: v1.30
-* langs: csharp
+* langs: csharp, go
- alias-csharp: args
- `params` ?<[Map<string, Object>]>
diff --git a/docs/src/api/class-clock.md b/docs/src/api/class-clock.md
index 38ca32976..9996c04a0 100644
--- a/docs/src/api/class-clock.md
+++ b/docs/src/api/class-clock.md
@@ -71,7 +71,7 @@ Fake timers are used to manually control the flow of time in tests. They allow y
Time to initialize with, current system time by default.
### option: Clock.install.time
-* langs: python
+* langs: python, go
* since: v1.45
- `time` <[float]|[string]|[Date]>
@@ -169,7 +169,7 @@ await page.Clock.PauseAtAsync("2020-02-02");
Time to pause at.
### param: Clock.pauseAt.time
-* langs: python
+* langs: python, go
* since: v1.45
- `time` <[float]|[string]|[Date]>
@@ -235,7 +235,7 @@ await page.Clock.SetFixedTimeAsync("2020-02-02");
Time to be set in milliseconds.
### param: Clock.setFixedTime.time
-* langs: python
+* langs: python, go
* since: v1.45
- `time` <[float]|[string]|[Date]>
@@ -293,7 +293,7 @@ await page.Clock.SetSystemTimeAsync("2020-02-02");
Time to be set in milliseconds.
### param: Clock.setSystemTime.time
-* langs: python
+* langs: python, go
* since: v1.45
- `time` <[float]|[string]|[Date]>
diff --git a/docs/src/api/class-consolemessage.md b/docs/src/api/class-consolemessage.md
index 347838ae4..e461d6f9f 100644
--- a/docs/src/api/class-consolemessage.md
+++ b/docs/src/api/class-consolemessage.md
@@ -112,7 +112,7 @@ List of arguments passed to a `console` function call. See also [`event: Page.co
## method: ConsoleMessage.location
* since: v1.8
-* langs: js, python
+* langs: js, python, go
- returns: <[Object]>
- `url` <[string]> URL of the resource.
- `lineNumber` <[int]> 0-based line number in the resource.
@@ -137,6 +137,13 @@ The page that produced this console message, if any.
The text of the console message.
+## method: ConsoleMessage.string
+* since: v1.8
+* langs: go
+- returns: <[string]>
+
+The text of the console message.
+
## method: ConsoleMessage.type
* since: v1.8
- returns: <[string]>
diff --git a/docs/src/api/class-frame.md b/docs/src/api/class-frame.md
index e286c63bf..7dbd5f4fd 100644
--- a/docs/src/api/class-frame.md
+++ b/docs/src/api/class-frame.md
@@ -1946,7 +1946,7 @@ await page.MainFrame.WaitForFunctionAsync("selector => !!document.querySelector(
Optional argument to pass to [`param: expression`].
-### option: Frame.waitForFunction.polling = %%-js-python-wait-for-function-polling-%%
+### option: Frame.waitForFunction.polling = %%-js-python-go-wait-for-function-polling-%%
* since: v1.8
### option: Frame.waitForFunction.polling = %%-csharp-java-wait-for-function-polling-%%
@@ -1998,6 +1998,11 @@ await frame.WaitForLoadStateAsync(); // Defaults to LoadState.Load
```
### param: Frame.waitForLoadState.state = %%-wait-for-load-state-state-%%
+* langs: js, python, csharp, java
+* since: v1.8
+
+### option: Frame.waitForLoadState.state = %%-wait-for-load-state-state-%%
+* langs: go
* since: v1.8
### option: Frame.waitForLoadState.timeout = %%-navigation-timeout-%%
@@ -2010,6 +2015,7 @@ await frame.WaitForLoadStateAsync(); // Defaults to LoadState.Load
* since: v1.8
* deprecated: This method is inherently racy, please use [`method: Frame.waitForURL`] instead.
* langs:
+ * alias-go: ExpectNavigation
* alias-python: expect_navigation
* alias-csharp: RunAndWaitForNavigation
- returns: <[null]|[Response]>
diff --git a/docs/src/api/class-locatorassertions.md b/docs/src/api/class-locatorassertions.md
index 5b4fc45fe..264b363f0 100644
--- a/docs/src/api/class-locatorassertions.md
+++ b/docs/src/api/class-locatorassertions.md
@@ -67,7 +67,7 @@ public class ExampleTests : PageTest
## property: LocatorAssertions.not
* since: v1.20
-* langs: java, js, csharp
+* langs: java, js, csharp, go
- returns: <[LocatorAssertions]>
Makes the assertion check for the opposite condition. For example, this code tests that the Locator doesn't contain text `"error"`:
@@ -1139,7 +1139,7 @@ Expected substring or RegExp or a list of those.
### param: LocatorAssertions.toContainText.expected
* since: v1.18
-* langs: python
+* langs: python, go
- `expected` <[string]|[RegExp]|[Array]<[string]>|[Array]<[RegExp]>|[Array]<[string]|[RegExp]>>
Expected substring or RegExp or a list of those.
@@ -1434,7 +1434,7 @@ Expected class or RegExp or a list of those.
### param: LocatorAssertions.toHaveClass.expected
* since: v1.18
-* langs: python
+* langs: python, go
- `expected` <[string]|[RegExp]|[Array]<[string]>|[Array]<[RegExp]>|[Array]<[string]|[RegExp]>>
Expected class or RegExp or a list of those.
@@ -1961,7 +1961,7 @@ Expected string or RegExp or a list of those.
### param: LocatorAssertions.toHaveText.expected
* since: v1.18
-* langs: python
+* langs: python, go
- `expected` <[string]|[RegExp]|[Array]<[string]>|[Array]<[RegExp]>|[Array]<[string]|[RegExp]>>
Expected string or RegExp or a list of those.
@@ -2095,7 +2095,7 @@ await Expect(locator).ToHaveValuesAsync(new Regex[] { new Regex("R"), new Regex(
### param: LocatorAssertions.toHaveValues.values
* since: v1.23
-* langs: js
+* langs: js, go
- `values` <[Array]<[string]|[RegExp]>>
Expected options currently selected.
diff --git a/docs/src/api/class-page.md b/docs/src/api/class-page.md
index f65a90493..712022a65 100644
--- a/docs/src/api/class-page.md
+++ b/docs/src/api/class-page.md
@@ -621,7 +621,7 @@ The order of evaluation of multiple scripts installed via [`method: BrowserConte
### param: Page.addInitScript.script
* since: v1.8
-* langs: js
+* langs: js, go
- `script` <[function]|[string]|[Object]>
- `path` ?<[path]> Path to the JavaScript file. If `path` is a relative path, then it is resolved relative to the
current working directory. Optional.
@@ -1267,6 +1267,14 @@ Passing `null` disables CSS media emulation.
Changes the CSS media type of the page. The only allowed values are `'Screen'`, `'Print'` and `'Null'`.
Passing `'Null'` disables CSS media emulation.
+### option: Page.emulateMedia.media
+* since: v1.9
+* langs: go
+- `media` <[Media]<"screen"|"print"|"no-override">>
+
+Changes the CSS media type of the page. The only allowed values are `'screen'`, `'print'` and `'no-override'`.
+Passing `'no-override'` disables CSS media emulation.
+
### option: Page.emulateMedia.colorScheme
* since: v1.9
* langs: js, java
@@ -1283,6 +1291,14 @@ Emulates [prefers-colors-scheme](https://developer.mozilla.org/en-US/docs/Web/CS
Emulates [prefers-colors-scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) media feature, supported values are `'light'` and `'dark'`. Passing
`'Null'` disables color scheme emulation. `'no-preference'` is deprecated.
+### option: Page.emulateMedia.colorScheme
+* since: v1.9
+* langs: go
+- `colorScheme` <[ColorScheme]<"light"|"dark"|"no-preference"|"no-override">>
+
+Emulates [prefers-colors-scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) media feature, supported values are `'light'` and `'dark'`. Passing
+`'no-override'` disables color scheme emulation. `'no-preference'` is deprecated.
+
### option: Page.emulateMedia.reducedMotion
* since: v1.12
* langs: js, java
@@ -1297,6 +1313,13 @@ Emulates `'prefers-reduced-motion'` media feature, supported values are `'reduce
Emulates `'prefers-reduced-motion'` media feature, supported values are `'reduce'`, `'no-preference'`. Passing `null` disables reduced motion emulation.
+### option: Page.emulateMedia.reducedMotion
+* since: v1.12
+* langs: go
+- `reducedMotion` <[ReducedMotion]<"reduce"|"no-preference"|"no-override">>
+
+Emulates `'prefers-reduced-motion'` media feature, supported values are `'reduce'`, `'no-preference'`. Passing `no-override` disables reduced motion emulation.
+
### option: Page.emulateMedia.forcedColors
* since: v1.15
* langs: js, java
@@ -1309,6 +1332,11 @@ Emulates `'forced-colors'` media feature, supported values are `'active'` and `'
* langs: csharp, python
- `forcedColors` <[ForcedColors]<"active"|"none"|"null">>
+### option: Page.emulateMedia.forcedColors
+* since: v1.15
+* langs: go
+- `forcedColors` <[ForcedColors]<"active"|"none"|"no-override">>
+
## async method: Page.evalOnSelector
* since: v1.9
* discouraged: This method does not wait for the element to pass actionability
@@ -2128,14 +2156,14 @@ Frame name specified in the `iframe`'s `name` attribute.
### option: Page.frame.name
* since: v1.8
-* langs: python
+* langs: python, go
- `name` ?<[string]>
Frame name specified in the `iframe`'s `name` attribute. Optional.
### option: Page.frame.url
* since: v1.8
-* langs: python
+* langs: python, go
- `url` ?<[string]|[RegExp]|[function]\([URL]\):[boolean]>
A glob pattern, regex pattern or predicate receiving frame's `url` as a [URL] object. Optional.
@@ -2909,7 +2937,7 @@ Paper width, accepts values labeled with units.
### option: Page.pdf.width
* since: v1.8
-* langs: csharp, java
+* langs: csharp, java, go
- `width` <[string]>
Paper width, accepts values labeled with units.
@@ -2923,7 +2951,7 @@ Paper height, accepts values labeled with units.
### option: Page.pdf.height
* since: v1.8
-* langs: csharp, java
+* langs: csharp, java, go
- `height` <[string]>
Paper height, accepts values labeled with units.
@@ -2941,7 +2969,7 @@ Paper margins, defaults to none.
### option: Page.pdf.margin
* since: v1.8
-* langs: csharp, java
+* langs: csharp, java, go
- `margin` <[Object]>
- `top` ?<[string]> Top margin, accepts values labeled with units. Defaults to `0`.
- `right` ?<[string]> Right margin, accepts values labeled with units. Defaults to `0`.
@@ -3362,7 +3390,7 @@ Function that should be run once [`param: locator`] appears. This function shoul
Function that should be run once [`param: locator`] appears. This function should get rid of the element that blocks actions like click.
### param: Page.addLocatorHandler.handler
-* langs: java
+* langs: java, go
* since: v1.42
- `handler` <[function]\([Locator]\)>
@@ -3610,6 +3638,13 @@ it gets merged via the [`new URL()`](https://developer.mozilla.org/en-US/docs/We
handler function to route the request.
+### param: Page.route.handler
+* since: v1.8
+* langs: go
+- `handler` <[function]\([Route]\)>
+
+handler function to route the request.
+
### param: Page.route.handler
* since: v1.8
* langs: csharp, java
@@ -3744,7 +3779,7 @@ Handler function to route the WebSocket.
### param: Page.routeWebSocket.handler
* since: v1.48
-* langs: csharp, java
+* langs: csharp, java, go
- `handler` <[function]\([WebSocketRoute]\)>
Handler function to route the WebSocket.
@@ -4073,14 +4108,14 @@ await page.GotoAsync("https://www.microsoft.com");
### param: Page.setViewportSize.width
* since: v1.10
-* langs: csharp, java
+* langs: csharp, java, go
- `width` <[int]>
Page width in pixels.
### param: Page.setViewportSize.height
* since: v1.10
-* langs: csharp, java
+* langs: csharp, java, go
- `height` <[int]>
Page height in pixels.
@@ -4267,6 +4302,13 @@ A glob pattern, regex pattern or predicate receiving [URL] to match while routin
Optional handler function to route the request.
+### param: Page.unroute.handler
+* since: v1.8
+* langs: go
+- `handler` ?<[function]\([Route]\)>
+
+Optional handler function to route the request.
+
### param: Page.unroute.handler
* since: v1.8
* langs: csharp, java
@@ -4305,7 +4347,8 @@ Performs action and waits for the Page to close.
## async method: Page.waitForConsoleMessage
* since: v1.9
-* langs: java, python, csharp
+* langs: java, python, csharp, go
+ - alias-go: ExpectConsoleMessage
- alias-python: expect_console_message
- alias-csharp: RunAndWaitForConsoleMessage
- returns: <[ConsoleMessage]>
@@ -4336,7 +4379,8 @@ Receives the [ConsoleMessage] object and resolves to truthy value when the waiti
## async method: Page.waitForDownload
* since: v1.9
-* langs: java, python, csharp
+* langs: java, python, csharp, go
+ - alias-go: ExpectDownload
- alias-python: expect_download
- alias-csharp: RunAndWaitForDownload
- returns: <[Download]>
@@ -4367,7 +4411,8 @@ Receives the [Download] object and resolves to truthy value when the waiting sho
## async method: Page.waitForEvent
* since: v1.8
-* langs: js, python
+* langs: js, python, go
+ - alias-go: ExpectEvent
- alias-python: expect_event
- returns: <[any]>
@@ -4420,7 +4465,8 @@ Either a predicate that receives an event or an options object. Optional.
## async method: Page.waitForFileChooser
* since: v1.9
-* langs: java, python, csharp
+* langs: java, python, csharp, go
+ - alias-go: ExpectFileChooser
- alias-python: expect_file_chooser
- alias-csharp: RunAndWaitForFileChooser
- returns: <[FileChooser]>
@@ -4578,7 +4624,7 @@ await page.WaitForFunctionAsync("selector => !!document.querySelector(selector)"
Optional argument to pass to [`param: expression`].
-### option: Page.waitForFunction.polling = %%-js-python-wait-for-function-polling-%%
+### option: Page.waitForFunction.polling = %%-js-python-go-wait-for-function-polling-%%
* since: v1.8
### option: Page.waitForFunction.polling = %%-csharp-java-wait-for-function-polling-%%
@@ -4675,6 +4721,11 @@ Console.WriteLine(await popup.TitleAsync()); // popup is ready to use.
```
### param: Page.waitForLoadState.state = %%-wait-for-load-state-state-%%
+* langs: js, python, csharp, java
+* since: v1.8
+
+### option: Page.waitForLoadState.state = %%-wait-for-load-state-state-%%
+* langs: go
* since: v1.8
### option: Page.waitForLoadState.timeout = %%-navigation-timeout-%%
@@ -4687,6 +4738,7 @@ Console.WriteLine(await popup.TitleAsync()); // popup is ready to use.
* since: v1.8
* deprecated: This method is inherently racy, please use [`method: Page.waitForURL`] instead.
* langs:
+ * alias-go: ExpectNavigation
* alias-python: expect_navigation
* alias-csharp: RunAndWaitForNavigation
- returns: <[null]|[Response]>
@@ -4771,7 +4823,8 @@ a navigation.
## async method: Page.waitForPopup
* since: v1.9
-* langs: java, python, csharp
+* langs: java, python, csharp, go
+ - alias-go: ExpectPopup
- alias-python: expect_popup
- alias-csharp: RunAndWaitForPopup
- returns: <[Page]>
@@ -4803,6 +4856,7 @@ Receives the [Page] object and resolves to truthy value when the waiting should
## async method: Page.waitForRequest
* since: v1.8
* langs:
+ * alias-go: ExpectRequest
* alias-python: expect_request
* alias-csharp: RunAndWaitForRequest
- returns: <[Request]>
@@ -4910,7 +4964,8 @@ changed by using the [`method: Page.setDefaultTimeout`] method.
## async method: Page.waitForRequestFinished
* since: v1.12
-* langs: java, python, csharp
+* langs: java, python, csharp, go
+ - alias-go: ExpectRequestFinished
- alias-python: expect_request_finished
- alias-csharp: RunAndWaitForRequestFinished
- returns: <[Request]>
@@ -4942,6 +4997,7 @@ Receives the [Request] object and resolves to truthy value when the waiting shou
## async method: Page.waitForResponse
* since: v1.8
* langs:
+ * alias-go: ExpectResponse
* alias-python: expect_response
* alias-csharp: RunAndWaitForResponse
- returns: <[Response]>
@@ -5305,7 +5361,8 @@ await page.WaitForURLAsync("**/target.html");
## async method: Page.waitForWebSocket
* since: v1.9
-* langs: java, python, csharp
+* langs: java, python, csharp, go
+ - alias-go: ExpectWebSocket
- alias-python: expect_websocket
- alias-csharp: RunAndWaitForWebSocket
- returns: <[WebSocket]>
@@ -5336,7 +5393,8 @@ Receives the [WebSocket] object and resolves to truthy value when the waiting sh
## async method: Page.waitForWorker
* since: v1.9
-* langs: java, python, csharp
+* langs: java, python, csharp, go
+ - alias-go: ExpectWorker
- alias-python: expect_worker
- alias-csharp: RunAndWaitForWorker
- returns: <[Worker]>
@@ -5378,7 +5436,8 @@ This does not contain ServiceWorkers
## async method: Page.waitForEvent2
* since: v1.8
-* langs: python
+* langs: python, go
+ - alias-go: WaitForEvent
- alias-python: wait_for_event
- returns: <[any]>
diff --git a/docs/src/api/class-pageassertions.md b/docs/src/api/class-pageassertions.md
index 8eefd41f0..161b55b53 100644
--- a/docs/src/api/class-pageassertions.md
+++ b/docs/src/api/class-pageassertions.md
@@ -69,7 +69,7 @@ public class ExampleTests : PageTest
## property: PageAssertions.not
* since: v1.20
-* langs: java, js, csharp
+* langs: java, js, csharp, go
- returns: <[PageAssertions]>
Makes the assertion check for the opposite condition. For example, this code tests that the page URL doesn't contain `"error"`:
diff --git a/docs/src/api/class-playwrightassertions.md b/docs/src/api/class-playwrightassertions.md
index aa4e0a42a..2b822104e 100644
--- a/docs/src/api/class-playwrightassertions.md
+++ b/docs/src/api/class-playwrightassertions.md
@@ -1,5 +1,5 @@
# class: PlaywrightAssertions
-* langs: js, java, csharp
+* langs: js, java, csharp, go
* since: v1.17
Playwright gives you Web-First Assertions with convenience methods for creating assertions that will wait and retry until the expected condition is met.
@@ -79,6 +79,7 @@ By default, the timeout for assertions is set to 5 seconds.
- alias-python: expect
- alias-js: expect
- alias-csharp: Expect
+ - alias-go: APIResponse
- returns: <[APIResponseAssertions]>
Creates a [APIResponseAssertions] object for the given [APIResponse].
@@ -117,6 +118,7 @@ Value that will be asserted.
- alias-python: expect
- alias-js: expect
- alias-csharp: Expect
+ - alias-go: Locator
- returns: <[LocatorAssertions]>
Creates a [LocatorAssertions] object for the given [Locator].
@@ -144,6 +146,7 @@ await Expect(locator).ToBeVisibleAsync();
- alias-python: expect
- alias-js: expect
- alias-csharp: Expect
+ - alias-go: Page
- returns: <[PageAssertions]>
Creates a [PageAssertions] object for the given [Page].
diff --git a/docs/src/api/class-request.md b/docs/src/api/class-request.md
index e13d9de69..6fb14af3d 100644
--- a/docs/src/api/class-request.md
+++ b/docs/src/api/class-request.md
@@ -126,6 +126,13 @@ Headers with multiple entries, such as `Set-Cookie`, appear in the array multipl
Returns the value of the header matching the name. The name is case-insensitive.
+## async method: Request.headerValue
+* since: v1.15
+* langs: go
+- returns: <[string]>
+
+Returns the value of the header matching the name. The name is case insensitive.
+
### param: Request.headerValue.name
* since: v1.15
- `name` <[string]>
@@ -161,7 +168,7 @@ Request's post body in a binary form, if any.
## method: Request.postDataJSON
* since: v1.8
-* langs: js, python
+* langs: js, python, go
- returns: <[null]|[Serializable]>
Returns parsed request's body for `form-urlencoded` and JSON as a fallback if any.
diff --git a/docs/src/api/class-response.md b/docs/src/api/class-response.md
index cddaf6965..6aa3225f5 100644
--- a/docs/src/api/class-response.md
+++ b/docs/src/api/class-response.md
@@ -23,7 +23,7 @@ Waits for this response to finish, returns always `null`.
## async method: Response.finished
* since: v1.8
-* langs: js
+* langs: js, go
- returns: <[null]|[Error]>
## method: Response.frame
@@ -62,6 +62,14 @@ Headers with multiple entries, such as `Set-Cookie`, appear in the array multipl
Returns the value of the header matching the name. The name is case-insensitive. If multiple headers have
the same name (except `set-cookie`), they are returned as a list separated by `, `. For `set-cookie`, the `\n` separator is used. If no headers are found, `null` is returned.
+## async method: Response.headerValue
+* since: v1.15
+* langs: go
+- returns: <[string]>
+
+Returns the value of the header matching the name. The name is case insensitive. If multiple headers have
+the same name (except `set-cookie`), they are returned as a list separated by `, `. For `set-cookie`, the `\n` separator is used. If no headers are found, "" is returned.
+
### param: Response.headerValue.name