playwright-ruby-client 0.0.8 → 1.58.1.alpha1
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/AGENTS.md +4 -0
- data/CLAUDE/api_generation.md +28 -0
- data/CLAUDE/ci_expectations.md +23 -0
- data/CLAUDE/gem_release_flow.md +39 -0
- data/CLAUDE/past_upgrade_pr_patterns.md +42 -0
- data/CLAUDE/playwright_upgrade_workflow.md +35 -0
- data/CLAUDE/rspec_debugging.md +30 -0
- data/CLAUDE/unimplemented_examples.md +18 -0
- data/CLAUDE.md +32 -0
- data/CONTRIBUTING.md +5 -0
- data/README.md +60 -16
- data/documentation/README.md +33 -0
- data/documentation/babel.config.js +3 -0
- data/documentation/docs/api/api_request.md +7 -0
- data/documentation/docs/api/api_request_context.md +298 -0
- data/documentation/docs/api/api_response.md +114 -0
- data/documentation/docs/api/browser.md +237 -0
- data/documentation/docs/api/browser_context.md +503 -0
- data/documentation/docs/api/browser_type.md +184 -0
- data/documentation/docs/api/cdp_session.md +44 -0
- data/documentation/docs/api/clock.md +154 -0
- data/documentation/docs/api/console_message.md +85 -0
- data/documentation/docs/api/dialog.md +84 -0
- data/documentation/docs/api/download.md +111 -0
- data/documentation/docs/api/element_handle.md +694 -0
- data/documentation/docs/api/experimental/_category_.yml +3 -0
- data/documentation/docs/api/experimental/android.md +42 -0
- data/documentation/docs/api/experimental/android_device.md +109 -0
- data/documentation/docs/api/experimental/android_input.md +43 -0
- data/documentation/docs/api/experimental/android_socket.md +7 -0
- data/documentation/docs/api/experimental/android_web_view.md +7 -0
- data/documentation/docs/api/file_chooser.md +53 -0
- data/documentation/docs/api/frame.md +1218 -0
- data/documentation/docs/api/frame_locator.md +348 -0
- data/documentation/docs/api/js_handle.md +121 -0
- data/documentation/docs/api/keyboard.md +170 -0
- data/documentation/docs/api/locator.md +1495 -0
- data/documentation/docs/api/locator_assertions.md +827 -0
- data/documentation/docs/api/mouse.md +86 -0
- data/documentation/docs/api/page.md +1946 -0
- data/documentation/docs/api/page_assertions.md +65 -0
- data/documentation/docs/api/playwright.md +66 -0
- data/documentation/docs/api/request.md +255 -0
- data/documentation/docs/api/response.md +176 -0
- data/documentation/docs/api/route.md +205 -0
- data/documentation/docs/api/selectors.md +63 -0
- data/documentation/docs/api/touchscreen.md +22 -0
- data/documentation/docs/api/tracing.md +129 -0
- data/documentation/docs/api/web_socket.md +51 -0
- data/documentation/docs/api/worker.md +83 -0
- data/documentation/docs/article/api_coverage.mdx +11 -0
- data/documentation/docs/article/getting_started.md +161 -0
- data/documentation/docs/article/guides/_category_.yml +3 -0
- data/documentation/docs/article/guides/download_playwright_driver.md +55 -0
- data/documentation/docs/article/guides/inspector.md +31 -0
- data/documentation/docs/article/guides/launch_browser.md +121 -0
- data/documentation/docs/article/guides/playwright_on_alpine_linux.md +112 -0
- data/documentation/docs/article/guides/rails_integration.md +278 -0
- data/documentation/docs/article/guides/rails_integration_with_null_driver.md +145 -0
- data/documentation/docs/article/guides/recording_video.md +79 -0
- data/documentation/docs/article/guides/rspec_integration.md +59 -0
- data/documentation/docs/article/guides/semi_automation.md +71 -0
- data/documentation/docs/article/guides/use_storage_state.md +78 -0
- data/documentation/docs/include/api_coverage.md +671 -0
- data/documentation/docusaurus.config.js +114 -0
- data/documentation/package.json +39 -0
- data/documentation/sidebars.js +15 -0
- data/documentation/src/components/HomepageFeatures.js +61 -0
- data/documentation/src/components/HomepageFeatures.module.css +13 -0
- data/documentation/src/css/custom.css +44 -0
- data/documentation/src/pages/index.js +49 -0
- data/documentation/src/pages/index.module.css +41 -0
- data/documentation/src/pages/markdown-page.md +7 -0
- data/documentation/static/.nojekyll +0 -0
- data/documentation/static/img/playwright-logo.svg +9 -0
- data/documentation/static/img/playwright-ruby-client.png +0 -0
- data/documentation/static/img/undraw_dropdown_menu.svg +1 -0
- data/documentation/static/img/undraw_web_development.svg +1 -0
- data/documentation/static/img/undraw_windows.svg +1 -0
- data/documentation/yarn.lock +9005 -0
- data/lib/playwright/{input_types/android_input.rb → android_input_impl.rb} +5 -1
- data/lib/playwright/api_implementation.rb +18 -0
- data/lib/playwright/api_response_impl.rb +77 -0
- data/lib/playwright/channel.rb +62 -1
- data/lib/playwright/channel_owner.rb +70 -7
- data/lib/playwright/channel_owners/android.rb +16 -3
- data/lib/playwright/channel_owners/android_device.rb +22 -66
- data/lib/playwright/channel_owners/api_request_context.rb +247 -0
- data/lib/playwright/channel_owners/artifact.rb +40 -0
- data/lib/playwright/channel_owners/binding_call.rb +70 -0
- data/lib/playwright/channel_owners/browser.rb +114 -22
- data/lib/playwright/channel_owners/browser_context.rb +589 -15
- data/lib/playwright/channel_owners/browser_type.rb +90 -1
- data/lib/playwright/channel_owners/cdp_session.rb +19 -0
- data/lib/playwright/channel_owners/dialog.rb +32 -0
- data/lib/playwright/channel_owners/element_handle.rb +107 -43
- data/lib/playwright/channel_owners/fetch_request.rb +8 -0
- data/lib/playwright/channel_owners/frame.rb +334 -104
- data/lib/playwright/channel_owners/js_handle.rb +9 -13
- data/lib/playwright/channel_owners/local_utils.rb +82 -0
- data/lib/playwright/channel_owners/page.rb +778 -95
- data/lib/playwright/channel_owners/playwright.rb +25 -30
- data/lib/playwright/channel_owners/request.rb +120 -18
- data/lib/playwright/channel_owners/response.rb +113 -0
- data/lib/playwright/channel_owners/route.rb +181 -0
- data/lib/playwright/channel_owners/stream.rb +30 -0
- data/lib/playwright/channel_owners/tracing.rb +117 -0
- data/lib/playwright/channel_owners/web_socket.rb +96 -0
- data/lib/playwright/channel_owners/worker.rb +46 -0
- data/lib/playwright/channel_owners/writable_stream.rb +14 -0
- data/lib/playwright/clock_impl.rb +67 -0
- data/lib/playwright/connection.rb +111 -63
- data/lib/playwright/console_message_impl.rb +29 -0
- data/lib/playwright/download_impl.rb +32 -0
- data/lib/playwright/errors.rb +42 -5
- data/lib/playwright/event_emitter.rb +17 -3
- data/lib/playwright/event_emitter_proxy.rb +49 -0
- data/lib/playwright/events.rb +10 -5
- data/lib/playwright/file_chooser_impl.rb +24 -0
- data/lib/playwright/frame_locator_impl.rb +66 -0
- data/lib/playwright/har_router.rb +89 -0
- data/lib/playwright/http_headers.rb +14 -0
- data/lib/playwright/input_files.rb +102 -15
- data/lib/playwright/javascript/expression.rb +7 -11
- data/lib/playwright/javascript/regex.rb +23 -0
- data/lib/playwright/javascript/source_url.rb +16 -0
- data/lib/playwright/javascript/value_parser.rb +108 -19
- data/lib/playwright/javascript/value_serializer.rb +47 -8
- data/lib/playwright/javascript/visitor_info.rb +26 -0
- data/lib/playwright/javascript.rb +2 -10
- data/lib/playwright/{input_types/keyboard.rb → keyboard_impl.rb} +6 -2
- data/lib/playwright/locator_assertions_impl.rb +571 -0
- data/lib/playwright/locator_impl.rb +544 -0
- data/lib/playwright/locator_utils.rb +136 -0
- data/lib/playwright/mouse_impl.rb +57 -0
- data/lib/playwright/page_assertions_impl.rb +154 -0
- data/lib/playwright/playwright_api.rb +102 -30
- data/lib/playwright/raw_headers.rb +61 -0
- data/lib/playwright/route_handler.rb +78 -0
- data/lib/playwright/select_option_values.rb +34 -13
- data/lib/playwright/selectors_impl.rb +45 -0
- data/lib/playwright/test.rb +102 -0
- data/lib/playwright/timeout_settings.rb +9 -4
- data/lib/playwright/touchscreen_impl.rb +14 -0
- data/lib/playwright/transport.rb +61 -10
- data/lib/playwright/url_matcher.rb +24 -2
- data/lib/playwright/utils.rb +48 -13
- data/lib/playwright/version.rb +2 -1
- data/lib/playwright/video.rb +54 -0
- data/lib/playwright/waiter.rb +166 -0
- data/lib/playwright/web_socket_client.rb +167 -0
- data/lib/playwright/web_socket_transport.rb +116 -0
- data/lib/playwright.rb +188 -11
- data/lib/playwright_api/android.rb +46 -11
- data/lib/playwright_api/android_device.rb +182 -31
- data/lib/playwright_api/android_input.rb +22 -13
- data/lib/playwright_api/android_socket.rb +18 -0
- data/lib/playwright_api/android_web_view.rb +24 -0
- data/lib/playwright_api/api_request.rb +26 -0
- data/lib/playwright_api/api_request_context.rb +311 -0
- data/lib/playwright_api/api_response.rb +92 -0
- data/lib/playwright_api/browser.rb +116 -103
- data/lib/playwright_api/browser_context.rb +290 -389
- data/lib/playwright_api/browser_type.rb +96 -118
- data/lib/playwright_api/cdp_session.rb +36 -39
- data/lib/playwright_api/clock.rb +121 -0
- data/lib/playwright_api/console_message.rb +35 -19
- data/lib/playwright_api/dialog.rb +53 -50
- data/lib/playwright_api/download.rb +49 -43
- data/lib/playwright_api/element_handle.rb +354 -402
- data/lib/playwright_api/file_chooser.rb +15 -18
- data/lib/playwright_api/frame.rb +703 -603
- data/lib/playwright_api/frame_locator.rb +285 -0
- data/lib/playwright_api/js_handle.rb +50 -76
- data/lib/playwright_api/keyboard.rb +67 -146
- data/lib/playwright_api/locator.rb +1304 -0
- data/lib/playwright_api/locator_assertions.rb +704 -0
- data/lib/playwright_api/mouse.rb +23 -29
- data/lib/playwright_api/page.rb +1196 -1176
- data/lib/playwright_api/page_assertions.rb +60 -0
- data/lib/playwright_api/playwright.rb +54 -122
- data/lib/playwright_api/request.rb +112 -74
- data/lib/playwright_api/response.rb +92 -20
- data/lib/playwright_api/route.rb +152 -62
- data/lib/playwright_api/selectors.rb +47 -61
- data/lib/playwright_api/touchscreen.rb +8 -2
- data/lib/playwright_api/tracing.rb +128 -0
- data/lib/playwright_api/web_socket.rb +43 -5
- data/lib/playwright_api/worker.rb +74 -34
- data/playwright.gemspec +14 -9
- data/sig/playwright.rbs +658 -0
- metadata +216 -50
- data/docs/api_coverage.md +0 -354
- data/lib/playwright/channel_owners/chromium_browser.rb +0 -8
- data/lib/playwright/channel_owners/chromium_browser_context.rb +0 -8
- data/lib/playwright/channel_owners/console_message.rb +0 -21
- data/lib/playwright/channel_owners/firefox_browser.rb +0 -8
- data/lib/playwright/channel_owners/selectors.rb +0 -4
- data/lib/playwright/channel_owners/webkit_browser.rb +0 -8
- data/lib/playwright/input_type.rb +0 -19
- data/lib/playwright/input_types/mouse.rb +0 -4
- data/lib/playwright/input_types/touchscreen.rb +0 -4
- data/lib/playwright/javascript/function.rb +0 -67
- data/lib/playwright/wait_helper.rb +0 -73
- data/lib/playwright_api/accessibility.rb +0 -93
- data/lib/playwright_api/binding_call.rb +0 -23
- data/lib/playwright_api/chromium_browser_context.rb +0 -57
- data/lib/playwright_api/video.rb +0 -24
metadata
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: playwright-ruby-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.58.1.alpha1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- YusukeIwaki
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
13
|
+
name: base64
|
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
|
16
15
|
requirements:
|
|
17
16
|
- - ">="
|
|
@@ -24,6 +23,20 @@ dependencies:
|
|
|
24
23
|
- - ">="
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
25
|
version: '0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: concurrent-ruby
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.1.6
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 1.1.6
|
|
27
40
|
- !ruby/object:Gem::Dependency
|
|
28
41
|
name: mime-types
|
|
29
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -42,16 +55,30 @@ dependencies:
|
|
|
42
55
|
name: bundler
|
|
43
56
|
requirement: !ruby/object:Gem::Requirement
|
|
44
57
|
requirements:
|
|
45
|
-
- - "
|
|
58
|
+
- - ">="
|
|
46
59
|
- !ruby/object:Gem::Version
|
|
47
|
-
version:
|
|
60
|
+
version: '0'
|
|
48
61
|
type: :development
|
|
49
62
|
prerelease: false
|
|
50
63
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
64
|
requirements:
|
|
52
|
-
- - "
|
|
65
|
+
- - ">="
|
|
53
66
|
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
67
|
+
version: '0'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: chunky_png
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
type: :development
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
55
82
|
- !ruby/object:Gem::Dependency
|
|
56
83
|
name: dry-inflector
|
|
57
84
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,6 +93,20 @@ dependencies:
|
|
|
66
93
|
- - ">="
|
|
67
94
|
- !ruby/object:Gem::Version
|
|
68
95
|
version: '0'
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: faye-websocket
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '0'
|
|
103
|
+
type: :development
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '0'
|
|
69
110
|
- !ruby/object:Gem::Dependency
|
|
70
111
|
name: pry-byebug
|
|
71
112
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -81,49 +122,49 @@ dependencies:
|
|
|
81
122
|
- !ruby/object:Gem::Version
|
|
82
123
|
version: '0'
|
|
83
124
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
125
|
+
name: ostruct
|
|
85
126
|
requirement: !ruby/object:Gem::Requirement
|
|
86
127
|
requirements:
|
|
87
|
-
- - "
|
|
128
|
+
- - ">="
|
|
88
129
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
130
|
+
version: '0'
|
|
90
131
|
type: :development
|
|
91
132
|
prerelease: false
|
|
92
133
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
134
|
requirements:
|
|
94
|
-
- - "
|
|
135
|
+
- - ">="
|
|
95
136
|
- !ruby/object:Gem::Version
|
|
96
|
-
version:
|
|
137
|
+
version: '0'
|
|
97
138
|
- !ruby/object:Gem::Dependency
|
|
98
|
-
name:
|
|
139
|
+
name: puma
|
|
99
140
|
requirement: !ruby/object:Gem::Requirement
|
|
100
141
|
requirements:
|
|
101
|
-
- - "
|
|
142
|
+
- - ">="
|
|
102
143
|
- !ruby/object:Gem::Version
|
|
103
|
-
version:
|
|
144
|
+
version: '0'
|
|
104
145
|
type: :development
|
|
105
146
|
prerelease: false
|
|
106
147
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
148
|
requirements:
|
|
108
|
-
- - "
|
|
149
|
+
- - ">="
|
|
109
150
|
- !ruby/object:Gem::Version
|
|
110
|
-
version:
|
|
151
|
+
version: '0'
|
|
111
152
|
- !ruby/object:Gem::Dependency
|
|
112
|
-
name:
|
|
153
|
+
name: rack
|
|
113
154
|
requirement: !ruby/object:Gem::Requirement
|
|
114
155
|
requirements:
|
|
115
|
-
- - "
|
|
156
|
+
- - "<"
|
|
116
157
|
- !ruby/object:Gem::Version
|
|
117
|
-
version:
|
|
158
|
+
version: '3'
|
|
118
159
|
type: :development
|
|
119
160
|
prerelease: false
|
|
120
161
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
162
|
requirements:
|
|
122
|
-
- - "
|
|
163
|
+
- - "<"
|
|
123
164
|
- !ruby/object:Gem::Version
|
|
124
|
-
version:
|
|
165
|
+
version: '3'
|
|
125
166
|
- !ruby/object:Gem::Dependency
|
|
126
|
-
name:
|
|
167
|
+
name: rake
|
|
127
168
|
requirement: !ruby/object:Gem::Requirement
|
|
128
169
|
requirements:
|
|
129
170
|
- - ">="
|
|
@@ -137,7 +178,21 @@ dependencies:
|
|
|
137
178
|
- !ruby/object:Gem::Version
|
|
138
179
|
version: '0'
|
|
139
180
|
- !ruby/object:Gem::Dependency
|
|
140
|
-
name:
|
|
181
|
+
name: rspec
|
|
182
|
+
requirement: !ruby/object:Gem::Requirement
|
|
183
|
+
requirements:
|
|
184
|
+
- - ">="
|
|
185
|
+
- !ruby/object:Gem::Version
|
|
186
|
+
version: '0'
|
|
187
|
+
type: :development
|
|
188
|
+
prerelease: false
|
|
189
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
190
|
+
requirements:
|
|
191
|
+
- - ">="
|
|
192
|
+
- !ruby/object:Gem::Version
|
|
193
|
+
version: '0'
|
|
194
|
+
- !ruby/object:Gem::Dependency
|
|
195
|
+
name: rubocop-rspec
|
|
141
196
|
requirement: !ruby/object:Gem::Requirement
|
|
142
197
|
requirements:
|
|
143
198
|
- - ">="
|
|
@@ -151,7 +206,7 @@ dependencies:
|
|
|
151
206
|
- !ruby/object:Gem::Version
|
|
152
207
|
version: '0'
|
|
153
208
|
- !ruby/object:Gem::Dependency
|
|
154
|
-
name:
|
|
209
|
+
name: sinatra
|
|
155
210
|
requirement: !ruby/object:Gem::Requirement
|
|
156
211
|
requirements:
|
|
157
212
|
- - ">="
|
|
@@ -164,7 +219,6 @@ dependencies:
|
|
|
164
219
|
- - ">="
|
|
165
220
|
- !ruby/object:Gem::Version
|
|
166
221
|
version: '0'
|
|
167
|
-
description:
|
|
168
222
|
email:
|
|
169
223
|
- q7w8e9w8q7w8e9@yahoo.co.jp
|
|
170
224
|
executables: []
|
|
@@ -172,95 +226,208 @@ extensions: []
|
|
|
172
226
|
extra_rdoc_files: []
|
|
173
227
|
files:
|
|
174
228
|
- ".rspec"
|
|
229
|
+
- AGENTS.md
|
|
230
|
+
- CLAUDE.md
|
|
231
|
+
- CLAUDE/api_generation.md
|
|
232
|
+
- CLAUDE/ci_expectations.md
|
|
233
|
+
- CLAUDE/gem_release_flow.md
|
|
234
|
+
- CLAUDE/past_upgrade_pr_patterns.md
|
|
235
|
+
- CLAUDE/playwright_upgrade_workflow.md
|
|
236
|
+
- CLAUDE/rspec_debugging.md
|
|
237
|
+
- CLAUDE/unimplemented_examples.md
|
|
175
238
|
- CODE_OF_CONDUCT.md
|
|
239
|
+
- CONTRIBUTING.md
|
|
176
240
|
- Gemfile
|
|
177
241
|
- LICENSE.txt
|
|
178
242
|
- README.md
|
|
179
243
|
- Rakefile
|
|
180
244
|
- bin/console
|
|
181
245
|
- bin/setup
|
|
182
|
-
-
|
|
246
|
+
- documentation/README.md
|
|
247
|
+
- documentation/babel.config.js
|
|
248
|
+
- documentation/docs/api/api_request.md
|
|
249
|
+
- documentation/docs/api/api_request_context.md
|
|
250
|
+
- documentation/docs/api/api_response.md
|
|
251
|
+
- documentation/docs/api/browser.md
|
|
252
|
+
- documentation/docs/api/browser_context.md
|
|
253
|
+
- documentation/docs/api/browser_type.md
|
|
254
|
+
- documentation/docs/api/cdp_session.md
|
|
255
|
+
- documentation/docs/api/clock.md
|
|
256
|
+
- documentation/docs/api/console_message.md
|
|
257
|
+
- documentation/docs/api/dialog.md
|
|
258
|
+
- documentation/docs/api/download.md
|
|
259
|
+
- documentation/docs/api/element_handle.md
|
|
260
|
+
- documentation/docs/api/experimental/_category_.yml
|
|
261
|
+
- documentation/docs/api/experimental/android.md
|
|
262
|
+
- documentation/docs/api/experimental/android_device.md
|
|
263
|
+
- documentation/docs/api/experimental/android_input.md
|
|
264
|
+
- documentation/docs/api/experimental/android_socket.md
|
|
265
|
+
- documentation/docs/api/experimental/android_web_view.md
|
|
266
|
+
- documentation/docs/api/file_chooser.md
|
|
267
|
+
- documentation/docs/api/frame.md
|
|
268
|
+
- documentation/docs/api/frame_locator.md
|
|
269
|
+
- documentation/docs/api/js_handle.md
|
|
270
|
+
- documentation/docs/api/keyboard.md
|
|
271
|
+
- documentation/docs/api/locator.md
|
|
272
|
+
- documentation/docs/api/locator_assertions.md
|
|
273
|
+
- documentation/docs/api/mouse.md
|
|
274
|
+
- documentation/docs/api/page.md
|
|
275
|
+
- documentation/docs/api/page_assertions.md
|
|
276
|
+
- documentation/docs/api/playwright.md
|
|
277
|
+
- documentation/docs/api/request.md
|
|
278
|
+
- documentation/docs/api/response.md
|
|
279
|
+
- documentation/docs/api/route.md
|
|
280
|
+
- documentation/docs/api/selectors.md
|
|
281
|
+
- documentation/docs/api/touchscreen.md
|
|
282
|
+
- documentation/docs/api/tracing.md
|
|
283
|
+
- documentation/docs/api/web_socket.md
|
|
284
|
+
- documentation/docs/api/worker.md
|
|
285
|
+
- documentation/docs/article/api_coverage.mdx
|
|
286
|
+
- documentation/docs/article/getting_started.md
|
|
287
|
+
- documentation/docs/article/guides/_category_.yml
|
|
288
|
+
- documentation/docs/article/guides/download_playwright_driver.md
|
|
289
|
+
- documentation/docs/article/guides/inspector.md
|
|
290
|
+
- documentation/docs/article/guides/launch_browser.md
|
|
291
|
+
- documentation/docs/article/guides/playwright_on_alpine_linux.md
|
|
292
|
+
- documentation/docs/article/guides/rails_integration.md
|
|
293
|
+
- documentation/docs/article/guides/rails_integration_with_null_driver.md
|
|
294
|
+
- documentation/docs/article/guides/recording_video.md
|
|
295
|
+
- documentation/docs/article/guides/rspec_integration.md
|
|
296
|
+
- documentation/docs/article/guides/semi_automation.md
|
|
297
|
+
- documentation/docs/article/guides/use_storage_state.md
|
|
298
|
+
- documentation/docs/include/api_coverage.md
|
|
299
|
+
- documentation/docusaurus.config.js
|
|
300
|
+
- documentation/package.json
|
|
301
|
+
- documentation/sidebars.js
|
|
302
|
+
- documentation/src/components/HomepageFeatures.js
|
|
303
|
+
- documentation/src/components/HomepageFeatures.module.css
|
|
304
|
+
- documentation/src/css/custom.css
|
|
305
|
+
- documentation/src/pages/index.js
|
|
306
|
+
- documentation/src/pages/index.module.css
|
|
307
|
+
- documentation/src/pages/markdown-page.md
|
|
308
|
+
- documentation/static/.nojekyll
|
|
309
|
+
- documentation/static/img/playwright-logo.svg
|
|
310
|
+
- documentation/static/img/playwright-ruby-client.png
|
|
311
|
+
- documentation/static/img/undraw_dropdown_menu.svg
|
|
312
|
+
- documentation/static/img/undraw_web_development.svg
|
|
313
|
+
- documentation/static/img/undraw_windows.svg
|
|
314
|
+
- documentation/yarn.lock
|
|
183
315
|
- lib/playwright.rb
|
|
316
|
+
- lib/playwright/android_input_impl.rb
|
|
317
|
+
- lib/playwright/api_implementation.rb
|
|
318
|
+
- lib/playwright/api_response_impl.rb
|
|
184
319
|
- lib/playwright/channel.rb
|
|
185
320
|
- lib/playwright/channel_owner.rb
|
|
186
321
|
- lib/playwright/channel_owners/android.rb
|
|
187
322
|
- lib/playwright/channel_owners/android_device.rb
|
|
323
|
+
- lib/playwright/channel_owners/api_request_context.rb
|
|
324
|
+
- lib/playwright/channel_owners/artifact.rb
|
|
188
325
|
- lib/playwright/channel_owners/binding_call.rb
|
|
189
326
|
- lib/playwright/channel_owners/browser.rb
|
|
190
327
|
- lib/playwright/channel_owners/browser_context.rb
|
|
191
328
|
- lib/playwright/channel_owners/browser_type.rb
|
|
192
|
-
- lib/playwright/channel_owners/
|
|
193
|
-
- lib/playwright/channel_owners/
|
|
194
|
-
- lib/playwright/channel_owners/console_message.rb
|
|
329
|
+
- lib/playwright/channel_owners/cdp_session.rb
|
|
330
|
+
- lib/playwright/channel_owners/dialog.rb
|
|
195
331
|
- lib/playwright/channel_owners/electron.rb
|
|
196
332
|
- lib/playwright/channel_owners/element_handle.rb
|
|
197
|
-
- lib/playwright/channel_owners/
|
|
333
|
+
- lib/playwright/channel_owners/fetch_request.rb
|
|
198
334
|
- lib/playwright/channel_owners/frame.rb
|
|
199
335
|
- lib/playwright/channel_owners/js_handle.rb
|
|
336
|
+
- lib/playwright/channel_owners/local_utils.rb
|
|
200
337
|
- lib/playwright/channel_owners/page.rb
|
|
201
338
|
- lib/playwright/channel_owners/playwright.rb
|
|
202
339
|
- lib/playwright/channel_owners/request.rb
|
|
203
340
|
- lib/playwright/channel_owners/response.rb
|
|
204
|
-
- lib/playwright/channel_owners/
|
|
205
|
-
- lib/playwright/channel_owners/
|
|
341
|
+
- lib/playwright/channel_owners/route.rb
|
|
342
|
+
- lib/playwright/channel_owners/stream.rb
|
|
343
|
+
- lib/playwright/channel_owners/tracing.rb
|
|
344
|
+
- lib/playwright/channel_owners/web_socket.rb
|
|
345
|
+
- lib/playwright/channel_owners/worker.rb
|
|
346
|
+
- lib/playwright/channel_owners/writable_stream.rb
|
|
347
|
+
- lib/playwright/clock_impl.rb
|
|
206
348
|
- lib/playwright/connection.rb
|
|
349
|
+
- lib/playwright/console_message_impl.rb
|
|
350
|
+
- lib/playwright/download_impl.rb
|
|
207
351
|
- lib/playwright/errors.rb
|
|
208
352
|
- lib/playwright/event_emitter.rb
|
|
353
|
+
- lib/playwright/event_emitter_proxy.rb
|
|
209
354
|
- lib/playwright/events.rb
|
|
355
|
+
- lib/playwright/file_chooser_impl.rb
|
|
356
|
+
- lib/playwright/frame_locator_impl.rb
|
|
357
|
+
- lib/playwright/har_router.rb
|
|
358
|
+
- lib/playwright/http_headers.rb
|
|
210
359
|
- lib/playwright/input_files.rb
|
|
211
|
-
- lib/playwright/input_type.rb
|
|
212
|
-
- lib/playwright/input_types/android_input.rb
|
|
213
|
-
- lib/playwright/input_types/keyboard.rb
|
|
214
|
-
- lib/playwright/input_types/mouse.rb
|
|
215
|
-
- lib/playwright/input_types/touchscreen.rb
|
|
216
360
|
- lib/playwright/javascript.rb
|
|
217
361
|
- lib/playwright/javascript/expression.rb
|
|
218
|
-
- lib/playwright/javascript/
|
|
362
|
+
- lib/playwright/javascript/regex.rb
|
|
363
|
+
- lib/playwright/javascript/source_url.rb
|
|
219
364
|
- lib/playwright/javascript/value_parser.rb
|
|
220
365
|
- lib/playwright/javascript/value_serializer.rb
|
|
366
|
+
- lib/playwright/javascript/visitor_info.rb
|
|
367
|
+
- lib/playwright/keyboard_impl.rb
|
|
368
|
+
- lib/playwright/locator_assertions_impl.rb
|
|
369
|
+
- lib/playwright/locator_impl.rb
|
|
370
|
+
- lib/playwright/locator_utils.rb
|
|
371
|
+
- lib/playwright/mouse_impl.rb
|
|
372
|
+
- lib/playwright/page_assertions_impl.rb
|
|
221
373
|
- lib/playwright/playwright_api.rb
|
|
374
|
+
- lib/playwright/raw_headers.rb
|
|
375
|
+
- lib/playwright/route_handler.rb
|
|
222
376
|
- lib/playwright/select_option_values.rb
|
|
377
|
+
- lib/playwright/selectors_impl.rb
|
|
378
|
+
- lib/playwright/test.rb
|
|
223
379
|
- lib/playwright/timeout_settings.rb
|
|
380
|
+
- lib/playwright/touchscreen_impl.rb
|
|
224
381
|
- lib/playwright/transport.rb
|
|
225
382
|
- lib/playwright/url_matcher.rb
|
|
226
383
|
- lib/playwright/utils.rb
|
|
227
384
|
- lib/playwright/version.rb
|
|
228
|
-
- lib/playwright/
|
|
229
|
-
- lib/
|
|
385
|
+
- lib/playwright/video.rb
|
|
386
|
+
- lib/playwright/waiter.rb
|
|
387
|
+
- lib/playwright/web_socket_client.rb
|
|
388
|
+
- lib/playwright/web_socket_transport.rb
|
|
230
389
|
- lib/playwright_api/android.rb
|
|
231
390
|
- lib/playwright_api/android_device.rb
|
|
232
391
|
- lib/playwright_api/android_input.rb
|
|
233
|
-
- lib/playwright_api/
|
|
392
|
+
- lib/playwright_api/android_socket.rb
|
|
393
|
+
- lib/playwright_api/android_web_view.rb
|
|
394
|
+
- lib/playwright_api/api_request.rb
|
|
395
|
+
- lib/playwright_api/api_request_context.rb
|
|
396
|
+
- lib/playwright_api/api_response.rb
|
|
234
397
|
- lib/playwright_api/browser.rb
|
|
235
398
|
- lib/playwright_api/browser_context.rb
|
|
236
399
|
- lib/playwright_api/browser_type.rb
|
|
237
400
|
- lib/playwright_api/cdp_session.rb
|
|
238
|
-
- lib/playwright_api/
|
|
401
|
+
- lib/playwright_api/clock.rb
|
|
239
402
|
- lib/playwright_api/console_message.rb
|
|
240
403
|
- lib/playwright_api/dialog.rb
|
|
241
404
|
- lib/playwright_api/download.rb
|
|
242
405
|
- lib/playwright_api/element_handle.rb
|
|
243
406
|
- lib/playwright_api/file_chooser.rb
|
|
244
407
|
- lib/playwright_api/frame.rb
|
|
408
|
+
- lib/playwright_api/frame_locator.rb
|
|
245
409
|
- lib/playwright_api/js_handle.rb
|
|
246
410
|
- lib/playwright_api/keyboard.rb
|
|
411
|
+
- lib/playwright_api/locator.rb
|
|
412
|
+
- lib/playwright_api/locator_assertions.rb
|
|
247
413
|
- lib/playwright_api/mouse.rb
|
|
248
414
|
- lib/playwright_api/page.rb
|
|
415
|
+
- lib/playwright_api/page_assertions.rb
|
|
249
416
|
- lib/playwright_api/playwright.rb
|
|
250
417
|
- lib/playwright_api/request.rb
|
|
251
418
|
- lib/playwright_api/response.rb
|
|
252
419
|
- lib/playwright_api/route.rb
|
|
253
420
|
- lib/playwright_api/selectors.rb
|
|
254
421
|
- lib/playwright_api/touchscreen.rb
|
|
255
|
-
- lib/playwright_api/
|
|
422
|
+
- lib/playwright_api/tracing.rb
|
|
256
423
|
- lib/playwright_api/web_socket.rb
|
|
257
424
|
- lib/playwright_api/worker.rb
|
|
258
425
|
- playwright.gemspec
|
|
426
|
+
- sig/playwright.rbs
|
|
259
427
|
homepage: https://github.com/YusukeIwaki/playwright-ruby-client
|
|
260
428
|
licenses:
|
|
261
429
|
- MIT
|
|
262
430
|
metadata: {}
|
|
263
|
-
post_install_message:
|
|
264
431
|
rdoc_options: []
|
|
265
432
|
require_paths:
|
|
266
433
|
- lib
|
|
@@ -268,15 +435,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
268
435
|
requirements:
|
|
269
436
|
- - ">="
|
|
270
437
|
- !ruby/object:Gem::Version
|
|
271
|
-
version: '
|
|
438
|
+
version: '2.4'
|
|
272
439
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
273
440
|
requirements:
|
|
274
441
|
- - ">="
|
|
275
442
|
- !ruby/object:Gem::Version
|
|
276
443
|
version: '0'
|
|
277
444
|
requirements: []
|
|
278
|
-
rubygems_version: 3.
|
|
279
|
-
signing_key:
|
|
445
|
+
rubygems_version: 3.6.9
|
|
280
446
|
specification_version: 4
|
|
281
|
-
summary: The Ruby binding of playwright driver
|
|
447
|
+
summary: The Ruby binding of playwright driver 1.58.0
|
|
282
448
|
test_files: []
|