playwright-ruby-client 1.37.1 → 1.38.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/README.md +13 -7
- data/documentation/docs/api/download.md +17 -7
- data/documentation/docs/api/element_handle.md +1 -14
- data/documentation/docs/api/frame.md +1 -6
- data/documentation/docs/api/keyboard.md +4 -0
- data/documentation/docs/api/locator.md +31 -16
- data/documentation/docs/api/locator_assertions.md +684 -0
- data/documentation/docs/api/page.md +1 -6
- data/documentation/docs/api/request.md +17 -0
- data/documentation/docs/include/api_coverage.md +44 -0
- data/lib/playwright/channel.rb +1 -1
- data/lib/playwright/channel_owners/browser_context.rb +15 -0
- data/lib/playwright/channel_owners/page.rb +2 -0
- data/lib/playwright/channel_owners/request.rb +17 -1
- data/lib/playwright/channel_owners/route.rb +5 -1
- data/lib/playwright/errors.rb +15 -2
- data/lib/playwright/events.rb +1 -0
- data/lib/playwright/javascript/value_parser.rb +8 -0
- data/lib/playwright/javascript/value_serializer.rb +11 -5
- data/lib/playwright/locator_assertions_impl.rb +417 -0
- data/lib/playwright/locator_impl.rb +28 -5
- data/lib/playwright/test.rb +68 -0
- data/lib/playwright/utils.rb +4 -0
- data/lib/playwright/version.rb +2 -2
- data/lib/playwright_api/download.rb +12 -3
- data/lib/playwright_api/element_handle.rb +1 -14
- data/lib/playwright_api/frame.rb +1 -6
- data/lib/playwright_api/keyboard.rb +4 -0
- data/lib/playwright_api/locator.rb +31 -16
- data/lib/playwright_api/locator_assertions.rb +538 -0
- data/lib/playwright_api/page.rb +1 -6
- data/lib/playwright_api/request.rb +17 -0
- data/lib/playwright_api/worker.rb +4 -4
- data/sig/playwright.rbs +44 -0
- metadata +7 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: playwright-ruby-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.38.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YusukeIwaki
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -233,6 +233,7 @@ files:
|
|
233
233
|
- documentation/docs/api/js_handle.md
|
234
234
|
- documentation/docs/api/keyboard.md
|
235
235
|
- documentation/docs/api/locator.md
|
236
|
+
- documentation/docs/api/locator_assertions.md
|
236
237
|
- documentation/docs/api/mouse.md
|
237
238
|
- documentation/docs/api/page.md
|
238
239
|
- documentation/docs/api/playwright.md
|
@@ -326,6 +327,7 @@ files:
|
|
326
327
|
- lib/playwright/javascript/value_serializer.rb
|
327
328
|
- lib/playwright/javascript/visitor_info.rb
|
328
329
|
- lib/playwright/keyboard_impl.rb
|
330
|
+
- lib/playwright/locator_assertions_impl.rb
|
329
331
|
- lib/playwright/locator_impl.rb
|
330
332
|
- lib/playwright/locator_utils.rb
|
331
333
|
- lib/playwright/mouse_impl.rb
|
@@ -333,6 +335,7 @@ files:
|
|
333
335
|
- lib/playwright/raw_headers.rb
|
334
336
|
- lib/playwright/route_handler.rb
|
335
337
|
- lib/playwright/select_option_values.rb
|
338
|
+
- lib/playwright/test.rb
|
336
339
|
- lib/playwright/timeout_settings.rb
|
337
340
|
- lib/playwright/touchscreen_impl.rb
|
338
341
|
- lib/playwright/transport.rb
|
@@ -366,6 +369,7 @@ files:
|
|
366
369
|
- lib/playwright_api/js_handle.rb
|
367
370
|
- lib/playwright_api/keyboard.rb
|
368
371
|
- lib/playwright_api/locator.rb
|
372
|
+
- lib/playwright_api/locator_assertions.rb
|
369
373
|
- lib/playwright_api/mouse.rb
|
370
374
|
- lib/playwright_api/page.rb
|
371
375
|
- lib/playwright_api/playwright.rb
|
@@ -401,5 +405,5 @@ requirements: []
|
|
401
405
|
rubygems_version: 3.3.26
|
402
406
|
signing_key:
|
403
407
|
specification_version: 4
|
404
|
-
summary: The Ruby binding of playwright driver 1.
|
408
|
+
summary: The Ruby binding of playwright driver 1.38.1
|
405
409
|
test_files: []
|