playwright-ruby-client 1.49.1 → 1.50.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/documentation/docs/api/browser.md +1 -1
- data/documentation/docs/api/browser_type.md +2 -0
- data/documentation/docs/api/clock.md +10 -0
- data/documentation/docs/api/element_handle.md +0 -1
- data/documentation/docs/api/experimental/android_device.md +1 -1
- data/documentation/docs/api/frame.md +0 -1
- data/documentation/docs/api/locator.md +6 -4
- data/documentation/docs/api/locator_assertions.md +41 -8
- data/documentation/docs/api/page.md +0 -3
- data/documentation/docs/include/api_coverage.md +3 -0
- data/lib/playwright/locator_assertions_impl.rb +34 -6
- data/lib/playwright/version.rb +2 -2
- data/lib/playwright_api/android.rb +6 -6
- data/lib/playwright_api/android_device.rb +10 -10
- data/lib/playwright_api/api_request_context.rb +6 -6
- data/lib/playwright_api/browser.rb +7 -7
- data/lib/playwright_api/browser_context.rb +12 -12
- data/lib/playwright_api/browser_type.rb +12 -13
- data/lib/playwright_api/cdp_session.rb +6 -6
- data/lib/playwright_api/clock.rb +10 -0
- data/lib/playwright_api/dialog.rb +6 -6
- data/lib/playwright_api/element_handle.rb +6 -6
- data/lib/playwright_api/frame.rb +8 -8
- data/lib/playwright_api/js_handle.rb +6 -6
- data/lib/playwright_api/locator.rb +6 -4
- data/lib/playwright_api/locator_assertions.rb +33 -9
- data/lib/playwright_api/page.rb +16 -18
- data/lib/playwright_api/playwright.rb +6 -6
- data/lib/playwright_api/request.rb +8 -8
- data/lib/playwright_api/response.rb +6 -6
- data/lib/playwright_api/route.rb +6 -6
- data/lib/playwright_api/selectors.rb +6 -6
- data/lib/playwright_api/tracing.rb +6 -6
- data/lib/playwright_api/web_socket.rb +6 -6
- data/lib/playwright_api/worker.rb +6 -6
- data/sig/playwright.rbs +5 -2
- metadata +3 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1987004c514d458f26c9d9860c2571b749cc92479586e2fd2cdc06758a35af5c
|
4
|
+
data.tar.gz: 6d74956b9f6a425ec5c5220e4e22c4ec1ead12d15147d25d4f1f1a55886df546
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16dc2df9e5b70a8850f5e9eb651e2e0e832d1131e403bd9912811675c407f943f50c97f15872a3c6ef141fae0ec95c61dce7a1168222b38c80cd5176b7438a41
|
7
|
+
data.tar.gz: 40d560d9faf16aec2a91f514a61ef8b229c7895da320bacd1fccddad27f4465471a57269fb9d084a31ea1827463da112fadf43151c6afc03f0564e8e98b2d0b9
|
@@ -40,7 +40,7 @@ were opened).
|
|
40
40
|
In case this browser is connected to, clears all created contexts belonging to this browser and disconnects from the
|
41
41
|
browser server.
|
42
42
|
|
43
|
-
**NOTE**: This is similar to force
|
43
|
+
**NOTE**: This is similar to force-quitting the browser. To close pages gracefully and ensure you receive page close events, call [BrowserContext#close](./browser_context#close) on any [BrowserContext](./browser_context) instances you explicitly created earlier using [Browser#new_context](./browser#new_context) **before** calling [Browser#close](./browser#close).
|
44
44
|
|
45
45
|
The [Browser](./browser) object itself is considered to be disposed and cannot be used anymore.
|
46
46
|
|
@@ -37,6 +37,8 @@ The default browser context is accessible via [Browser#contexts](./browser#conte
|
|
37
37
|
|
38
38
|
**NOTE**: Connecting over the Chrome DevTools Protocol is only supported for Chromium-based browsers.
|
39
39
|
|
40
|
+
**NOTE**: This connection is significantly lower fidelity than the Playwright protocol connection via [BrowserType#connect](./browser_type#connect). If you are experiencing issues or attempting to use advanced functionality, you probably want to use [BrowserType#connect](./browser_type#connect).
|
41
|
+
|
40
42
|
**Usage**
|
41
43
|
|
42
44
|
```ruby
|
@@ -85,6 +85,16 @@ page.clock.pause_at(Time.parse("2020-02-02"))
|
|
85
85
|
page.clock.pause_at("2020-02-02")
|
86
86
|
```
|
87
87
|
|
88
|
+
For best results, install the clock before navigating the page and set it to a time slightly before the intended test time. This ensures that all timers run normally during page loading, preventing the page from getting stuck. Once the page has fully loaded, you can safely use [Clock#pause_at](./clock#pause_at) to pause the clock.
|
89
|
+
|
90
|
+
```ruby
|
91
|
+
# Initialize clock with some time before the test time and let the page load
|
92
|
+
# naturally. `Date.now` will progress as the timers fire.
|
93
|
+
page.clock.install(Time.parse("2024-12-10T08:00:00Z"))
|
94
|
+
page.goto("http://localhost:3333")
|
95
|
+
page.clock.pause_at(Time.parse("2024-12-10T10:00:00Z"))
|
96
|
+
```
|
97
|
+
|
88
98
|
## resume
|
89
99
|
|
90
100
|
```
|
@@ -192,7 +192,6 @@ properties:
|
|
192
192
|
You can also specify [JSHandle](./js_handle) as the property value if you want live objects to be passed into the event:
|
193
193
|
|
194
194
|
```ruby
|
195
|
-
# note you can only create data_transfer in chromium and firefox
|
196
195
|
data_transfer = page.evaluate_handle("new DataTransfer()")
|
197
196
|
element_handle.dispatch_event("dragstart", eventInit: { dataTransfer: data_transfer })
|
198
197
|
```
|
@@ -34,7 +34,6 @@ def launch_browser(
|
|
34
34
|
baseURL: nil,
|
35
35
|
bypassCSP: nil,
|
36
36
|
colorScheme: nil,
|
37
|
-
command: nil,
|
38
37
|
deviceScaleFactor: nil,
|
39
38
|
extraHTTPHeaders: nil,
|
40
39
|
forcedColors: nil,
|
@@ -48,6 +47,7 @@ def launch_browser(
|
|
48
47
|
noViewport: nil,
|
49
48
|
offline: nil,
|
50
49
|
permissions: nil,
|
50
|
+
pkg: nil,
|
51
51
|
proxy: nil,
|
52
52
|
record_har_content: nil,
|
53
53
|
record_har_mode: nil,
|
@@ -190,7 +190,6 @@ properties:
|
|
190
190
|
You can also specify [JSHandle](./js_handle) as the property value if you want live objects to be passed into the event:
|
191
191
|
|
192
192
|
```ruby
|
193
|
-
# note you can only create data_transfer in chromium and firefox
|
194
193
|
data_transfer = frame.evaluate_handle("new DataTransfer()")
|
195
194
|
frame.dispatch_event("#source", "dragstart", eventInit: { dataTransfer: data_transfer })
|
196
195
|
```
|
@@ -358,7 +358,6 @@ properties:
|
|
358
358
|
You can also specify [JSHandle](./js_handle) as the property value if you want live objects to be passed into the event:
|
359
359
|
|
360
360
|
```ruby
|
361
|
-
# note you can only create data_transfer in chromium and firefox
|
362
361
|
data_transfer = page.evaluate_handle("new DataTransfer()")
|
363
362
|
locator.dispatch_event("dragstart", eventInit: { dataTransfer: data_transfer })
|
364
363
|
```
|
@@ -945,7 +944,7 @@ def editable?(timeout: nil)
|
|
945
944
|
```
|
946
945
|
|
947
946
|
|
948
|
-
Returns whether the element is [editable](https://playwright.dev/python/docs/actionability#editable).
|
947
|
+
Returns whether the element is [editable](https://playwright.dev/python/docs/actionability#editable). If the target element is not an `<input>`, `<textarea>`, `<select>`, `[contenteditable]` and does not have a role allowing `[aria-readonly]`, this method throws an error.
|
949
948
|
|
950
949
|
**NOTE**: If you need to assert that an element is editable, prefer [LocatorAssertions#to_be_editable](./locator_assertions#to_be_editable) to avoid flakiness. See [assertions guide](https://playwright.dev/python/docs/test-assertions) for more details.
|
951
950
|
|
@@ -1061,16 +1060,19 @@ def or(locator)
|
|
1061
1060
|
|
1062
1061
|
Creates a locator matching all elements that match one or both of the two locators.
|
1063
1062
|
|
1064
|
-
Note that when both locators match something, the resulting locator will have multiple matches
|
1063
|
+
Note that when both locators match something, the resulting locator will have multiple matches, potentially causing a [locator strictness](https://playwright.dev/python/docs/locators#strictness) violation.
|
1065
1064
|
|
1066
1065
|
**Usage**
|
1067
1066
|
|
1068
1067
|
Consider a scenario where you'd like to click on a "New email" button, but sometimes a security settings dialog shows up instead. In this case, you can wait for either a "New email" button, or a dialog and act accordingly.
|
1069
1068
|
|
1069
|
+
**NOTE**: If both "New email" button and security dialog appear on screen, the "or" locator will match both of them,
|
1070
|
+
possibly throwing the ["strict mode violation" error](https://playwright.dev/python/docs/locators#strictness). In this case, you can use [Locator#first](./locator#first) to only match one of them.
|
1071
|
+
|
1070
1072
|
```ruby
|
1071
1073
|
new_email = page.get_by_role("button", name: "New")
|
1072
1074
|
dialog = page.get_by_text("Confirm security settings")
|
1073
|
-
new_email.or(dialog).wait_for(state: 'visible')
|
1075
|
+
new_email.or(dialog).first.wait_for(state: 'visible')
|
1074
1076
|
if dialog.visible?
|
1075
1077
|
page.get_by_role("button", name: "Dismiss").click
|
1076
1078
|
end
|
@@ -134,6 +134,15 @@ expect(locator).not_to have_accessible_description(name, ignoreCase: nil, timeou
|
|
134
134
|
|
135
135
|
The opposite of [LocatorAssertions#to_have_accessible_description](./locator_assertions#to_have_accessible_description).
|
136
136
|
|
137
|
+
## not_to_have_accessible_error_message
|
138
|
+
|
139
|
+
```ruby
|
140
|
+
expect(locator).not_to have_accessible_error_message(errorMessage, ignoreCase: nil, timeout: nil)
|
141
|
+
```
|
142
|
+
|
143
|
+
|
144
|
+
The opposite of [LocatorAssertions#to_have_accessible_error_message](./locator_assertions#to_have_accessible_error_message).
|
145
|
+
|
137
146
|
## not_to_have_accessible_name
|
138
147
|
|
139
148
|
```ruby
|
@@ -233,6 +242,15 @@ expect(locator).not_to have_values(values, timeout: nil)
|
|
233
242
|
|
234
243
|
The opposite of [LocatorAssertions#to_have_values](./locator_assertions#to_have_values).
|
235
244
|
|
245
|
+
## not_to_match_aria_snapshot
|
246
|
+
|
247
|
+
```ruby
|
248
|
+
expect(locator).not_to match_aria_snapshot(expected, timeout: nil)
|
249
|
+
```
|
250
|
+
|
251
|
+
|
252
|
+
The opposite of [LocatorAssertions#to_match_aria_snapshot](./locator_assertions#to_match_aria_snapshot).
|
253
|
+
|
236
254
|
## to_be_attached
|
237
255
|
|
238
256
|
```ruby
|
@@ -257,7 +275,7 @@ expect(page.get_by_text("Hidden text")).to be_attached
|
|
257
275
|
## to_be_checked
|
258
276
|
|
259
277
|
```ruby
|
260
|
-
expect(locator).to be_checked(checked: nil, timeout: nil)
|
278
|
+
expect(locator).to be_checked(checked: nil, indeterminate: nil, timeout: nil)
|
261
279
|
```
|
262
280
|
|
263
281
|
|
@@ -488,6 +506,22 @@ locator = page.get_by_test_id("save-button")
|
|
488
506
|
expect(locator).to have_accessible_description("Save results to disk")
|
489
507
|
```
|
490
508
|
|
509
|
+
## to_have_accessible_error_message
|
510
|
+
|
511
|
+
```ruby
|
512
|
+
expect(locator).to have_accessible_error_message(errorMessage, ignoreCase: nil, timeout: nil)
|
513
|
+
```
|
514
|
+
|
515
|
+
|
516
|
+
Ensures the [Locator](./locator) points to an element with a given [aria errormessage](https://w3c.github.io/aria/#aria-errormessage).
|
517
|
+
|
518
|
+
**Usage**
|
519
|
+
|
520
|
+
```ruby
|
521
|
+
locator = page.get_by_test_id("username-input")
|
522
|
+
expect(locator).to have_accessible_error_message("Username is required.")
|
523
|
+
```
|
524
|
+
|
491
525
|
## to_have_accessible_name
|
492
526
|
|
493
527
|
```ruby
|
@@ -527,22 +561,21 @@ expect(locator).to have_class(expected, timeout: nil)
|
|
527
561
|
```
|
528
562
|
|
529
563
|
|
530
|
-
Ensures the [Locator](./locator) points to an element with given CSS classes.
|
531
|
-
or using a relaxed regular expression.
|
564
|
+
Ensures the [Locator](./locator) points to an element with given CSS classes. When a string is provided, it must fully match the element's `class` attribute. To match individual classes or perform partial matches, use a regular expression:
|
532
565
|
|
533
566
|
**Usage**
|
534
567
|
|
535
568
|
```html
|
536
|
-
<div class='selected row' id='component'></div>
|
569
|
+
<div class='middle selected row' id='component'></div>
|
537
570
|
```
|
538
571
|
|
539
572
|
```ruby
|
540
573
|
locator = page.locator("#component")
|
541
|
-
expect(locator).to have_class(/selected/)
|
542
|
-
expect(locator).to have_class("selected row")
|
574
|
+
expect(locator).to have_class(/(^|\s)selected(\s|$)/)
|
575
|
+
expect(locator).to have_class("middle selected row")
|
543
576
|
```
|
544
577
|
|
545
|
-
|
578
|
+
When an array is passed, the method asserts that the list of elements located matches the corresponding list of expected class values. Each element's class attribute is matched against the corresponding string or regular expression in the array:
|
546
579
|
|
547
580
|
```ruby
|
548
581
|
locator = page.locator("list > .component")
|
@@ -741,7 +774,7 @@ Asserts that the target element matches the given [accessibility snapshot](https
|
|
741
774
|
|
742
775
|
```ruby
|
743
776
|
page.goto('https://demo.playwright.dev/todomvc/')
|
744
|
-
expect(page.locator('body')).
|
777
|
+
expect(page.locator('body')).to match_aria_snapshot(<<~YAML)
|
745
778
|
- heading "todos"
|
746
779
|
- textbox "What needs to be done?"
|
747
780
|
YAML
|
@@ -253,7 +253,6 @@ You can also specify [JSHandle](./js_handle) as the property value if you want l
|
|
253
253
|
```ruby
|
254
254
|
page.content = '<div id="source">Drag</div>'
|
255
255
|
|
256
|
-
# note you can only create data_transfer in chromium and firefox
|
257
256
|
data_transfer = page.evaluate_handle("new DataTransfer()")
|
258
257
|
page.dispatch_event("#source", "dragstart", eventInit: { dataTransfer: data_transfer })
|
259
258
|
```
|
@@ -1063,8 +1062,6 @@ def pdf(
|
|
1063
1062
|
|
1064
1063
|
Returns the PDF buffer.
|
1065
1064
|
|
1066
|
-
**NOTE**: Generating a pdf is currently only supported in Chromium headless.
|
1067
|
-
|
1068
1065
|
`page.pdf()` generates a pdf of the page with `print` css media. To generate a pdf with `screen` media, call
|
1069
1066
|
[Page#emulate_media](./page#emulate_media) before calling `page.pdf()`:
|
1070
1067
|
|
@@ -565,6 +565,7 @@
|
|
565
565
|
* not_to_be_visible
|
566
566
|
* not_to_contain_text
|
567
567
|
* not_to_have_accessible_description
|
568
|
+
* not_to_have_accessible_error_message
|
568
569
|
* not_to_have_accessible_name
|
569
570
|
* not_to_have_attribute
|
570
571
|
* not_to_have_class
|
@@ -576,6 +577,7 @@
|
|
576
577
|
* not_to_have_text
|
577
578
|
* not_to_have_value
|
578
579
|
* not_to_have_values
|
580
|
+
* not_to_match_aria_snapshot
|
579
581
|
* to_be_attached
|
580
582
|
* to_be_checked
|
581
583
|
* to_be_disabled
|
@@ -588,6 +590,7 @@
|
|
588
590
|
* to_be_visible
|
589
591
|
* to_contain_text
|
590
592
|
* to_have_accessible_description
|
593
|
+
* to_have_accessible_error_message
|
591
594
|
* to_have_accessible_name
|
592
595
|
* to_have_attribute
|
593
596
|
* to_have_class
|
@@ -149,7 +149,7 @@ module Playwright
|
|
149
149
|
_define_negation :to_contain_text
|
150
150
|
|
151
151
|
def to_have_accessible_name(name, ignoreCase: nil, timeout: nil)
|
152
|
-
expected_text = to_expected_text_values([name], ignore_case: ignoreCase)
|
152
|
+
expected_text = to_expected_text_values([name], ignore_case: ignoreCase, normalize_white_space: true)
|
153
153
|
expect_impl(
|
154
154
|
"to.have.accessible.name",
|
155
155
|
{
|
@@ -163,7 +163,7 @@ module Playwright
|
|
163
163
|
_define_negation :to_have_accessible_name
|
164
164
|
|
165
165
|
def to_have_accessible_description(name, ignoreCase: nil, timeout: nil)
|
166
|
-
expected_text = to_expected_text_values([name], ignore_case: ignoreCase)
|
166
|
+
expected_text = to_expected_text_values([name], ignore_case: ignoreCase, normalize_white_space: true)
|
167
167
|
expect_impl(
|
168
168
|
"to.have.accessible.description",
|
169
169
|
{
|
@@ -176,6 +176,20 @@ module Playwright
|
|
176
176
|
end
|
177
177
|
_define_negation :to_have_accessible_description
|
178
178
|
|
179
|
+
def to_have_accessible_error_message(errorMessage, ignoreCase: nil, timeout: nil)
|
180
|
+
expected_text = to_expected_text_values([errorMessage], ignore_case: ignoreCase, normalize_white_space: true)
|
181
|
+
expect_impl(
|
182
|
+
"to.have.accessible.error.message",
|
183
|
+
{
|
184
|
+
expectedText: expected_text,
|
185
|
+
timeout: timeout,
|
186
|
+
},
|
187
|
+
errorMessage,
|
188
|
+
"Locator expected to have accessible error message"
|
189
|
+
)
|
190
|
+
end
|
191
|
+
_define_negation :to_have_accessible_error_message
|
192
|
+
|
179
193
|
def to_have_attribute(name, value, ignoreCase: nil, timeout: nil)
|
180
194
|
expected_text = to_expected_text_values([value], ignore_case: ignoreCase)
|
181
195
|
expect_impl(
|
@@ -372,6 +386,7 @@ module Playwright
|
|
372
386
|
'Locator expected to match Aria snapshot',
|
373
387
|
)
|
374
388
|
end
|
389
|
+
_define_negation :to_match_aria_snapshot
|
375
390
|
|
376
391
|
def to_be_attached(attached: nil, timeout: nil)
|
377
392
|
expect_impl(
|
@@ -383,10 +398,23 @@ module Playwright
|
|
383
398
|
end
|
384
399
|
_define_negation :to_be_attached
|
385
400
|
|
386
|
-
def to_be_checked(checked: nil, timeout: nil)
|
401
|
+
def to_be_checked(checked: nil, indeterminate: nil, timeout: nil)
|
402
|
+
expected_value = {
|
403
|
+
indeterminate: indeterminate,
|
404
|
+
checked: checked,
|
405
|
+
}.compact
|
406
|
+
checked_string =
|
407
|
+
if indeterminate
|
408
|
+
"indeterminate"
|
409
|
+
elsif checked
|
410
|
+
"checked"
|
411
|
+
else
|
412
|
+
"unchecked"
|
413
|
+
end
|
414
|
+
|
387
415
|
expect_impl(
|
388
|
-
|
389
|
-
{ timeout: timeout },
|
416
|
+
"to.be.checked",
|
417
|
+
{ timeout: timeout, expectedValue: expected_value },
|
390
418
|
nil,
|
391
419
|
"Locator expected to be checked"
|
392
420
|
)
|
@@ -466,7 +494,7 @@ module Playwright
|
|
466
494
|
def to_be_in_viewport(ratio: nil, timeout: nil)
|
467
495
|
expect_impl(
|
468
496
|
"to.be.in.viewport",
|
469
|
-
{ timeout: timeout, expectedNumber: ratio }
|
497
|
+
{ timeout: timeout, expectedNumber: ratio },
|
470
498
|
nil,
|
471
499
|
"Locator expected to be in viewport"
|
472
500
|
)
|
data/lib/playwright/version.rb
CHANGED
@@ -40,20 +40,20 @@ module Playwright
|
|
40
40
|
|
41
41
|
# -- inherited from EventEmitter --
|
42
42
|
# @nodoc
|
43
|
-
def
|
44
|
-
event_emitter_proxy.
|
43
|
+
def on(event, callback)
|
44
|
+
event_emitter_proxy.on(event, callback)
|
45
45
|
end
|
46
46
|
|
47
47
|
# -- inherited from EventEmitter --
|
48
48
|
# @nodoc
|
49
|
-
def
|
50
|
-
event_emitter_proxy.
|
49
|
+
def off(event, callback)
|
50
|
+
event_emitter_proxy.off(event, callback)
|
51
51
|
end
|
52
52
|
|
53
53
|
# -- inherited from EventEmitter --
|
54
54
|
# @nodoc
|
55
|
-
def
|
56
|
-
event_emitter_proxy.
|
55
|
+
def once(event, callback)
|
56
|
+
event_emitter_proxy.once(event, callback)
|
57
57
|
end
|
58
58
|
|
59
59
|
private def event_emitter_proxy
|
@@ -51,7 +51,6 @@ module Playwright
|
|
51
51
|
baseURL: nil,
|
52
52
|
bypassCSP: nil,
|
53
53
|
colorScheme: nil,
|
54
|
-
command: nil,
|
55
54
|
deviceScaleFactor: nil,
|
56
55
|
extraHTTPHeaders: nil,
|
57
56
|
forcedColors: nil,
|
@@ -65,6 +64,7 @@ module Playwright
|
|
65
64
|
noViewport: nil,
|
66
65
|
offline: nil,
|
67
66
|
permissions: nil,
|
67
|
+
pkg: nil,
|
68
68
|
proxy: nil,
|
69
69
|
record_har_content: nil,
|
70
70
|
record_har_mode: nil,
|
@@ -81,7 +81,7 @@ module Playwright
|
|
81
81
|
userAgent: nil,
|
82
82
|
viewport: nil,
|
83
83
|
&block)
|
84
|
-
wrap_impl(@impl.launch_browser(acceptDownloads: unwrap_impl(acceptDownloads), args: unwrap_impl(args), baseURL: unwrap_impl(baseURL), bypassCSP: unwrap_impl(bypassCSP), colorScheme: unwrap_impl(colorScheme),
|
84
|
+
wrap_impl(@impl.launch_browser(acceptDownloads: unwrap_impl(acceptDownloads), args: unwrap_impl(args), baseURL: unwrap_impl(baseURL), bypassCSP: unwrap_impl(bypassCSP), colorScheme: unwrap_impl(colorScheme), deviceScaleFactor: unwrap_impl(deviceScaleFactor), extraHTTPHeaders: unwrap_impl(extraHTTPHeaders), forcedColors: unwrap_impl(forcedColors), geolocation: unwrap_impl(geolocation), hasTouch: unwrap_impl(hasTouch), httpCredentials: unwrap_impl(httpCredentials), ignoreHTTPSErrors: unwrap_impl(ignoreHTTPSErrors), isMobile: unwrap_impl(isMobile), javaScriptEnabled: unwrap_impl(javaScriptEnabled), locale: unwrap_impl(locale), noViewport: unwrap_impl(noViewport), offline: unwrap_impl(offline), permissions: unwrap_impl(permissions), pkg: unwrap_impl(pkg), proxy: unwrap_impl(proxy), record_har_content: unwrap_impl(record_har_content), record_har_mode: unwrap_impl(record_har_mode), record_har_omit_content: unwrap_impl(record_har_omit_content), record_har_path: unwrap_impl(record_har_path), record_har_url_filter: unwrap_impl(record_har_url_filter), record_video_dir: unwrap_impl(record_video_dir), record_video_size: unwrap_impl(record_video_size), reducedMotion: unwrap_impl(reducedMotion), screen: unwrap_impl(screen), serviceWorkers: unwrap_impl(serviceWorkers), strictSelectors: unwrap_impl(strictSelectors), timezoneId: unwrap_impl(timezoneId), userAgent: unwrap_impl(userAgent), viewport: unwrap_impl(viewport), &wrap_block_call(block)))
|
85
85
|
end
|
86
86
|
|
87
87
|
#
|
@@ -193,14 +193,20 @@ module Playwright
|
|
193
193
|
raise NotImplementedError.new('web_views is not implemented yet.')
|
194
194
|
end
|
195
195
|
|
196
|
+
# @nodoc
|
197
|
+
def should_close_connection_on_close!
|
198
|
+
wrap_impl(@impl.should_close_connection_on_close!)
|
199
|
+
end
|
200
|
+
|
196
201
|
# @nodoc
|
197
202
|
def tap_on(selector, duration: nil, timeout: nil)
|
198
203
|
wrap_impl(@impl.tap_on(unwrap_impl(selector), duration: unwrap_impl(duration), timeout: unwrap_impl(timeout)))
|
199
204
|
end
|
200
205
|
|
206
|
+
# -- inherited from EventEmitter --
|
201
207
|
# @nodoc
|
202
|
-
def
|
203
|
-
|
208
|
+
def on(event, callback)
|
209
|
+
event_emitter_proxy.on(event, callback)
|
204
210
|
end
|
205
211
|
|
206
212
|
# -- inherited from EventEmitter --
|
@@ -215,12 +221,6 @@ module Playwright
|
|
215
221
|
event_emitter_proxy.once(event, callback)
|
216
222
|
end
|
217
223
|
|
218
|
-
# -- inherited from EventEmitter --
|
219
|
-
# @nodoc
|
220
|
-
def on(event, callback)
|
221
|
-
event_emitter_proxy.on(event, callback)
|
222
|
-
end
|
223
|
-
|
224
224
|
private def event_emitter_proxy
|
225
225
|
@event_emitter_proxy ||= EventEmitterProxy.new(self, @impl)
|
226
226
|
end
|
@@ -288,20 +288,20 @@ module Playwright
|
|
288
288
|
|
289
289
|
# -- inherited from EventEmitter --
|
290
290
|
# @nodoc
|
291
|
-
def
|
292
|
-
event_emitter_proxy.
|
291
|
+
def on(event, callback)
|
292
|
+
event_emitter_proxy.on(event, callback)
|
293
293
|
end
|
294
294
|
|
295
295
|
# -- inherited from EventEmitter --
|
296
296
|
# @nodoc
|
297
|
-
def
|
298
|
-
event_emitter_proxy.
|
297
|
+
def off(event, callback)
|
298
|
+
event_emitter_proxy.off(event, callback)
|
299
299
|
end
|
300
300
|
|
301
301
|
# -- inherited from EventEmitter --
|
302
302
|
# @nodoc
|
303
|
-
def
|
304
|
-
event_emitter_proxy.
|
303
|
+
def once(event, callback)
|
304
|
+
event_emitter_proxy.once(event, callback)
|
305
305
|
end
|
306
306
|
|
307
307
|
private def event_emitter_proxy
|
@@ -30,7 +30,7 @@ module Playwright
|
|
30
30
|
# In case this browser is connected to, clears all created contexts belonging to this browser and disconnects from the
|
31
31
|
# browser server.
|
32
32
|
#
|
33
|
-
# **NOTE**: This is similar to force
|
33
|
+
# **NOTE**: This is similar to force-quitting the browser. To close pages gracefully and ensure you receive page close events, call [`method: BrowserContext.close`] on any `BrowserContext` instances you explicitly created earlier using [`method: Browser.newContext`] **before** calling [`method: Browser.close`].
|
34
34
|
#
|
35
35
|
# The `Browser` object itself is considered to be disposed and cannot be used anymore.
|
36
36
|
def close(reason: nil)
|
@@ -203,20 +203,20 @@ module Playwright
|
|
203
203
|
|
204
204
|
# -- inherited from EventEmitter --
|
205
205
|
# @nodoc
|
206
|
-
def
|
207
|
-
event_emitter_proxy.
|
206
|
+
def on(event, callback)
|
207
|
+
event_emitter_proxy.on(event, callback)
|
208
208
|
end
|
209
209
|
|
210
210
|
# -- inherited from EventEmitter --
|
211
211
|
# @nodoc
|
212
|
-
def
|
213
|
-
event_emitter_proxy.
|
212
|
+
def off(event, callback)
|
213
|
+
event_emitter_proxy.off(event, callback)
|
214
214
|
end
|
215
215
|
|
216
216
|
# -- inherited from EventEmitter --
|
217
217
|
# @nodoc
|
218
|
-
def
|
219
|
-
event_emitter_proxy.
|
218
|
+
def once(event, callback)
|
219
|
+
event_emitter_proxy.once(event, callback)
|
220
220
|
end
|
221
221
|
|
222
222
|
private def event_emitter_proxy
|
@@ -464,8 +464,8 @@ module Playwright
|
|
464
464
|
end
|
465
465
|
|
466
466
|
# @nodoc
|
467
|
-
def
|
468
|
-
wrap_impl(@impl.
|
467
|
+
def owner_page=(req)
|
468
|
+
wrap_impl(@impl.owner_page=(unwrap_impl(req)))
|
469
469
|
end
|
470
470
|
|
471
471
|
# @nodoc
|
@@ -474,13 +474,13 @@ module Playwright
|
|
474
474
|
end
|
475
475
|
|
476
476
|
# @nodoc
|
477
|
-
def
|
478
|
-
wrap_impl(@impl.
|
477
|
+
def enable_debug_console!
|
478
|
+
wrap_impl(@impl.enable_debug_console!)
|
479
479
|
end
|
480
480
|
|
481
481
|
# @nodoc
|
482
|
-
def
|
483
|
-
wrap_impl(@impl.
|
482
|
+
def pause
|
483
|
+
wrap_impl(@impl.pause)
|
484
484
|
end
|
485
485
|
|
486
486
|
# @nodoc
|
@@ -490,20 +490,20 @@ module Playwright
|
|
490
490
|
|
491
491
|
# -- inherited from EventEmitter --
|
492
492
|
# @nodoc
|
493
|
-
def
|
494
|
-
event_emitter_proxy.
|
493
|
+
def on(event, callback)
|
494
|
+
event_emitter_proxy.on(event, callback)
|
495
495
|
end
|
496
496
|
|
497
497
|
# -- inherited from EventEmitter --
|
498
498
|
# @nodoc
|
499
|
-
def
|
500
|
-
event_emitter_proxy.
|
499
|
+
def off(event, callback)
|
500
|
+
event_emitter_proxy.off(event, callback)
|
501
501
|
end
|
502
502
|
|
503
503
|
# -- inherited from EventEmitter --
|
504
504
|
# @nodoc
|
505
|
-
def
|
506
|
-
event_emitter_proxy.
|
505
|
+
def once(event, callback)
|
506
|
+
event_emitter_proxy.once(event, callback)
|
507
507
|
end
|
508
508
|
|
509
509
|
private def event_emitter_proxy
|
@@ -20,13 +20,10 @@ module Playwright
|
|
20
20
|
class BrowserType < PlaywrightApi
|
21
21
|
|
22
22
|
#
|
23
|
-
# This method attaches Playwright to an existing browser instance
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
headers: nil,
|
28
|
-
slowMo: nil,
|
29
|
-
timeout: nil)
|
23
|
+
# This method attaches Playwright to an existing browser instance created via `BrowserType.launchServer` in Node.js.
|
24
|
+
#
|
25
|
+
# **NOTE**: The major and minor version of the Playwright instance that connects needs to match the version of Playwright that launches the browser (1.2.3 → is compatible with 1.2.x).
|
26
|
+
def connect
|
30
27
|
raise NotImplementedError.new('connect is not implemented yet.')
|
31
28
|
end
|
32
29
|
|
@@ -37,6 +34,8 @@ module Playwright
|
|
37
34
|
#
|
38
35
|
# **NOTE**: Connecting over the Chrome DevTools Protocol is only supported for Chromium-based browsers.
|
39
36
|
#
|
37
|
+
# **NOTE**: This connection is significantly lower fidelity than the Playwright protocol connection via [`method: BrowserType.connect`]. If you are experiencing issues or attempting to use advanced functionality, you probably want to use [`method: BrowserType.connect`].
|
38
|
+
#
|
40
39
|
# **Usage**
|
41
40
|
#
|
42
41
|
# ```python sync
|
@@ -177,20 +176,20 @@ module Playwright
|
|
177
176
|
|
178
177
|
# -- inherited from EventEmitter --
|
179
178
|
# @nodoc
|
180
|
-
def
|
181
|
-
event_emitter_proxy.
|
179
|
+
def on(event, callback)
|
180
|
+
event_emitter_proxy.on(event, callback)
|
182
181
|
end
|
183
182
|
|
184
183
|
# -- inherited from EventEmitter --
|
185
184
|
# @nodoc
|
186
|
-
def
|
187
|
-
event_emitter_proxy.
|
185
|
+
def off(event, callback)
|
186
|
+
event_emitter_proxy.off(event, callback)
|
188
187
|
end
|
189
188
|
|
190
189
|
# -- inherited from EventEmitter --
|
191
190
|
# @nodoc
|
192
|
-
def
|
193
|
-
event_emitter_proxy.
|
191
|
+
def once(event, callback)
|
192
|
+
event_emitter_proxy.once(event, callback)
|
194
193
|
end
|
195
194
|
|
196
195
|
private def event_emitter_proxy
|
@@ -33,20 +33,20 @@ module Playwright
|
|
33
33
|
|
34
34
|
# -- inherited from EventEmitter --
|
35
35
|
# @nodoc
|
36
|
-
def
|
37
|
-
event_emitter_proxy.
|
36
|
+
def on(event, callback)
|
37
|
+
event_emitter_proxy.on(event, callback)
|
38
38
|
end
|
39
39
|
|
40
40
|
# -- inherited from EventEmitter --
|
41
41
|
# @nodoc
|
42
|
-
def
|
43
|
-
event_emitter_proxy.
|
42
|
+
def off(event, callback)
|
43
|
+
event_emitter_proxy.off(event, callback)
|
44
44
|
end
|
45
45
|
|
46
46
|
# -- inherited from EventEmitter --
|
47
47
|
# @nodoc
|
48
|
-
def
|
49
|
-
event_emitter_proxy.
|
48
|
+
def once(event, callback)
|
49
|
+
event_emitter_proxy.once(event, callback)
|
50
50
|
end
|
51
51
|
|
52
52
|
private def event_emitter_proxy
|