playwright-ruby-client 1.50.0 → 1.51.0

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.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/documentation/docs/api/browser.md +2 -0
  3. data/documentation/docs/api/browser_context.md +2 -2
  4. data/documentation/docs/api/browser_type.md +1 -0
  5. data/documentation/docs/api/experimental/android_device.md +1 -0
  6. data/documentation/docs/api/locator.md +10 -10
  7. data/documentation/docs/api/page.md +6 -1
  8. data/documentation/docs/api/touchscreen.md +2 -0
  9. data/documentation/docs/api/web_socket.md +3 -1
  10. data/lib/playwright/channel_owners/browser_context.rb +2 -2
  11. data/lib/playwright/channel_owners/page.rb +2 -1
  12. data/lib/playwright/locator_assertions_impl.rb +1 -1
  13. data/lib/playwright/locator_impl.rb +9 -3
  14. data/lib/playwright/utils.rb +1 -1
  15. data/lib/playwright/version.rb +2 -2
  16. data/lib/playwright_api/android.rb +4 -4
  17. data/lib/playwright_api/android_device.rb +6 -5
  18. data/lib/playwright_api/api_request.rb +1 -0
  19. data/lib/playwright_api/api_request_context.rb +5 -5
  20. data/lib/playwright_api/browser.rb +8 -6
  21. data/lib/playwright_api/browser_context.rb +16 -16
  22. data/lib/playwright_api/browser_type.rb +12 -6
  23. data/lib/playwright_api/cdp_session.rb +4 -4
  24. data/lib/playwright_api/dialog.rb +4 -4
  25. data/lib/playwright_api/element_handle.rb +4 -4
  26. data/lib/playwright_api/frame.rb +4 -4
  27. data/lib/playwright_api/js_handle.rb +4 -4
  28. data/lib/playwright_api/locator.rb +11 -11
  29. data/lib/playwright_api/page.rb +20 -15
  30. data/lib/playwright_api/playwright.rb +4 -4
  31. data/lib/playwright_api/request.rb +8 -8
  32. data/lib/playwright_api/response.rb +4 -4
  33. data/lib/playwright_api/route.rb +4 -4
  34. data/lib/playwright_api/selectors.rb +4 -4
  35. data/lib/playwright_api/touchscreen.rb +2 -0
  36. data/lib/playwright_api/tracing.rb +4 -4
  37. data/lib/playwright_api/web_socket.rb +7 -5
  38. data/lib/playwright_api/worker.rb +4 -4
  39. data/sig/playwright.rbs +7 -7
  40. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 495885bd9a517ab41add673d1855ea2d3aaf892c396c3422ded05bc0867f9c8e
4
- data.tar.gz: c5e2dc6ad6f41f9675eefec747faef96537e78c2af550db2fe4d496c1ba76a24
3
+ metadata.gz: 3f0c4c8f2c68d03a9009e450794670263e74a7bff0f94307ac38222ac402b06b
4
+ data.tar.gz: a21fee77abeef39269d2d84b511a37ac3df6a6f9bb0b3e881be20bd4fb055073
5
5
  SHA512:
