playwright-ruby-client 1.16.0 → 1.17.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/api_request.md +7 -0
- data/documentation/docs/api/api_request_context.md +137 -0
- data/documentation/docs/api/api_response.md +90 -0
- data/documentation/docs/api/browser_context.md +4 -0
- data/documentation/docs/api/element_handle.md +2 -3
- data/documentation/docs/api/frame.md +30 -0
- data/documentation/docs/api/frame_locator.md +70 -0
- data/documentation/docs/api/locator.md +17 -2
- data/documentation/docs/api/page.md +33 -3
- data/documentation/docs/api/request.md +3 -3
- data/documentation/docs/api/selectors.md +1 -1
- data/documentation/docs/api/tracing.md +2 -2
- data/documentation/docs/include/api_coverage.md +42 -12
- data/lib/playwright/api_response_impl.rb +73 -0
- data/lib/playwright/channel.rb +1 -1
- data/lib/playwright/channel_owners/api_request_context.rb +232 -0
- data/lib/playwright/channel_owners/artifact.rb +1 -6
- data/lib/playwright/channel_owners/browser.rb +6 -8
- data/lib/playwright/channel_owners/browser_context.rb +3 -4
- data/lib/playwright/channel_owners/browser_type.rb +0 -1
- data/lib/playwright/channel_owners/fetch_request.rb +2 -0
- data/lib/playwright/channel_owners/frame.rb +10 -6
- data/lib/playwright/channel_owners/page.rb +17 -10
- data/lib/playwright/connection.rb +9 -0
- data/lib/playwright/frame_locator_impl.rb +49 -0
- data/lib/playwright/locator_impl.rb +13 -5
- data/lib/playwright/tracing_impl.rb +6 -9
- data/lib/playwright/version.rb +2 -2
- data/lib/playwright/video.rb +3 -0
- data/lib/playwright.rb +2 -1
- data/lib/playwright_api/android_device.rb +4 -4
- data/lib/playwright_api/api_request.rb +18 -0
- data/lib/playwright_api/api_request_context.rb +11 -8
- data/lib/playwright_api/api_response.rb +68 -0
- data/lib/playwright_api/browser_context.rb +10 -5
- data/lib/playwright_api/element_handle.rb +2 -3
- data/lib/playwright_api/frame.rb +26 -1
- data/lib/playwright_api/frame_locator.rb +51 -0
- data/lib/playwright_api/locator.rb +12 -2
- data/lib/playwright_api/page.rb +34 -4
- data/lib/playwright_api/playwright.rb +9 -4
- data/lib/playwright_api/selectors.rb +2 -2
- data/lib/playwright_api/tracing.rb +4 -4
- data/playwright.gemspec +1 -1
- metadata +14 -6
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.17.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YusukeIwaki
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 2.
|
47
|
+
version: 2.3.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 2.
|
54
|
+
version: 2.3.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: chunky_png
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -210,7 +210,9 @@ files:
|
|
210
210
|
- documentation/README.md
|
211
211
|
- documentation/babel.config.js
|
212
212
|
- documentation/docs/api/accessibility.md
|
213
|
+
- documentation/docs/api/api_request.md
|
213
214
|
- documentation/docs/api/api_request_context.md
|
215
|
+
- documentation/docs/api/api_response.md
|
214
216
|
- documentation/docs/api/browser.md
|
215
217
|
- documentation/docs/api/browser_context.md
|
216
218
|
- documentation/docs/api/browser_type.md
|
@@ -227,6 +229,7 @@ files:
|
|
227
229
|
- documentation/docs/api/experimental/android_web_view.md
|
228
230
|
- documentation/docs/api/file_chooser.md
|
229
231
|
- documentation/docs/api/frame.md
|
232
|
+
- documentation/docs/api/frame_locator.md
|
230
233
|
- documentation/docs/api/js_handle.md
|
231
234
|
- documentation/docs/api/keyboard.md
|
232
235
|
- documentation/docs/api/locator.md
|
@@ -274,6 +277,7 @@ files:
|
|
274
277
|
- lib/playwright/accessibility_impl.rb
|
275
278
|
- lib/playwright/android_input_impl.rb
|
276
279
|
- lib/playwright/api_implementation.rb
|
280
|
+
- lib/playwright/api_response_impl.rb
|
277
281
|
- lib/playwright/channel.rb
|
278
282
|
- lib/playwright/channel_owner.rb
|
279
283
|
- lib/playwright/channel_owners/android.rb
|
@@ -308,6 +312,7 @@ files:
|
|
308
312
|
- lib/playwright/event_emitter_proxy.rb
|
309
313
|
- lib/playwright/events.rb
|
310
314
|
- lib/playwright/file_chooser_impl.rb
|
315
|
+
- lib/playwright/frame_locator_impl.rb
|
311
316
|
- lib/playwright/http_headers.rb
|
312
317
|
- lib/playwright/input_files.rb
|
313
318
|
- lib/playwright/javascript.rb
|
@@ -338,7 +343,9 @@ files:
|
|
338
343
|
- lib/playwright_api/android_input.rb
|
339
344
|
- lib/playwright_api/android_socket.rb
|
340
345
|
- lib/playwright_api/android_web_view.rb
|
346
|
+
- lib/playwright_api/api_request.rb
|
341
347
|
- lib/playwright_api/api_request_context.rb
|
348
|
+
- lib/playwright_api/api_response.rb
|
342
349
|
- lib/playwright_api/browser.rb
|
343
350
|
- lib/playwright_api/browser_context.rb
|
344
351
|
- lib/playwright_api/browser_type.rb
|
@@ -349,6 +356,7 @@ files:
|
|
349
356
|
- lib/playwright_api/element_handle.rb
|
350
357
|
- lib/playwright_api/file_chooser.rb
|
351
358
|
- lib/playwright_api/frame.rb
|
359
|
+
- lib/playwright_api/frame_locator.rb
|
352
360
|
- lib/playwright_api/js_handle.rb
|
353
361
|
- lib/playwright_api/keyboard.rb
|
354
362
|
- lib/playwright_api/locator.rb
|
@@ -383,8 +391,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
383
391
|
- !ruby/object:Gem::Version
|
384
392
|
version: '0'
|
385
393
|
requirements: []
|
386
|
-
rubygems_version: 3.
|
394
|
+
rubygems_version: 3.3.3
|
387
395
|
signing_key:
|
388
396
|
specification_version: 4
|
389
|
-
summary: The Ruby binding of playwright driver 1.
|
397
|
+
summary: The Ruby binding of playwright driver 1.17.2
|
390
398
|
test_files: []
|