forked from YusukeIwaki/playwright-ruby-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaywright.rb
220 lines (193 loc) · 5.72 KB
/
playwright.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# frozen_string_literal: true
# namespace declaration
module Playwright; end
# concurrent-ruby
require 'concurrent'
# modules & constants
require 'playwright/errors'
require 'playwright/events'
require 'playwright/event_emitter'
require 'playwright/event_emitter_proxy'
require 'playwright/javascript'
require 'playwright/utils'
require 'playwright/api_implementation'
require 'playwright/channel'
require 'playwright/channel_owner'
require 'playwright/http_headers'
require 'playwright/input_files'
require 'playwright/connection'
require 'playwright/har_router'
require 'playwright/raw_headers'
require 'playwright/route_handler'
require 'playwright/select_option_values'
require 'playwright/timeout_settings'
require 'playwright/transport'
require 'playwright/url_matcher'
require 'playwright/version'
require 'playwright/video'
require 'playwright/waiter'
require 'playwright/playwright_api'
# load generated files
Dir[File.join(__dir__, 'playwright_api', '*.rb')].each { |f| require f }
module Playwright
class Execution
def initialize(connection, playwright, browser = nil)
@connection = connection
@playwright = playwright
@browser = browser
end
def stop
@browser&.close
@connection.stop
end
attr_reader :playwright, :browser
end
class AndroidExecution
def initialize(connection, playwright, device = nil)
@connection = connection
@playwright = playwright
@device = device
end
def stop
@device&.close
@connection.stop
end
attr_reader :playwright, :device
end
# Recommended to call this method with block.
#
# Playwright.create(...) do |playwright|
# browser = playwright.chromium.launch
# ...
# end
#
# When we use this method without block, an instance of Playwright::Execution is returned
# and we *must* call execution.stop on the end.
# The instance of playwright is available by calling execution.playwright
module_function def create(playwright_cli_executable_path:, &block)
transport = Transport.new(playwright_cli_executable_path: playwright_cli_executable_path)
connection = Connection.new(transport)
connection.async_run
execution =
begin
playwright = connection.initialize_playwright
Execution.new(connection, PlaywrightApi.wrap(playwright))
rescue
connection.stop
raise
end
if block
begin
block.call(execution.playwright)
ensure
execution.stop
end
else
execution
end
end
# Connects to Playwright server, launched by `npx playwright run-server` via WebSocket transport.
#
# Playwright.connect_to_playwright_server(...) do |playwright|
# browser = playwright.chromium.launch
# ...
# end
#
# @experimental
module_function def connect_to_playwright_server(ws_endpoint, &block)
require 'playwright/web_socket_client'
require 'playwright/web_socket_transport'
transport = WebSocketTransport.new(ws_endpoint: ws_endpoint)
connection = Connection.new(transport)
connection.async_run
execution =
begin
playwright = connection.initialize_playwright
Execution.new(connection, PlaywrightApi.wrap(playwright))
rescue
connection.stop
raise
end
if block
begin
block.call(execution.playwright)
ensure
execution.stop
end
else
execution
end
end
# Connects to Playwright server, launched by `npx playwright launch-server chromium` or `playwright.chromium.launchServer()`
#
# Playwright.connect_to_browser_server('ws://....') do |browser|
# page = browser.new_page
# ...
# end
#
# @experimental
module_function def connect_to_browser_server(ws_endpoint, &block)
require 'playwright/web_socket_client'
require 'playwright/web_socket_transport'
transport = WebSocketTransport.new(ws_endpoint: ws_endpoint)
connection = Connection.new(transport)
connection.mark_as_remote
connection.async_run
execution =
begin
playwright = connection.initialize_playwright
browser = playwright.send(:pre_launched_browser)
browser.send(:update_browser_type, playwright.chromium) # Just workaround for nil reference error.
browser.browser_type.send(:did_launch_browser, browser)
browser.send(:should_close_connection_on_close!)
Execution.new(connection, PlaywrightApi.wrap(playwright), PlaywrightApi.wrap(browser))
rescue
connection.stop
raise
end
if block
begin
block.call(execution.browser)
ensure
execution.stop
end
else
execution
end
end
# Connects to Playwright server, launched by `npx playwright launch-server chromium` or `playwright.chromium.launchServer()`
#
# Playwright.connect_to_browser_server('ws://....') do |browser|
# page = browser.new_page
# ...
# end
#
# @experimental
module_function def connect_to_android_server(ws_endpoint, &block)
require 'playwright/web_socket_client'
require 'playwright/web_socket_transport'
transport = WebSocketTransport.new(ws_endpoint: ws_endpoint)
connection = Connection.new(transport)
connection.mark_as_remote
connection.async_run
execution =
begin
playwright = connection.initialize_playwright
android_device = playwright.send(:pre_connected_android_device)
android_device.should_close_connection_on_close!
AndroidExecution.new(connection, PlaywrightApi.wrap(playwright), PlaywrightApi.wrap(android_device))
rescue
connection.stop
raise
end
if block
begin
block.call(execution.device)
ensure
execution.stop
end
else
execution
end
end
end