6
- metadata.gz: 141cef34e7039d7c04709eb99ca1cc5693bc9c17625616daf964bffe80e8103bdd9a976353f5c2137335048a9d4324e564e30bb993a9e3bd0197154ad457e988
7
- data.tar.gz: d1e2ee7c636a328621f9228c2b44f050e066ef5eeb5532b47434a45849152840e7e534c8fb76556d437aa90337b0c2e83ae7569062825cf11f67bc8f5a87d275
6
+ metadata.gz: c744d68230d2f37b6ce1894d55156ecfc943739c8d713332098ed73eb2c12533fab814685eaf3efdabd5561227c1deef042aad50e22e98b91e3be2e61f9974a2
7
+ data.tar.gz: 8b1e2a83b1eac587c1df0963c586a64361191384018175972bf40eab3dcdb86d9b01a3d202f9d24e6b611f250ca8ead38f112252970ed0f292e4bd2fa5b5f27e
@@ -92,6 +92,7 @@ def new_context(
92
92
  bypassCSP: nil,
93
93
  clientCertificates: nil,
94
94
  colorScheme: nil,
95
+ contrast: nil,
95
96
  deviceScaleFactor: nil,
96
97
  extraHTTPHeaders: nil,
97
98
  forcedColors: nil,
@@ -152,6 +153,7 @@ def new_page(
152
153
  bypassCSP: nil,
153
154
  clientCertificates: nil,
154
155
  colorScheme: nil,
156
+ contrast: nil,
155
157
  deviceScaleFactor: nil,
156
158
  extraHTTPHeaders: nil,
157
159
  forcedColors: nil,
@@ -421,11 +421,11 @@ alias: `offline=`
421
421
  ## storage_state
422
422
 
423
423
  ```
424
- def storage_state(path: nil)
424
+ def storage_state(indexedDB: nil, path: nil)
425
425
  ```
426
426
 
427
427
 
428
- Returns storage state for this browser context, contains current cookies and local storage snapshot.
428
+ Returns storage state for this browser context, contains current cookies, local storage snapshot and IndexedDB snapshot.
429
429
 
430
430
  ## unroute_all
431
431
 
@@ -124,6 +124,7 @@ def launch_persistent_context(
124
124
  chromiumSandbox: nil,
125
125
  clientCertificates: nil,
126
126
  colorScheme: nil,
127
+ contrast: nil,
127
128
  deviceScaleFactor: nil,
128
129
  devtools: nil,
129
130
  downloadsPath: nil,
@@ -34,6 +34,7 @@ def launch_browser(
34
34
  baseURL: nil,
35
35
  bypassCSP: nil,
36
36
  colorScheme: nil,
37
+ contrast: nil,
37
38
  deviceScaleFactor: nil,
38
39
  extraHTTPHeaders: nil,
39
40
  forcedColors: nil,
@@ -458,11 +458,6 @@ If `expression` throws or rejects, this method throws.
458
458
 
459
459
  **Usage**
460
460
 
461
- ```ruby
462
- tweet = page.query_selector(".tweet .retweets")
463
- tweet.evaluate("node => node.innerText") # => "10 retweets"
464
- ```
465
-
466
461
  ## evaluate_all
467
462
 
468
463
  ```
@@ -534,7 +529,12 @@ To send fine-grained keyboard events, use [Locator#press_sequentially](./locator
534
529
  ## filter
535
530
 
536
531
  ```
537
- def filter(has: nil, hasNot: nil, hasNotText: nil, hasText: nil)
532
+ def filter(
533
+ has: nil,
534
+ hasNot: nil,
535
+ hasNotText: nil,
536
+ hasText: nil,
537
+ visible: nil)
538
538
  ```
539
539
 
540
540
 
@@ -1238,9 +1238,9 @@ Triggers a `change` and `input` event once all the provided options have been se
1238
1238
 
1239
1239
  ```html
1240
1240
  <select multiple>
1241
- <option value="red">Red</div>
1242
- <option value="green">Green</div>
1243
- <option value="blue">Blue</div>
1241
+ <option value="red">Red</option>
1242
+ <option value="green">Green</option>
1243
+ <option value="blue">Blue</option>
1244
1244
  </select>
1245
1245
  ```
1246
1246
 
@@ -1349,7 +1349,7 @@ def tap_point(
1349
1349
  ```
1350
1350
 
1351
1351
 
1352
- Perform a tap gesture on the element matching the locator.
1352
+ Perform a tap gesture on the element matching the locator. For examples of emulating other gestures by manually dispatching touch events, see the [emulating legacy touch events](https://playwright.dev/python/docs/touch-events) page.
1353
1353
 
1354
1354
  **Details**
1355
1355
 
@@ -293,7 +293,12 @@ page.drag_and_drop(
293
293
  ## emulate_media
294
294
 
295
295
  ```
296
- def emulate_media(colorScheme: nil, forcedColors: nil, media: nil, reducedMotion: nil)
296
+ def emulate_media(
297
+ colorScheme: nil,
298
+ contrast: nil,
299
+ forcedColors: nil,
300
+ media: nil,
301
+ reducedMotion: nil)
297
302
  ```
298
303
 
299
304
 
@@ -8,6 +8,8 @@ sidebar_position: 10
8
8
  The Touchscreen class operates in main-frame CSS pixels relative to the top-left corner of the viewport. Methods on the
9
9
  touchscreen can only be used in browser contexts that have been initialized with `hasTouch` set to true.
10
10
 
11
+ This class is limited to emulating tap gestures. For examples of other gestures simulated by manually dispatching touch events, see the [emulating legacy touch events](https://playwright.dev/python/docs/touch-events) page.
12
+
11
13
  ## tap_point
12
14
 
13
15
  ```
@@ -5,7 +5,9 @@ sidebar_position: 10
5
5
  # WebSocket
6
6
 
7
7
 
8
- The [WebSocket](./web_socket) class represents websocket connections in the page.
8
+ The [WebSocket](./web_socket) class represents WebSocket connections within a page. It provides the ability to inspect and manipulate the data being transmitted and received.
9
+
10
+ If you want to intercept or modify WebSocket frames, consider using `WebSocketRoute`.
9
11
 
10
12
  ## closed?
11
13
 
@@ -496,8 +496,8 @@ module Playwright
496
496
  @channel.send_message_to_server('pause')
497
497
  end
498
498
 
499
- def storage_state(path: nil)
500
- @channel.send_message_to_server_result('storageState', {}).tap do |result|
499
+ def storage_state(path: nil, indexedDB: nil)
500
+ @channel.send_message_to_server_result('storageState', { indexedDB: indexedDB }.compact).tap do |result|
501
501
  if path
502
502
  File.open(path, 'w') do |f|
503
503
  f.write(JSON.dump(result))
@@ -366,9 +366,10 @@ module Playwright
366
366
  ChannelOwners::Response.from_nullable(resp)
367
367
  end
368
368
 
369
- def emulate_media(colorScheme: nil, forcedColors: nil, media: nil, reducedMotion: nil)
369
+ def emulate_media(colorScheme: nil, contrast: nil, forcedColors: nil, media: nil, reducedMotion: nil)
370
370
  params = {
371
371
  colorScheme: no_override_if_null(colorScheme),
372
+ contrast: no_override_if_null(contrast),
372
373
  forcedColors: no_override_if_null(forcedColors),
373
374
  media: no_override_if_null(media),
374
375
  reducedMotion: no_override_if_null(reducedMotion),
@@ -494,7 +494,7 @@ module Playwright
494
494
  def to_be_in_viewport(ratio: nil, timeout: nil)
495
495
  expect_impl(
496
496
  "to.be.in.viewport",
497
- { timeout: timeout, expectedNumber: ratio },
497
+ { timeout: timeout, expectedNumber: ratio }.compact,
498
498
  nil,
499
499
  "Locator expected to be in viewport"
500
500
  )
@@ -5,7 +5,7 @@ module Playwright
5
5
  define_api_implementation :LocatorImpl do
6
6
  include LocatorUtils
7
7
 
8
- def initialize(frame:, timeout_settings:, selector:, has: nil, hasNot: nil, hasNotText: nil, hasText: nil)
8
+ def initialize(frame:, timeout_settings:, selector:, has: nil, hasNot: nil, hasNotText: nil, hasText: nil, visible: nil)
9
9
  @frame = frame
10
10
  @timeout_settings = timeout_settings
11
11
  selector_scopes = [selector]
@@ -32,6 +32,10 @@ module Playwright
32
32
  selector_scopes << "internal:has-not=#{hasNot.send(:selector_json)}"
33
33
  end
34
34
 
35
+ if [true, false].include?(visible)
36
+ selector_scopes << "visible=#{visible}"
37
+ end
38
+
35
39
  @selector = selector_scopes.join(' >> ')
36
40
  end
37
41
 
@@ -241,7 +245,7 @@ module Playwright
241
245
  )
242
246
  end
243
247
 
244
- def filter(has: nil, hasNot: nil, hasNotText: nil, hasText: nil)
248
+ def filter(has: nil, hasNot: nil, hasNotText: nil, hasText: nil, visible: nil)
245
249
  LocatorImpl.new(
246
250
  frame: @frame,
247
251
  timeout_settings: @timeout_settings,
@@ -249,7 +253,9 @@ module Playwright
249
253
  has: has,
250
254
  hasNot: hasNot,
251
255
  hasNotText: hasNotText,
252
- hasText: hasText)
256
+ hasText: hasText,
257
+ visible: visible,
258
+ )
253
259
  end
254
260
 
255
261
  def first
@@ -57,7 +57,7 @@ module Playwright
57
57
  params[:storageState] = JSON.parse(File.read(params[:storageState]))
58
58
  end
59
59
 
60
- %i[colorScheme reducedMotion forcedColors].each do |key|
60
+ %i[colorScheme reducedMotion forcedColors contrast].each do |key|
61
61
  if params[key] == 'null'
62
62
  params[key] = 'no-override'
63
63
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Playwright
4
- VERSION = '1.50.0'
5
- COMPATIBLE_PLAYWRIGHT_VERSION = '1.50.1'
4
+ VERSION = '1.51.0'
5
+ COMPATIBLE_PLAYWRIGHT_VERSION = '1.51.0'
6
6
  end
@@ -40,14 +40,14 @@ module Playwright
40
40
 
41
41
  # -- inherited from EventEmitter --
42
42
  # @nodoc
43
- def off(event, callback)
44
- event_emitter_proxy.off(event, callback)
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 on(event, callback)
50
- event_emitter_proxy.on(event, callback)
49
+ def off(event, callback)
50
+ event_emitter_proxy.off(event, callback)
51
51
  end
52
52
 
53
53
  # -- inherited from EventEmitter --
@@ -51,6 +51,7 @@ module Playwright
51
51
  baseURL: nil,
52
52
  bypassCSP: nil,
53
53
  colorScheme: nil,
54
+ contrast: nil,
54
55
  deviceScaleFactor: nil,
55
56
  extraHTTPHeaders: nil,
56
57
  forcedColors: nil,
@@ -81,7 +82,7 @@ module Playwright
81
82
  userAgent: nil,
82
83
  viewport: nil,
83
84
  &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), 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
+ 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), contrast: unwrap_impl(contrast), 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
86
  end
86
87
 
87
88
  #
@@ -205,14 +206,14 @@ module Playwright
205
206
 
206
207
  # -- inherited from EventEmitter --
207
208
  # @nodoc
208
- def off(event, callback)
209
- event_emitter_proxy.off(event, callback)
209
+ def on(event, callback)
210
+ event_emitter_proxy.on(event, callback)
210
211
  end
211
212
 
212
213
  # -- inherited from EventEmitter --
213
214
  # @nodoc
214
- def on(event, callback)
215
- event_emitter_proxy.on(event, callback)
215
+ def off(event, callback)
216
+ event_emitter_proxy.off(event, callback)
216
217
  end
217
218
 
218
219
  # -- inherited from EventEmitter --
@@ -12,6 +12,7 @@ module Playwright
12
12
  baseURL: nil,
13
13
  clientCertificates: nil,
14
14
  extraHTTPHeaders: nil,
15
+ failOnStatusCode: nil,
15
16
  httpCredentials: nil,
16
17
  ignoreHTTPSErrors: nil,
17
18
  proxy: nil,
@@ -282,20 +282,20 @@ module Playwright
282
282
 
283
283
  #
284
284
  # Returns storage state for this request context, contains current cookies and local storage snapshot if it was passed to the constructor.
285
- def storage_state(path: nil)
285
+ def storage_state(indexedDB: nil, path: nil)
286
286
  raise NotImplementedError.new('storage_state is not implemented yet.')
287
287
  end
288
288
 
289
289
  # -- inherited from EventEmitter --
290
290
  # @nodoc
291
- def off(event, callback)
292
- event_emitter_proxy.off(event, callback)
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 on(event, callback)
298
- event_emitter_proxy.on(event, callback)
297
+ def off(event, callback)
298
+ event_emitter_proxy.off(event, callback)
299
299
  end
300
300
 
301
301
  # -- inherited from EventEmitter --
@@ -92,6 +92,7 @@ module Playwright
92
92
  bypassCSP: nil,
93
93
  clientCertificates: nil,
94
94
  colorScheme: nil,
95
+ contrast: nil,
95
96
  deviceScaleFactor: nil,
96
97
  extraHTTPHeaders: nil,
97
98
  forcedColors: nil,
@@ -122,7 +123,7 @@ module Playwright
122
123
  userAgent: nil,
123
124
  viewport: nil,
124
125
  &block)
125
- wrap_impl(@impl.new_context(acceptDownloads: unwrap_impl(acceptDownloads), baseURL: unwrap_impl(baseURL), bypassCSP: unwrap_impl(bypassCSP), clientCertificates: unwrap_impl(clientCertificates), 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), 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), storageState: unwrap_impl(storageState), strictSelectors: unwrap_impl(strictSelectors), timezoneId: unwrap_impl(timezoneId), userAgent: unwrap_impl(userAgent), viewport: unwrap_impl(viewport), &wrap_block_call(block)))
126
+ wrap_impl(@impl.new_context(acceptDownloads: unwrap_impl(acceptDownloads), baseURL: unwrap_impl(baseURL), bypassCSP: unwrap_impl(bypassCSP), clientCertificates: unwrap_impl(clientCertificates), colorScheme: unwrap_impl(colorScheme), contrast: unwrap_impl(contrast), 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), 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), storageState: unwrap_impl(storageState), strictSelectors: unwrap_impl(strictSelectors), timezoneId: unwrap_impl(timezoneId), userAgent: unwrap_impl(userAgent), viewport: unwrap_impl(viewport), &wrap_block_call(block)))
126
127
  end
127
128
 
128
129
  #
@@ -137,6 +138,7 @@ module Playwright
137
138
  bypassCSP: nil,
138
139
  clientCertificates: nil,
139
140
  colorScheme: nil,
141
+ contrast: nil,
140
142
  deviceScaleFactor: nil,
141
143
  extraHTTPHeaders: nil,
142
144
  forcedColors: nil,
@@ -167,7 +169,7 @@ module Playwright
167
169
  userAgent: nil,
168
170
  viewport: nil,
169
171
  &block)
170
- wrap_impl(@impl.new_page(acceptDownloads: unwrap_impl(acceptDownloads), baseURL: unwrap_impl(baseURL), bypassCSP: unwrap_impl(bypassCSP), clientCertificates: unwrap_impl(clientCertificates), 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), 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), storageState: unwrap_impl(storageState), strictSelectors: unwrap_impl(strictSelectors), timezoneId: unwrap_impl(timezoneId), userAgent: unwrap_impl(userAgent), viewport: unwrap_impl(viewport), &wrap_block_call(block)))
172
+ wrap_impl(@impl.new_page(acceptDownloads: unwrap_impl(acceptDownloads), baseURL: unwrap_impl(baseURL), bypassCSP: unwrap_impl(bypassCSP), clientCertificates: unwrap_impl(clientCertificates), colorScheme: unwrap_impl(colorScheme), contrast: unwrap_impl(contrast), 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), 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), storageState: unwrap_impl(storageState), strictSelectors: unwrap_impl(strictSelectors), timezoneId: unwrap_impl(timezoneId), userAgent: unwrap_impl(userAgent), viewport: unwrap_impl(viewport), &wrap_block_call(block)))
171
173
  end
172
174
 
173
175
  #
@@ -203,14 +205,14 @@ module Playwright
203
205
 
204
206
  # -- inherited from EventEmitter --
205
207
  # @nodoc
206
- def off(event, callback)
207
- event_emitter_proxy.off(event, callback)
208
+ def on(event, callback)
209
+ event_emitter_proxy.on(event, callback)
208
210
  end
209
211
 
210
212
  # -- inherited from EventEmitter --
211
213
  # @nodoc
212
- def on(event, callback)
213
- event_emitter_proxy.on(event, callback)
214
+ def off(event, callback)
215
+ event_emitter_proxy.off(event, callback)
214
216
  end
215
217
 
216
218
  # -- inherited from EventEmitter --
@@ -404,9 +404,9 @@ module Playwright
404
404
  alias_method :offline=, :set_offline
405
405
 
406
406
  #
407
- # Returns storage state for this browser context, contains current cookies and local storage snapshot.
408
- def storage_state(path: nil)
409
- wrap_impl(@impl.storage_state(path: unwrap_impl(path)))
407
+ # Returns storage state for this browser context, contains current cookies, local storage snapshot and IndexedDB snapshot.
408
+ def storage_state(indexedDB: nil, path: nil)
409
+ wrap_impl(@impl.storage_state(indexedDB: unwrap_impl(indexedDB), path: unwrap_impl(path)))
410
410
  end
411
411
 
412
412
  #
@@ -463,6 +463,16 @@ module Playwright
463
463
  raise NotImplementedError.new('wait_for_event is not implemented yet.')
464
464
  end
465
465
 
466
+ # @nodoc
467
+ def owner_page=(req)
468
+ wrap_impl(@impl.owner_page=(unwrap_impl(req)))
469
+ end
470
+
471
+ # @nodoc
472
+ def options=(req)
473
+ wrap_impl(@impl.options=(unwrap_impl(req)))
474
+ end
475
+
466
476
  # @nodoc
467
477
  def enable_debug_console!
468
478
  wrap_impl(@impl.enable_debug_console!)
@@ -473,19 +483,15 @@ module Playwright
473
483
  wrap_impl(@impl.pause)
474
484
  end
475
485
 
476
- # @nodoc
477
- def options=(req)
478
- wrap_impl(@impl.options=(unwrap_impl(req)))
479
- end
480
-
481
486
  # @nodoc
482
487
  def browser=(req)
483
488
  wrap_impl(@impl.browser=(unwrap_impl(req)))
484
489
  end
485
490
 
491
+ # -- inherited from EventEmitter --
486
492
  # @nodoc
487
- def owner_page=(req)
488
- wrap_impl(@impl.owner_page=(unwrap_impl(req)))
493
+ def on(event, callback)
494
+ event_emitter_proxy.on(event, callback)
489
495
  end
490
496
 
491
497
  # -- inherited from EventEmitter --
@@ -494,12 +500,6 @@ module Playwright
494
500
  event_emitter_proxy.off(event, callback)
495
501
  end
496
502
 
497
- # -- inherited from EventEmitter --
498
- # @nodoc
499
- def on(event, callback)
500
- event_emitter_proxy.on(event, callback)
501
- end
502
-
503
503
  # -- inherited from EventEmitter --
504
504
  # @nodoc
505
505
  def once(event, callback)
@@ -23,7 +23,12 @@ module Playwright
23
23
  # This method attaches Playwright to an existing browser instance created via `BrowserType.launchServer` in Node.js.
24
24
  #
25
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
26
+ def connect(
27
+ wsEndpoint,
28
+ exposeNetwork: nil,
29
+ headers: nil,
30
+ slowMo: nil,
31
+ timeout: nil)
27
32
  raise NotImplementedError.new('connect is not implemented yet.')
28
33
  end
29
34
 
@@ -123,6 +128,7 @@ module Playwright
123
128
  chromiumSandbox: nil,
124
129
  clientCertificates: nil,
125
130
  colorScheme: nil,
131
+ contrast: nil,
126
132
  deviceScaleFactor: nil,
127
133
  devtools: nil,
128
134
  downloadsPath: nil,
@@ -165,7 +171,7 @@ module Playwright
165
171
  userAgent: nil,
166
172
  viewport: nil,
167
173
  &block)
168
- wrap_impl(@impl.launch_persistent_context(unwrap_impl(userDataDir), acceptDownloads: unwrap_impl(acceptDownloads), args: unwrap_impl(args), baseURL: unwrap_impl(baseURL), bypassCSP: unwrap_impl(bypassCSP), channel: unwrap_impl(channel), chromiumSandbox: unwrap_impl(chromiumSandbox), clientCertificates: unwrap_impl(clientCertificates), colorScheme: unwrap_impl(colorScheme), deviceScaleFactor: unwrap_impl(deviceScaleFactor), devtools: unwrap_impl(devtools), downloadsPath: unwrap_impl(downloadsPath), env: unwrap_impl(env), executablePath: unwrap_impl(executablePath), extraHTTPHeaders: unwrap_impl(extraHTTPHeaders), firefoxUserPrefs: unwrap_impl(firefoxUserPrefs), forcedColors: unwrap_impl(forcedColors), geolocation: unwrap_impl(geolocation), handleSIGHUP: unwrap_impl(handleSIGHUP), handleSIGINT: unwrap_impl(handleSIGINT), handleSIGTERM: unwrap_impl(handleSIGTERM), hasTouch: unwrap_impl(hasTouch), headless: unwrap_impl(headless), httpCredentials: unwrap_impl(httpCredentials), ignoreDefaultArgs: unwrap_impl(ignoreDefaultArgs), 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), 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), slowMo: unwrap_impl(slowMo), strictSelectors: unwrap_impl(strictSelectors), timeout: unwrap_impl(timeout), timezoneId: unwrap_impl(timezoneId), tracesDir: unwrap_impl(tracesDir), userAgent: unwrap_impl(userAgent), viewport: unwrap_impl(viewport), &wrap_block_call(block)))
174
+ wrap_impl(@impl.launch_persistent_context(unwrap_impl(userDataDir), acceptDownloads: unwrap_impl(acceptDownloads), args: unwrap_impl(args), baseURL: unwrap_impl(baseURL), bypassCSP: unwrap_impl(bypassCSP), channel: unwrap_impl(channel), chromiumSandbox: unwrap_impl(chromiumSandbox), clientCertificates: unwrap_impl(clientCertificates), colorScheme: unwrap_impl(colorScheme), contrast: unwrap_impl(contrast), deviceScaleFactor: unwrap_impl(deviceScaleFactor), devtools: unwrap_impl(devtools), downloadsPath: unwrap_impl(downloadsPath), env: unwrap_impl(env), executablePath: unwrap_impl(executablePath), extraHTTPHeaders: unwrap_impl(extraHTTPHeaders), firefoxUserPrefs: unwrap_impl(firefoxUserPrefs), forcedColors: unwrap_impl(forcedColors), geolocation: unwrap_impl(geolocation), handleSIGHUP: unwrap_impl(handleSIGHUP), handleSIGINT: unwrap_impl(handleSIGINT), handleSIGTERM: unwrap_impl(handleSIGTERM), hasTouch: unwrap_impl(hasTouch), headless: unwrap_impl(headless), httpCredentials: unwrap_impl(httpCredentials), ignoreDefaultArgs: unwrap_impl(ignoreDefaultArgs), 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), 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), slowMo: unwrap_impl(slowMo), strictSelectors: unwrap_impl(strictSelectors), timeout: unwrap_impl(timeout), timezoneId: unwrap_impl(timezoneId), tracesDir: unwrap_impl(tracesDir), userAgent: unwrap_impl(userAgent), viewport: unwrap_impl(viewport), &wrap_block_call(block)))
169
175
  end
170
176
 
171
177
  #
@@ -176,14 +182,14 @@ module Playwright
176
182
 
177
183
  # -- inherited from EventEmitter --
178
184
  # @nodoc
179
- def off(event, callback)
180
- event_emitter_proxy.off(event, callback)
185
+ def on(event, callback)
186
+ event_emitter_proxy.on(event, callback)
181
187
  end
182
188
 
183
189
  # -- inherited from EventEmitter --
184
190
  # @nodoc
185
- def on(event, callback)
186
- event_emitter_proxy.on(event, callback)
191
+ def off(event, callback)
192
+ event_emitter_proxy.off(event, callback)
187
193
  end
188
194
 
189
195
  # -- inherited from EventEmitter --
@@ -33,14 +33,14 @@ module Playwright
33
33
 
34
34
  # -- inherited from EventEmitter --
35
35
  # @nodoc
36
- def off(event, callback)
37
- event_emitter_proxy.off(event, callback)
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 on(event, callback)
43
- event_emitter_proxy.on(event, callback)
42
+ def off(event, callback)
43
+ event_emitter_proxy.off(event, callback)
44
44
  end
45
45
 
46
46
  # -- inherited from EventEmitter --
@@ -70,14 +70,14 @@ module Playwright
70
70
 
71
71
  # -- inherited from EventEmitter --
72
72
  # @nodoc
73
- def off(event, callback)
74
- event_emitter_proxy.off(event, callback)
73
+ def on(event, callback)
74
+ event_emitter_proxy.on(event, callback)
75
75
  end
76
76
 
77
77
  # -- inherited from EventEmitter --
78
78
  # @nodoc
79
- def on(event, callback)
80
- event_emitter_proxy.on(event, callback)
79
+ def off(event, callback)
80
+ event_emitter_proxy.off(event, callback)
81
81
  end
82
82
 
83
83
  # -- inherited from EventEmitter --
@@ -574,14 +574,14 @@ module Playwright
574
574
 
575
575
  # -- inherited from EventEmitter --
576
576
  # @nodoc
577
- def off(event, callback)
578
- event_emitter_proxy.off(event, callback)
577
+ def on(event, callback)
578
+ event_emitter_proxy.on(event, callback)
579
579
  end
580
580
 
581
581
  # -- inherited from EventEmitter --
582
582
  # @nodoc
583
- def on(event, callback)
584
- event_emitter_proxy.on(event, callback)
583
+ def off(event, callback)
584
+ event_emitter_proxy.off(event, callback)
585
585
  end
586
586
 
587
587
  # -- inherited from EventEmitter --
@@ -1050,14 +1050,14 @@ module Playwright
1050
1050
 
1051
1051
  # -- inherited from EventEmitter --
1052
1052
  # @nodoc
1053
- def off(event, callback)
1054
- event_emitter_proxy.off(event, callback)
1053
+ def on(event, callback)
1054
+ event_emitter_proxy.on(event, callback)
1055
1055
  end
1056
1056
 
1057
1057
  # -- inherited from EventEmitter --
1058
1058
  # @nodoc
1059
- def on(event, callback)
1060
- event_emitter_proxy.on(event, callback)
1059
+ def off(event, callback)
1060
+ event_emitter_proxy.off(event, callback)
1061
1061
  end
1062
1062
 
1063
1063
  # -- inherited from EventEmitter --
@@ -100,14 +100,14 @@ module Playwright
100
100
 
101
101
  # -- inherited from EventEmitter --
102
102
  # @nodoc
103
- def off(event, callback)
104
- event_emitter_proxy.off(event, callback)
103
+ def on(event, callback)
104
+ event_emitter_proxy.on(event, callback)
105
105
  end
106
106
 
107
107
  # -- inherited from EventEmitter --
108
108
  # @nodoc
109
- def on(event, callback)
110
- event_emitter_proxy.on(event, callback)
109
+ def off(event, callback)
110
+ event_emitter_proxy.off(event, callback)
111
111
  end
112
112
 
113
113
  # -- inherited from EventEmitter --
@@ -393,11 +393,6 @@ module Playwright
393
393
  # If `expression` throws or rejects, this method throws.
394
394
  #
395
395
  # **Usage**
396
- #
397
- # ```python sync
398
- # tweets = page.locator(".tweet .retweets")
399
- # assert tweets.evaluate("node => node.innerText") == "10 retweets"
400
- # ```
401
396
  def evaluate(expression, arg: nil, timeout: nil)
402
397
  wrap_impl(@impl.evaluate(unwrap_impl(expression), arg: unwrap_impl(arg), timeout: unwrap_impl(timeout)))
403
398
  end
@@ -474,8 +469,13 @@ module Playwright
474
469
  # has=page.get_by_role("button", name="column 2 button")
475
470
  # ).screenshot()
476
471
  # ```
477
- def filter(has: nil, hasNot: nil, hasNotText: nil, hasText: nil)
478
- wrap_impl(@impl.filter(has: unwrap_impl(has), hasNot: unwrap_impl(hasNot), hasNotText: unwrap_impl(hasNotText), hasText: unwrap_impl(hasText)))
472
+ def filter(
473
+ has: nil,
474
+ hasNot: nil,
475
+ hasNotText: nil,
476
+ hasText: nil,
477
+ visible: nil)
478
+ wrap_impl(@impl.filter(has: unwrap_impl(has), hasNot: unwrap_impl(hasNot), hasNotText: unwrap_impl(hasNotText), hasText: unwrap_impl(hasText), visible: unwrap_impl(visible)))
479
479
  end
480
480
 
481
481
  #
@@ -1047,9 +1047,9 @@ module Playwright
1047
1047
  #
1048
1048
  # ```html
1049
1049
  # <select multiple>
1050
- # <option value="red">Red</div>
1051
- # <option value="green">Green</div>
1052
- # <option value="blue">Blue</div>
1050
+ # <option value="red">Red</option>
1051
+ # <option value="green">Green</option>
1052
+ # <option value="blue">Blue</option>
1053
1053
  # </select>
1054
1054
  # ```
1055
1055
  #
@@ -1153,7 +1153,7 @@ module Playwright
1153
1153
  alias_method :input_files=, :set_input_files
1154
1154
 
1155
1155
  #
1156
- # Perform a tap gesture on the element matching the locator.
1156
+ # Perform a tap gesture on the element matching the locator. For examples of emulating other gestures by manually dispatching touch events, see the [emulating legacy touch events](../touch-events.md) page.
1157
1157
  #
1158
1158
  # **Details**
1159
1159
  #
@@ -316,8 +316,13 @@ module Playwright
316
316
  # page.evaluate("matchMedia('(prefers-color-scheme: light)').matches")
317
317
  # # → False
318
318
  # ```
319
- def emulate_media(colorScheme: nil, forcedColors: nil, media: nil, reducedMotion: nil)
320
- wrap_impl(@impl.emulate_media(colorScheme: unwrap_impl(colorScheme), forcedColors: unwrap_impl(forcedColors), media: unwrap_impl(media), reducedMotion: unwrap_impl(reducedMotion)))
319
+ def emulate_media(
320
+ colorScheme: nil,
321
+ contrast: nil,
322
+ forcedColors: nil,
323
+ media: nil,
324
+ reducedMotion: nil)
325
+ wrap_impl(@impl.emulate_media(colorScheme: unwrap_impl(colorScheme), contrast: unwrap_impl(contrast), forcedColors: unwrap_impl(forcedColors), media: unwrap_impl(media), reducedMotion: unwrap_impl(reducedMotion)))
321
326
  end
322
327
 
323
328
  #
@@ -1787,6 +1792,16 @@ module Playwright
1787
1792
  raise NotImplementedError.new('wait_for_event is not implemented yet.')
1788
1793
  end
1789
1794
 
1795
+ # @nodoc
1796
+ def owned_context=(req)
1797
+ wrap_impl(@impl.owned_context=(unwrap_impl(req)))
1798
+ end
1799
+
1800
+ # @nodoc
1801
+ def guid
1802
+ wrap_impl(@impl.guid)
1803
+ end
1804
+
1790
1805
  # @nodoc
1791
1806
  def start_js_coverage(resetOnNavigation: nil, reportAnonymousScripts: nil)
1792
1807
  wrap_impl(@impl.start_js_coverage(resetOnNavigation: unwrap_impl(resetOnNavigation), reportAnonymousScripts: unwrap_impl(reportAnonymousScripts)))
@@ -1807,14 +1822,10 @@ module Playwright
1807
1822
  wrap_impl(@impl.stop_css_coverage)
1808
1823
  end
1809
1824
 
1825
+ # -- inherited from EventEmitter --
1810
1826
  # @nodoc
1811
- def owned_context=(req)
1812
- wrap_impl(@impl.owned_context=(unwrap_impl(req)))
1813
- end
1814
-
1815
- # @nodoc
1816
- def guid
1817
- wrap_impl(@impl.guid)
1827
+ def on(event, callback)
1828
+ event_emitter_proxy.on(event, callback)
1818
1829
  end
1819
1830
 
1820
1831
  # -- inherited from EventEmitter --
@@ -1823,12 +1834,6 @@ module Playwright
1823
1834
  event_emitter_proxy.off(event, callback)
1824
1835
  end
1825
1836
 
1826
- # -- inherited from EventEmitter --
1827
- # @nodoc
1828
- def on(event, callback)
1829
- event_emitter_proxy.on(event, callback)
1830
- end
1831
-
1832
1837
  # -- inherited from EventEmitter --
1833
1838
  # @nodoc
1834
1839
  def once(event, callback)
@@ -105,14 +105,14 @@ module Playwright
105
105
 
106
106
  # -- inherited from EventEmitter --
107
107
  # @nodoc
108
- def off(event, callback)
109
- event_emitter_proxy.off(event, callback)
108
+ def on(event, callback)
109
+ event_emitter_proxy.on(event, callback)
110
110
  end
111
111
 
112
112
  # -- inherited from EventEmitter --
113
113
  # @nodoc
114
- def on(event, callback)
115
- event_emitter_proxy.on(event, callback)
114
+ def off(event, callback)
115
+ event_emitter_proxy.off(event, callback)
116
116
  end
117
117
 
118
118
  # -- inherited from EventEmitter --
@@ -195,20 +195,14 @@ module Playwright
195
195
  wrap_impl(@impl.url)
196
196
  end
197
197
 
198
- # @nodoc
199
- def header_values(name)
200
- wrap_impl(@impl.header_values(unwrap_impl(name)))
201
- end
202
-
203
198
  # @nodoc
204
199
  def apply_fallback_overrides(overrides)
205
200
  wrap_impl(@impl.apply_fallback_overrides(unwrap_impl(overrides)))
206
201
  end
207
202
 
208
- # -- inherited from EventEmitter --
209
203
  # @nodoc
210
- def off(event, callback)
211
- event_emitter_proxy.off(event, callback)
204
+ def header_values(name)
205
+ wrap_impl(@impl.header_values(unwrap_impl(name)))
212
206
  end
213
207
 
214
208
  # -- inherited from EventEmitter --
@@ -217,6 +211,12 @@ module Playwright
217
211
  event_emitter_proxy.on(event, callback)
218
212
  end
219
213
 
214
+ # -- inherited from EventEmitter --
215
+ # @nodoc
216
+ def off(event, callback)
217
+ event_emitter_proxy.off(event, callback)
218
+ end
219
+
220
220
  # -- inherited from EventEmitter --
221
221
  # @nodoc
222
222
  def once(event, callback)
@@ -129,14 +129,14 @@ module Playwright
129
129
 
130
130
  # -- inherited from EventEmitter --
131
131
  # @nodoc
132
- def off(event, callback)
133
- event_emitter_proxy.off(event, callback)
132
+ def on(event, callback)
133
+ event_emitter_proxy.on(event, callback)
134
134
  end
135
135
 
136
136
  # -- inherited from EventEmitter --
137
137
  # @nodoc
138
- def on(event, callback)
139
- event_emitter_proxy.on(event, callback)
138
+ def off(event, callback)
139
+ event_emitter_proxy.off(event, callback)
140
140
  end
141
141
 
142
142
  # -- inherited from EventEmitter --
@@ -174,14 +174,14 @@ module Playwright
174
174
 
175
175
  # -- inherited from EventEmitter --
176
176
  # @nodoc
177
- def off(event, callback)
178
- event_emitter_proxy.off(event, callback)
177
+ def on(event, callback)
178
+ event_emitter_proxy.on(event, callback)
179
179
  end
180
180
 
181
181
  # -- inherited from EventEmitter --
182
182
  # @nodoc
183
- def on(event, callback)
184
- event_emitter_proxy.on(event, callback)
183
+ def off(event, callback)
184
+ event_emitter_proxy.off(event, callback)
185
185
  end
186
186
 
187
187
  # -- inherited from EventEmitter --
@@ -63,14 +63,14 @@ module Playwright
63
63
 
64
64
  # -- inherited from EventEmitter --
65
65
  # @nodoc
66
- def off(event, callback)
67
- event_emitter_proxy.off(event, callback)
66
+ def on(event, callback)
67
+ event_emitter_proxy.on(event, callback)
68
68
  end
69
69
 
70
70
  # -- inherited from EventEmitter --
71
71
  # @nodoc
72
- def on(event, callback)
73
- event_emitter_proxy.on(event, callback)
72
+ def off(event, callback)
73
+ event_emitter_proxy.off(event, callback)
74
74
  end
75
75
 
76
76
  # -- inherited from EventEmitter --
@@ -2,6 +2,8 @@ module Playwright
2
2
  #
3
3
  # The Touchscreen class operates in main-frame CSS pixels relative to the top-left corner of the viewport. Methods on the
4
4
  # touchscreen can only be used in browser contexts that have been initialized with `hasTouch` set to true.
5
+ #
6
+ # This class is limited to emulating tap gestures. For examples of other gestures simulated by manually dispatching touch events, see the [emulating legacy touch events](../touch-events.md) page.
5
7
  class Touchscreen < PlaywrightApi
6
8
 
7
9
  #
@@ -97,14 +97,14 @@ module Playwright
97
97
 
98
98
  # -- inherited from EventEmitter --
99
99
  # @nodoc
100
- def off(event, callback)
101
- event_emitter_proxy.off(event, callback)
100
+ def on(event, callback)
101
+ event_emitter_proxy.on(event, callback)
102
102
  end
103
103
 
104
104
  # -- inherited from EventEmitter --
105
105
  # @nodoc
106
- def on(event, callback)
107
- event_emitter_proxy.on(event, callback)
106
+ def off(event, callback)
107
+ event_emitter_proxy.off(event, callback)
108
108
  end
109
109
 
110
110
  # -- inherited from EventEmitter --
@@ -1,6 +1,8 @@
1
1
  module Playwright
2
2
  #
3
- # The `WebSocket` class represents websocket connections in the page.
3
+ # The `WebSocket` class represents WebSocket connections within a page. It provides the ability to inspect and manipulate the data being transmitted and received.
4
+ #
5
+ # If you want to intercept or modify WebSocket frames, consider using `WebSocketRoute`.
4
6
  class WebSocket < PlaywrightApi
5
7
 
6
8
  #
@@ -34,14 +36,14 @@ module Playwright
34
36
 
35
37
  # -- inherited from EventEmitter --
36
38
  # @nodoc
37
- def off(event, callback)
38
- event_emitter_proxy.off(event, callback)
39
+ def on(event, callback)
40
+ event_emitter_proxy.on(event, callback)
39
41
  end
40
42
 
41
43
  # -- inherited from EventEmitter --
42
44
  # @nodoc
43
- def on(event, callback)
44
- event_emitter_proxy.on(event, callback)
45
+ def off(event, callback)
46
+ event_emitter_proxy.off(event, callback)
45
47
  end
46
48
 
47
49
  # -- inherited from EventEmitter --
@@ -58,14 +58,14 @@ module Playwright
58
58
 
59
59
  # -- inherited from EventEmitter --
60
60
  # @nodoc
61
- def off(event, callback)
62
- event_emitter_proxy.off(event, callback)
61
+ def on(event, callback)
62
+ event_emitter_proxy.on(event, callback)
63
63
  end
64
64
 
65
65
  # -- inherited from EventEmitter --
66
66
  # @nodoc
67
- def on(event, callback)
68
- event_emitter_proxy.on(event, callback)
67
+ def off(event, callback)
68
+ event_emitter_proxy.off(event, callback)
69
69
  end
70
70
 
71
71
  # -- inherited from EventEmitter --
data/sig/playwright.rbs CHANGED
@@ -273,7 +273,7 @@ module Playwright
273
273
  def dblclick: (String selector, ?button: ("left" | "right" | "middle"), ?delay: Float, ?force: bool, ?modifiers: Array[untyped], ?noWaitAfter: bool, ?position: Hash[untyped, untyped], ?strict: bool, ?timeout: Float, ?trial: bool) -> void
274
274
  def dispatch_event: (String selector, String type_, ?eventInit: untyped, ?strict: bool, ?timeout: Float) -> void
275
275
  def drag_and_drop: (String source, String target, ?force: bool, ?noWaitAfter: bool, ?sourcePosition: Hash[untyped, untyped], ?strict: bool, ?targetPosition: Hash[untyped, untyped], ?timeout: Float, ?trial: bool) -> void
276
- def emulate_media: (?colorScheme: ("light" | "dark" | "no-preference" | "null"), ?forcedColors: ("active" | "none" | "null"), ?media: ("screen" | "print" | "null"), ?reducedMotion: ("reduce" | "no-preference" | "null")) -> void
276
+ def emulate_media: (?colorScheme: ("light" | "dark" | "no-preference" | "null"), ?contrast: ("no-preference" | "more" | "null"), ?forcedColors: ("active" | "none" | "null"), ?media: ("screen" | "print" | "null"), ?reducedMotion: ("reduce" | "no-preference" | "null")) -> void
277
277
  def eval_on_selector: (String selector, String expression, ?arg: untyped, ?strict: bool) -> untyped
278
278
  def eval_on_selector_all: (String selector, String expression, ?arg: untyped) -> untyped
279
279
  def evaluate: (String expression, ?arg: untyped) -> untyped
@@ -396,7 +396,7 @@ module Playwright
396
396
  def geolocation=: ((nil | Hash[untyped, untyped]) geolocation) -> void
397
397
  def set_offline: (bool offline) -> void
398
398
  def offline=: (bool offline) -> void
399
- def storage_state: (?path: (String | File)) -> Hash[untyped, untyped]
399
+ def storage_state: (?indexedDB: bool, ?path: (String | File)) -> Hash[untyped, untyped]
400
400
  def unroute_all: (?behavior: ("wait" | "ignoreErrors" | "default")) -> void
401
401
  def unroute: ((String | Regexp | function) url, ?handler: function) -> void
402
402
  def expect_console_message: (?predicate: function, ?timeout: Float) { () -> void } -> ConsoleMessage
@@ -419,8 +419,8 @@ module Playwright
419
419
  def contexts: -> Array[untyped]
420
420
  def connected?: -> bool
421
421
  def new_browser_cdp_session: -> CDPSession
422
- def new_context: (?acceptDownloads: bool, ?baseURL: String, ?bypassCSP: bool, ?clientCertificates: Array[untyped], ?colorScheme: ("light" | "dark" | "no-preference" | "null"), ?deviceScaleFactor: Float, ?extraHTTPHeaders: Hash[untyped, untyped], ?forcedColors: ("active" | "none" | "null"), ?geolocation: Hash[untyped, untyped], ?hasTouch: bool, ?httpCredentials: Hash[untyped, untyped], ?ignoreHTTPSErrors: bool, ?isMobile: bool, ?javaScriptEnabled: bool, ?locale: String, ?noViewport: bool, ?offline: bool, ?permissions: Array[untyped], ?proxy: Hash[untyped, untyped], ?record_har_content: ("omit" | "embed" | "attach"), ?record_har_mode: ("full" | "minimal"), ?record_har_omit_content: bool, ?record_har_path: (String | File), ?record_har_url_filter: (String | Regexp), ?record_video_dir: (String | File), ?record_video_size: Hash[untyped, untyped], ?reducedMotion: ("reduce" | "no-preference" | "null"), ?screen: Hash[untyped, untyped], ?serviceWorkers: ("allow" | "block"), ?storageState: ((String | File) | Hash[untyped, untyped]), ?strictSelectors: bool, ?timezoneId: String, ?userAgent: String, ?viewport: (nil | Hash[untyped, untyped])) ?{ (BrowserContext) -> untyped } -> BrowserContext
423
- def new_page: (?acceptDownloads: bool, ?baseURL: String, ?bypassCSP: bool, ?clientCertificates: Array[untyped], ?colorScheme: ("light" | "dark" | "no-preference" | "null"), ?deviceScaleFactor: Float, ?extraHTTPHeaders: Hash[untyped, untyped], ?forcedColors: ("active" | "none" | "null"), ?geolocation: Hash[untyped, untyped], ?hasTouch: bool, ?httpCredentials: Hash[untyped, untyped], ?ignoreHTTPSErrors: bool, ?isMobile: bool, ?javaScriptEnabled: bool, ?locale: String, ?noViewport: bool, ?offline: bool, ?permissions: Array[untyped], ?proxy: Hash[untyped, untyped], ?record_har_content: ("omit" | "embed" | "attach"), ?record_har_mode: ("full" | "minimal"), ?record_har_omit_content: bool, ?record_har_path: (String | File), ?record_har_url_filter: (String | Regexp), ?record_video_dir: (String | File), ?record_video_size: Hash[untyped, untyped], ?reducedMotion: ("reduce" | "no-preference" | "null"), ?screen: Hash[untyped, untyped], ?serviceWorkers: ("allow" | "block"), ?storageState: ((String | File) | Hash[untyped, untyped]), ?strictSelectors: bool, ?timezoneId: String, ?userAgent: String, ?viewport: (nil | Hash[untyped, untyped])) ?{ (Page) -> untyped } -> Page
422
+ def new_context: (?acceptDownloads: bool, ?baseURL: String, ?bypassCSP: bool, ?clientCertificates: Array[untyped], ?colorScheme: ("light" | "dark" | "no-preference" | "null"), ?contrast: ("no-preference" | "more" | "null"), ?deviceScaleFactor: Float, ?extraHTTPHeaders: Hash[untyped, untyped], ?forcedColors: ("active" | "none" | "null"), ?geolocation: Hash[untyped, untyped], ?hasTouch: bool, ?httpCredentials: Hash[untyped, untyped], ?ignoreHTTPSErrors: bool, ?isMobile: bool, ?javaScriptEnabled: bool, ?locale: String, ?noViewport: bool, ?offline: bool, ?permissions: Array[untyped], ?proxy: Hash[untyped, untyped], ?record_har_content: ("omit" | "embed" | "attach"), ?record_har_mode: ("full" | "minimal"), ?record_har_omit_content: bool, ?record_har_path: (String | File), ?record_har_url_filter: (String | Regexp), ?record_video_dir: (String | File), ?record_video_size: Hash[untyped, untyped], ?reducedMotion: ("reduce" | "no-preference" | "null"), ?screen: Hash[untyped, untyped], ?serviceWorkers: ("allow" | "block"), ?storageState: ((String | File) | Hash[untyped, untyped]), ?strictSelectors: bool, ?timezoneId: String, ?userAgent: String, ?viewport: (nil | Hash[untyped, untyped])) ?{ (BrowserContext) -> untyped } -> BrowserContext
423
+ def new_page: (?acceptDownloads: bool, ?baseURL: String, ?bypassCSP: bool, ?clientCertificates: Array[untyped], ?colorScheme: ("light" | "dark" | "no-preference" | "null"), ?contrast: ("no-preference" | "more" | "null"), ?deviceScaleFactor: Float, ?extraHTTPHeaders: Hash[untyped, untyped], ?forcedColors: ("active" | "none" | "null"), ?geolocation: Hash[untyped, untyped], ?hasTouch: bool, ?httpCredentials: Hash[untyped, untyped], ?ignoreHTTPSErrors: bool, ?isMobile: bool, ?javaScriptEnabled: bool, ?locale: String, ?noViewport: bool, ?offline: bool, ?permissions: Array[untyped], ?proxy: Hash[untyped, untyped], ?record_har_content: ("omit" | "embed" | "attach"), ?record_har_mode: ("full" | "minimal"), ?record_har_omit_content: bool, ?record_har_path: (String | File), ?record_har_url_filter: (String | Regexp), ?record_video_dir: (String | File), ?record_video_size: Hash[untyped, untyped], ?reducedMotion: ("reduce" | "no-preference" | "null"), ?screen: Hash[untyped, untyped], ?serviceWorkers: ("allow" | "block"), ?storageState: ((String | File) | Hash[untyped, untyped]), ?strictSelectors: bool, ?timezoneId: String, ?userAgent: String, ?viewport: (nil | Hash[untyped, untyped])) ?{ (Page) -> untyped } -> Page
424
424
  def start_tracing: (?page: Page, ?categories: Array[untyped], ?path: (String | File), ?screenshots: bool) -> void
425
425
  def stop_tracing: -> String
426
426
  def version: -> String
@@ -430,7 +430,7 @@ module Playwright
430
430
  def connect_over_cdp: (String endpointURL, ?headers: Hash[untyped, untyped], ?slowMo: Float, ?timeout: Float) ?{ (untyped) -> untyped } -> Browser
431
431
  def executable_path: -> String
432
432
  def launch: (?args: Array[untyped], ?channel: String, ?chromiumSandbox: bool, ?devtools: bool, ?downloadsPath: (String | File), ?env: Hash[untyped, untyped], ?executablePath: (String | File), ?firefoxUserPrefs: Hash[untyped, untyped], ?handleSIGHUP: bool, ?handleSIGINT: bool, ?handleSIGTERM: bool, ?headless: bool, ?ignoreDefaultArgs: (bool | Array[untyped]), ?proxy: Hash[untyped, untyped], ?slowMo: Float, ?timeout: Float, ?tracesDir: (String | File)) ?{ (Browser) -> untyped } -> Browser
433
- def launch_persistent_context: ((String | File) userDataDir, ?acceptDownloads: bool, ?args: Array[untyped], ?baseURL: String, ?bypassCSP: bool, ?channel: String, ?chromiumSandbox: bool, ?clientCertificates: Array[untyped], ?colorScheme: ("light" | "dark" | "no-preference" | "null"), ?deviceScaleFactor: Float, ?devtools: bool, ?downloadsPath: (String | File), ?env: Hash[untyped, untyped], ?executablePath: (String | File), ?extraHTTPHeaders: Hash[untyped, untyped], ?firefoxUserPrefs: Hash[untyped, untyped], ?forcedColors: ("active" | "none" | "null"), ?geolocation: Hash[untyped, untyped], ?handleSIGHUP: bool, ?handleSIGINT: bool, ?handleSIGTERM: bool, ?hasTouch: bool, ?headless: bool, ?httpCredentials: Hash[untyped, untyped], ?ignoreDefaultArgs: (bool | Array[untyped]), ?ignoreHTTPSErrors: bool, ?isMobile: bool, ?javaScriptEnabled: bool, ?locale: String, ?noViewport: bool, ?offline: bool, ?permissions: Array[untyped], ?proxy: Hash[untyped, untyped], ?record_har_content: ("omit" | "embed" | "attach"), ?record_har_mode: ("full" | "minimal"), ?record_har_omit_content: bool, ?record_har_path: (String | File), ?record_har_url_filter: (String | Regexp), ?record_video_dir: (String | File), ?record_video_size: Hash[untyped, untyped], ?reducedMotion: ("reduce" | "no-preference" | "null"), ?screen: Hash[untyped, untyped], ?serviceWorkers: ("allow" | "block"), ?slowMo: Float, ?strictSelectors: bool, ?timeout: Float, ?timezoneId: String, ?tracesDir: (String | File), ?userAgent: String, ?viewport: (nil | Hash[untyped, untyped])) ?{ (untyped) -> untyped } -> BrowserContext
433
+ def launch_persistent_context: ((String | File) userDataDir, ?acceptDownloads: bool, ?args: Array[untyped], ?baseURL: String, ?bypassCSP: bool, ?channel: String, ?chromiumSandbox: bool, ?clientCertificates: Array[untyped], ?colorScheme: ("light" | "dark" | "no-preference" | "null"), ?contrast: ("no-preference" | "more" | "null"), ?deviceScaleFactor: Float, ?devtools: bool, ?downloadsPath: (String | File), ?env: Hash[untyped, untyped], ?executablePath: (String | File), ?extraHTTPHeaders: Hash[untyped, untyped], ?firefoxUserPrefs: Hash[untyped, untyped], ?forcedColors: ("active" | "none" | "null"), ?geolocation: Hash[untyped, untyped], ?handleSIGHUP: bool, ?handleSIGINT: bool, ?handleSIGTERM: bool, ?hasTouch: bool, ?headless: bool, ?httpCredentials: Hash[untyped, untyped], ?ignoreDefaultArgs: (bool | Array[untyped]), ?ignoreHTTPSErrors: bool, ?isMobile: bool, ?javaScriptEnabled: bool, ?locale: String, ?noViewport: bool, ?offline: bool, ?permissions: Array[untyped], ?proxy: Hash[untyped, untyped], ?record_har_content: ("omit" | "embed" | "attach"), ?record_har_mode: ("full" | "minimal"), ?record_har_omit_content: bool, ?record_har_path: (String | File), ?record_har_url_filter: (String | Regexp), ?record_video_dir: (String | File), ?record_video_size: Hash[untyped, untyped], ?reducedMotion: ("reduce" | "no-preference" | "null"), ?screen: Hash[untyped, untyped], ?serviceWorkers: ("allow" | "block"), ?slowMo: Float, ?strictSelectors: bool, ?timeout: Float, ?timezoneId: String, ?tracesDir: (String | File), ?userAgent: String, ?viewport: (nil | Hash[untyped, untyped])) ?{ (untyped) -> untyped } -> BrowserContext
434
434
  def name: -> String
435
435
  end
436
436
 
@@ -473,7 +473,7 @@ module Playwright
473
473
  def evaluate_all: (String expression, ?arg: untyped) -> untyped
474
474
  def evaluate_handle: (String expression, ?arg: untyped, ?timeout: Float) -> JSHandle
475
475
  def fill: (String value, ?force: bool, ?noWaitAfter: bool, ?timeout: Float) -> void
476
- def filter: (?has: Locator, ?hasNot: Locator, ?hasNotText: (String | Regexp), ?hasText: (String | Regexp)) -> Locator
476
+ def filter: (?has: Locator, ?hasNot: Locator, ?hasNotText: (String | Regexp), ?hasText: (String | Regexp), ?visible: bool) -> Locator
477
477
  def first: -> Locator
478
478
  def focus: (?timeout: Float) -> void
479
479
  def frame_locator: (String selector) -> FrameLocator
@@ -626,7 +626,7 @@ module Playwright
626
626
  class AndroidDevice
627
627
  def close: -> void
628
628
  def info: (untyped selector) -> untyped
629
- def launch_browser: (?acceptDownloads: bool, ?args: Array[untyped], ?baseURL: String, ?bypassCSP: bool, ?colorScheme: ("light" | "dark" | "no-preference" | "null"), ?deviceScaleFactor: Float, ?extraHTTPHeaders: Hash[untyped, untyped], ?forcedColors: ("active" | "none" | "null"), ?geolocation: Hash[untyped, untyped], ?hasTouch: bool, ?httpCredentials: Hash[untyped, untyped], ?ignoreHTTPSErrors: bool, ?isMobile: bool, ?javaScriptEnabled: bool, ?locale: String, ?noViewport: bool, ?offline: bool, ?permissions: Array[untyped], ?pkg: String, ?proxy: Hash[untyped, untyped], ?record_har_content: ("omit" | "embed" | "attach"), ?record_har_mode: ("full" | "minimal"), ?record_har_omit_content: bool, ?record_har_path: (String | File), ?record_har_url_filter: (String | Regexp), ?record_video_dir: (String | File), ?record_video_size: Hash[untyped, untyped], ?reducedMotion: ("reduce" | "no-preference" | "null"), ?screen: Hash[untyped, untyped], ?serviceWorkers: ("allow" | "block"), ?strictSelectors: bool, ?timezoneId: String, ?userAgent: String, ?viewport: (nil | Hash[untyped, untyped])) ?{ (untyped) -> untyped } -> BrowserContext
629
+ def launch_browser: (?acceptDownloads: bool, ?args: Array[untyped], ?baseURL: String, ?bypassCSP: bool, ?colorScheme: ("light" | "dark" | "no-preference" | "null"), ?contrast: ("no-preference" | "more" | "null"), ?deviceScaleFactor: Float, ?extraHTTPHeaders: Hash[untyped, untyped], ?forcedColors: ("active" | "none" | "null"), ?geolocation: Hash[untyped, untyped], ?hasTouch: bool, ?httpCredentials: Hash[untyped, untyped], ?ignoreHTTPSErrors: bool, ?isMobile: bool, ?javaScriptEnabled: bool, ?locale: String, ?noViewport: bool, ?offline: bool, ?permissions: Array[untyped], ?pkg: String, ?proxy: Hash[untyped, untyped], ?record_har_content: ("omit" | "embed" | "attach"), ?record_har_mode: ("full" | "minimal"), ?record_har_omit_content: bool, ?record_har_path: (String | File), ?record_har_url_filter: (String | Regexp), ?record_video_dir: (String | File), ?record_video_size: Hash[untyped, untyped], ?reducedMotion: ("reduce" | "no-preference" | "null"), ?screen: Hash[untyped, untyped], ?serviceWorkers: ("allow" | "block"), ?strictSelectors: bool, ?timezoneId: String, ?userAgent: String, ?viewport: (nil | Hash[untyped, untyped])) ?{ (untyped) -> untyped } -> BrowserContext
630
630
  def model: -> String
631
631
  def screenshot: (?path: (String | File)) -> String
632
632
  def serial: -> String
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playwright-ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.50.0
4
+ version: 1.51.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - YusukeIwaki
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-02-02 00:00:00.000000000 Z
10
+ date: 2025-03-17 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: concurrent-ruby
@@ -409,5 +409,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
409
409
  requirements: []
410
410
  rubygems_version: 3.6.2
411
411
  specification_version: 4
412
- summary: The Ruby binding of playwright driver 1.50.1
412
+ summary: The Ruby binding of playwright driver 1.51.0
413
413
  test_files: []