playwright-ruby-client 1.20.2 → 1.23.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.
- checksums.yaml +4 -4
- data/documentation/docs/api/api_request_context.md +15 -2
- data/documentation/docs/api/browser.md +16 -0
- data/documentation/docs/api/browser_context.md +15 -2
- data/documentation/docs/api/browser_type.md +5 -1
- data/documentation/docs/api/console_message.md +27 -1
- data/documentation/docs/api/element_handle.md +23 -13
- data/documentation/docs/api/experimental/android.md +1 -1
- data/documentation/docs/api/experimental/android_device.md +4 -0
- data/documentation/docs/api/file_chooser.md +1 -1
- data/documentation/docs/api/frame.md +12 -5
- data/documentation/docs/api/frame_locator.md +1 -1
- data/documentation/docs/api/locator.md +44 -13
- data/documentation/docs/api/page.md +32 -9
- data/documentation/docs/api/request.md +3 -1
- data/documentation/docs/api/response.md +12 -1
- data/documentation/docs/api/route.md +67 -0
- data/documentation/docs/include/api_coverage.md +6 -3
- data/documentation/package.json +6 -6
- data/documentation/yarn.lock +2931 -3220
- data/lib/playwright/channel.rb +1 -3
- data/lib/playwright/channel_owners/browser.rb +13 -0
- data/lib/playwright/channel_owners/browser_context.rb +89 -13
- data/lib/playwright/channel_owners/browser_type.rb +4 -0
- data/lib/playwright/channel_owners/element_handle.rb +12 -3
- data/lib/playwright/channel_owners/frame.rb +20 -7
- data/lib/playwright/channel_owners/local_utils.rb +29 -0
- data/lib/playwright/channel_owners/page.rb +54 -22
- data/lib/playwright/channel_owners/request.rb +31 -6
- data/lib/playwright/channel_owners/response.rb +6 -0
- data/lib/playwright/channel_owners/route.rb +104 -45
- data/lib/playwright/channel_owners/writable_stream.rb +14 -0
- data/lib/playwright/connection.rb +6 -1
- data/lib/playwright/har_router.rb +82 -0
- data/lib/playwright/http_headers.rb +1 -1
- data/lib/playwright/input_files.rb +60 -8
- data/lib/playwright/javascript/regex.rb +23 -0
- data/lib/playwright/javascript/value_parser.rb +17 -2
- data/lib/playwright/javascript/value_serializer.rb +16 -6
- data/lib/playwright/javascript/visitor_info.rb +26 -0
- data/lib/playwright/javascript.rb +1 -0
- data/lib/playwright/locator_impl.rb +18 -5
- data/lib/playwright/playwright_api.rb +26 -6
- data/lib/playwright/route_handler.rb +2 -6
- data/lib/playwright/transport.rb +12 -2
- data/lib/playwright/utils.rb +31 -6
- data/lib/playwright/version.rb +2 -2
- data/lib/playwright.rb +2 -0
- data/lib/playwright_api/accessibility.rb +2 -1
- data/lib/playwright_api/android.rb +2 -2
- data/lib/playwright_api/android_device.rb +5 -1
- data/lib/playwright_api/api_request.rb +3 -3
- data/lib/playwright_api/api_request_context.rb +15 -2
- data/lib/playwright_api/browser.rb +15 -2
- data/lib/playwright_api/browser_context.rb +17 -7
- data/lib/playwright_api/browser_type.rb +7 -3
- data/lib/playwright_api/console_message.rb +20 -1
- data/lib/playwright_api/element_handle.rb +53 -49
- data/lib/playwright_api/file_chooser.rb +1 -1
- data/lib/playwright_api/frame.rb +30 -23
- data/lib/playwright_api/frame_locator.rb +1 -1
- data/lib/playwright_api/locator.rb +58 -38
- data/lib/playwright_api/page.rb +52 -32
- data/lib/playwright_api/playwright.rb +1 -1
- data/lib/playwright_api/request.rb +8 -1
- data/lib/playwright_api/response.rb +14 -1
- data/lib/playwright_api/route.rb +63 -2
- data/lib/playwright_api/selectors.rb +1 -1
- data/lib/playwright_api/tracing.rb +1 -1
- metadata +7 -4
- data/lib/playwright_api/local_utils.rb +0 -9
@@ -1,5 +1,5 @@
|
|
1
1
|
module Playwright
|
2
|
-
# Selectors can be used to install custom selector engines. See [Working with selectors](
|
2
|
+
# Selectors can be used to install custom selector engines. See [Working with selectors](../selectors.md) for more
|
3
3
|
# information.
|
4
4
|
class Selectors < PlaywrightApi
|
5
5
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Playwright
|
2
|
-
# API for collecting and saving Playwright traces. Playwright traces can be opened in [Trace Viewer](
|
2
|
+
# API for collecting and saving Playwright traces. Playwright traces can be opened in [Trace Viewer](../trace-viewer.md)
|
3
3
|
# after Playwright script runs.
|
4
4
|
#
|
5
5
|
# Start recording a trace before performing actions. At the end, stop tracing and save it to a file.
|
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.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YusukeIwaki
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -307,6 +307,7 @@ files:
|
|
307
307
|
- lib/playwright/channel_owners/tracing.rb
|
308
308
|
- lib/playwright/channel_owners/web_socket.rb
|
309
309
|
- lib/playwright/channel_owners/worker.rb
|
310
|
+
- lib/playwright/channel_owners/writable_stream.rb
|
310
311
|
- lib/playwright/connection.rb
|
311
312
|
- lib/playwright/download_impl.rb
|
312
313
|
- lib/playwright/errors.rb
|
@@ -315,12 +316,15 @@ files:
|
|
315
316
|
- lib/playwright/events.rb
|
316
317
|
- lib/playwright/file_chooser_impl.rb
|
317
318
|
- lib/playwright/frame_locator_impl.rb
|
319
|
+
- lib/playwright/har_router.rb
|
318
320
|
- lib/playwright/http_headers.rb
|
319
321
|
- lib/playwright/input_files.rb
|
320
322
|
- lib/playwright/javascript.rb
|
321
323
|
- lib/playwright/javascript/expression.rb
|
324
|
+
- lib/playwright/javascript/regex.rb
|
322
325
|
- lib/playwright/javascript/value_parser.rb
|
323
326
|
- lib/playwright/javascript/value_serializer.rb
|
327
|
+
- lib/playwright/javascript/visitor_info.rb
|
324
328
|
- lib/playwright/keyboard_impl.rb
|
325
329
|
- lib/playwright/locator_impl.rb
|
326
330
|
- lib/playwright/mouse_impl.rb
|
@@ -360,7 +364,6 @@ files:
|
|
360
364
|
- lib/playwright_api/frame_locator.rb
|
361
365
|
- lib/playwright_api/js_handle.rb
|
362
366
|
- lib/playwright_api/keyboard.rb
|
363
|
-
- lib/playwright_api/local_utils.rb
|
364
367
|
- lib/playwright_api/locator.rb
|
365
368
|
- lib/playwright_api/mouse.rb
|
366
369
|
- lib/playwright_api/page.rb
|
@@ -396,5 +399,5 @@ requirements: []
|
|
396
399
|
rubygems_version: 3.3.7
|
397
400
|
signing_key:
|
398
401
|
specification_version: 4
|
399
|
-
summary: The Ruby binding of playwright driver 1.
|
402
|
+
summary: The Ruby binding of playwright driver 1.23.4
|
400
403
|
test_files: []
|