playwright-ruby-client 0.5.6 → 0.6.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/README.md +1 -1
- data/docs/api_coverage.md +10 -1
- data/lib/playwright/channel_owner.rb +3 -0
- data/lib/playwright/channel_owners/browser.rb +27 -2
- data/lib/playwright/channel_owners/browser_context.rb +52 -1
- data/lib/playwright/channel_owners/browser_type.rb +8 -1
- data/lib/playwright/channel_owners/element_handle.rb +15 -6
- data/lib/playwright/channel_owners/frame.rb +23 -6
- data/lib/playwright/channel_owners/page.rb +25 -44
- data/lib/playwright/download.rb +3 -2
- data/lib/playwright/events.rb +4 -0
- data/lib/playwright/playwright_api.rb +1 -5
- data/lib/playwright/tracing_impl.rb +31 -0
- data/lib/playwright/version.rb +2 -1
- data/lib/playwright_api/accessibility.rb +8 -7
- data/lib/playwright_api/android.rb +7 -7
- data/lib/playwright_api/android_device.rb +6 -6
- data/lib/playwright_api/browser.rb +49 -6
- data/lib/playwright_api/browser_context.rb +205 -9
- data/lib/playwright_api/browser_type.rb +48 -9
- data/lib/playwright_api/console_message.rb +8 -6
- data/lib/playwright_api/dialog.rb +29 -6
- data/lib/playwright_api/element_handle.rb +130 -26
- data/lib/playwright_api/file_chooser.rb +7 -0
- data/lib/playwright_api/frame.rb +200 -27
- data/lib/playwright_api/js_handle.rb +23 -6
- data/lib/playwright_api/keyboard.rb +48 -0
- data/lib/playwright_api/page.rb +514 -44
- data/lib/playwright_api/playwright.rb +24 -6
- data/lib/playwright_api/request.rb +34 -6
- data/lib/playwright_api/response.rb +8 -8
- data/lib/playwright_api/route.rb +28 -8
- data/lib/playwright_api/selectors.rb +31 -6
- data/lib/playwright_api/tracing.rb +99 -0
- data/lib/playwright_api/worker.rb +2 -2
- data/playwright.gemspec +2 -2
- metadata +6 -18
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: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YusukeIwaki
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-05-
|
11
|
+
date: 2021-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -136,20 +136,6 @@ dependencies:
|
|
136
136
|
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '0'
|
139
|
-
- !ruby/object:Gem::Dependency
|
140
|
-
name: rubocop
|
141
|
-
requirement: !ruby/object:Gem::Requirement
|
142
|
-
requirements:
|
143
|
-
- - "~>"
|
144
|
-
- !ruby/object:Gem::Version
|
145
|
-
version: 1.7.0
|
146
|
-
type: :development
|
147
|
-
prerelease: false
|
148
|
-
version_requirements: !ruby/object:Gem::Requirement
|
149
|
-
requirements:
|
150
|
-
- - "~>"
|
151
|
-
- !ruby/object:Gem::Version
|
152
|
-
version: 1.7.0
|
153
139
|
- !ruby/object:Gem::Dependency
|
154
140
|
name: rubocop-rspec
|
155
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -254,6 +240,7 @@ files:
|
|
254
240
|
- lib/playwright/select_option_values.rb
|
255
241
|
- lib/playwright/timeout_settings.rb
|
256
242
|
- lib/playwright/touchscreen_impl.rb
|
243
|
+
- lib/playwright/tracing_impl.rb
|
257
244
|
- lib/playwright/transport.rb
|
258
245
|
- lib/playwright/url_matcher.rb
|
259
246
|
- lib/playwright/utils.rb
|
@@ -285,6 +272,7 @@ files:
|
|
285
272
|
- lib/playwright_api/route.rb
|
286
273
|
- lib/playwright_api/selectors.rb
|
287
274
|
- lib/playwright_api/touchscreen.rb
|
275
|
+
- lib/playwright_api/tracing.rb
|
288
276
|
- lib/playwright_api/web_socket.rb
|
289
277
|
- lib/playwright_api/worker.rb
|
290
278
|
- playwright.gemspec
|
@@ -300,7 +288,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
300
288
|
requirements:
|
301
289
|
- - ">="
|
302
290
|
- !ruby/object:Gem::Version
|
303
|
-
version: '
|
291
|
+
version: '2.4'
|
304
292
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
305
293
|
requirements:
|
306
294
|
- - ">="
|
@@ -310,5 +298,5 @@ requirements: []
|
|
310
298
|
rubygems_version: 3.2.15
|
311
299
|
signing_key:
|
312
300
|
specification_version: 4
|
313
|
-
summary: The Ruby binding of playwright driver
|
301
|
+
summary: The Ruby binding of playwright driver 1.12.0
|
314
302
|
test_files: []
|