puppeteer-ruby 0.0.3 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (125) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +30 -0
  3. data/.github/stale.yml +16 -0
  4. data/.rubocop.yml +4 -5
  5. data/README.md +4 -1
  6. data/docs/Puppeteer.html +2020 -0
  7. data/docs/Puppeteer/AsyncAwaitBehavior.html +105 -0
  8. data/docs/Puppeteer/Browser.html +2150 -0
  9. data/docs/Puppeteer/BrowserContext.html +809 -0
  10. data/docs/Puppeteer/BrowserFetcher.html +214 -0
  11. data/docs/Puppeteer/BrowserRunner.html +914 -0
  12. data/docs/Puppeteer/BrowserRunner/BrowserProcess.html +477 -0
  13. data/docs/Puppeteer/CDPSession.html +813 -0
  14. data/docs/Puppeteer/CDPSession/Error.html +124 -0
  15. data/docs/Puppeteer/ConcurrentRubyUtils.html +430 -0
  16. data/docs/Puppeteer/Connection.html +960 -0
  17. data/docs/Puppeteer/Connection/MessageCallback.html +434 -0
  18. data/docs/Puppeteer/Connection/ProtocolError.html +216 -0
  19. data/docs/Puppeteer/Connection/RequestDebugPrinter.html +217 -0
  20. data/docs/Puppeteer/Connection/ResponseDebugPrinter.html +244 -0
  21. data/docs/Puppeteer/ConsoleMessage.html +565 -0
  22. data/docs/Puppeteer/ConsoleMessage/Location.html +433 -0
  23. data/docs/Puppeteer/DOMWorld.html +2219 -0
  24. data/docs/Puppeteer/DOMWorld/DetachedError.html +124 -0
  25. data/docs/Puppeteer/DOMWorld/DocumentEvaluationError.html +124 -0
  26. data/docs/Puppeteer/DebugPrint.html +233 -0
  27. data/docs/Puppeteer/Device.html +470 -0
  28. data/docs/Puppeteer/Devices.html +139 -0
  29. data/docs/Puppeteer/ElementHandle.html +2224 -0
  30. data/docs/Puppeteer/ElementHandle/ElementNotFoundError.html +206 -0
  31. data/docs/Puppeteer/ElementHandle/ElementNotVisibleError.html +206 -0
  32. data/docs/Puppeteer/ElementHandle/Point.html +481 -0
  33. data/docs/Puppeteer/ElementHandle/ScrollIntoViewError.html +124 -0
  34. data/docs/Puppeteer/EmulationManager.html +454 -0
  35. data/docs/Puppeteer/EventCallbackable.html +433 -0
  36. data/docs/Puppeteer/EventCallbackable/EventListeners.html +435 -0
  37. data/docs/Puppeteer/ExecutionContext.html +998 -0
  38. data/docs/Puppeteer/ExecutionContext/EvaluationError.html +124 -0
  39. data/docs/Puppeteer/ExecutionContext/JavaScriptExpression.html +357 -0
  40. data/docs/Puppeteer/ExecutionContext/JavaScriptFunction.html +389 -0
  41. data/docs/Puppeteer/FileChooser.html +455 -0
  42. data/docs/Puppeteer/Frame.html +3677 -0
  43. data/docs/Puppeteer/FrameManager.html +2414 -0
  44. data/docs/Puppeteer/FrameManager/NavigationError.html +124 -0
  45. data/docs/Puppeteer/IfPresent.html +222 -0
  46. data/docs/Puppeteer/JSHandle.html +1352 -0
  47. data/docs/Puppeteer/Keyboard.html +1557 -0
  48. data/docs/Puppeteer/Keyboard/KeyDefinition.html +831 -0
  49. data/docs/Puppeteer/Keyboard/KeyDescription.html +603 -0
  50. data/docs/Puppeteer/Launcher.html +237 -0
  51. data/docs/Puppeteer/Launcher/Base.html +385 -0
  52. data/docs/Puppeteer/Launcher/Base/ExecutablePathNotFound.html +124 -0
  53. data/docs/Puppeteer/Launcher/BrowserOptions.html +441 -0
  54. data/docs/Puppeteer/Launcher/Chrome.html +669 -0
  55. data/docs/Puppeteer/Launcher/Chrome/DefaultArgs.html +382 -0
  56. data/docs/Puppeteer/Launcher/ChromeArgOptions.html +531 -0
  57. data/docs/Puppeteer/Launcher/LaunchOptions.html +893 -0
  58. data/docs/Puppeteer/LifecycleWatcher.html +834 -0
  59. data/docs/Puppeteer/LifecycleWatcher/ExpectedLifecycle.html +363 -0
  60. data/docs/Puppeteer/LifecycleWatcher/FrameDetachedError.html +206 -0
  61. data/docs/Puppeteer/LifecycleWatcher/TerminatedError.html +124 -0
  62. data/docs/Puppeteer/Mouse.html +1105 -0
  63. data/docs/Puppeteer/Mouse/Button.html +136 -0
  64. data/docs/Puppeteer/NetworkManager.html +901 -0
  65. data/docs/Puppeteer/NetworkManager/Credentials.html +385 -0
  66. data/docs/Puppeteer/Page.html +5970 -0
  67. data/docs/Puppeteer/Page/FileChooserTimeoutError.html +206 -0
  68. data/docs/Puppeteer/Page/ScreenshotOptions.html +845 -0
  69. data/docs/Puppeteer/Page/ScriptTag.html +555 -0
  70. data/docs/Puppeteer/Page/StyleTag.html +448 -0
  71. data/docs/Puppeteer/Page/TargetCrashedError.html +124 -0
  72. data/docs/Puppeteer/RemoteObject.html +1016 -0
  73. data/docs/Puppeteer/Target.html +1384 -0
  74. data/docs/Puppeteer/Target/InitializeFailure.html +124 -0
  75. data/docs/Puppeteer/Target/TargetInfo.html +729 -0
  76. data/docs/Puppeteer/TimeoutError.html +135 -0
  77. data/docs/Puppeteer/TimeoutSettings.html +496 -0
  78. data/docs/Puppeteer/TouchScreen.html +464 -0
  79. data/docs/Puppeteer/Viewport.html +757 -0
  80. data/docs/Puppeteer/WaitTask.html +637 -0
  81. data/docs/Puppeteer/WaitTask/TerminatedError.html +124 -0
  82. data/docs/Puppeteer/WaitTask/TimeoutError.html +206 -0
  83. data/docs/Puppeteer/WebSocket.html +673 -0
  84. data/docs/Puppeteer/WebSocket/DriverImpl.html +412 -0
  85. data/docs/Puppeteer/WebSocketTransport.html +600 -0
  86. data/docs/Puppeteer/WebSocktTransportError.html +124 -0
  87. data/docs/_index.html +809 -0
  88. data/docs/class_list.html +51 -0
  89. data/docs/css/common.css +1 -0
  90. data/docs/css/full_list.css +58 -0
  91. data/docs/css/style.css +496 -0
  92. data/docs/file.README.html +123 -0
  93. data/docs/file_list.html +56 -0
  94. data/docs/frames.html +17 -0
  95. data/docs/index.html +123 -0
  96. data/docs/js/app.js +314 -0
  97. data/docs/js/full_list.js +216 -0
  98. data/docs/js/jquery.js +4 -0
  99. data/docs/method_list.html +3979 -0
  100. data/docs/top-level-namespace.html +126 -0
  101. data/lib/puppeteer.rb +16 -8
  102. data/lib/puppeteer/async_await_behavior.rb +6 -0
  103. data/lib/puppeteer/browser.rb +21 -1
  104. data/lib/puppeteer/browser_runner.rb +1 -1
  105. data/lib/puppeteer/cdp_session.rb +33 -11
  106. data/lib/puppeteer/connection.rb +1 -1
  107. data/lib/puppeteer/dom_world.rb +142 -121
  108. data/lib/puppeteer/element_handle.rb +223 -181
  109. data/lib/puppeteer/execution_context.rb +41 -17
  110. data/lib/puppeteer/file_chooser.rb +29 -0
  111. data/lib/puppeteer/frame.rb +23 -15
  112. data/lib/puppeteer/frame_manager.rb +7 -9
  113. data/lib/puppeteer/js_handle.rb +3 -3
  114. data/lib/puppeteer/keyboard.rb +1 -1
  115. data/lib/puppeteer/keyboard/us_keyboard_layout.rb +4 -4
  116. data/lib/puppeteer/launcher.rb +0 -1
  117. data/lib/puppeteer/launcher/chrome.rb +48 -2
  118. data/lib/puppeteer/lifecycle_watcher.rb +9 -4
  119. data/lib/puppeteer/mouse.rb +10 -7
  120. data/lib/puppeteer/page.rb +134 -70
  121. data/lib/puppeteer/remote_object.rb +11 -1
  122. data/lib/puppeteer/version.rb +1 -1
  123. data/lib/puppeteer/wait_task.rb +183 -1
  124. data/puppeteer-ruby.gemspec +4 -1
  125. metadata +143 -4
@@ -0,0 +1,124 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Exception: Puppeteer::WebSocktTransportError
8
+
9
+ &mdash; Documentation by YARD 0.9.24
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="../css/style.css" type="text/css" />
14
+
15
+ <link rel="stylesheet" href="../css/common.css" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ pathId = "Puppeteer::WebSocktTransportError";
19
+ relpath = '../';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="../class_list.html?1"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="../_index.html">Index (W)</a> &raquo;
40
+ <span class='title'><span class='object_link'><a href="../Puppeteer.html" title="Puppeteer (class)">Puppeteer</a></span></span>
41
+ &raquo;
42
+ <span class="title">WebSocktTransportError</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="../class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <div id="content"><h1>Exception: Puppeteer::WebSocktTransportError
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+ <dl>
70
+ <dt>Inherits:</dt>
71
+ <dd>
72
+ <span class="inheritName">StandardError</span>
73
+
74
+ <ul class="fullTree">
75
+ <li>Object</li>
76
+
77
+ <li class="next">StandardError</li>
78
+
79
+ <li class="next">Puppeteer::WebSocktTransportError</li>
80
+
81
+ </ul>
82
+ <a href="#" class="inheritanceTree">show all</a>
83
+
84
+ </dd>
85
+ </dl>
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+ <dl>
98
+ <dt>Defined in:</dt>
99
+ <dd>lib/puppeteer/errors.rb</dd>
100
+ </dl>
101
+
102
+ </div>
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+ </div>
115
+
116
+ <div id="footer">
117
+ Generated on Thu Jun 4 23:54:41 2020 by
118
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
119
+ 0.9.24 (ruby-2.6.3).
120
+ </div>
121
+
122
+ </div>
123
+ </body>
124
+ </html>
@@ -0,0 +1,809 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Documentation by YARD 0.9.24
8
+
9
+ </title>
10
+
11
+ <link rel="stylesheet" href="css/style.css" type="text/css" />
12
+
13
+ <link rel="stylesheet" href="css/common.css" type="text/css" />
14
+
15
+ <script type="text/javascript">
16
+ pathId = null;
17
+ relpath = '';
18
+ </script>
19
+
20
+
21
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
22
+
23
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
24
+
25
+
26
+ </head>
27
+ <body>
28
+ <div class="nav_wrap">
29
+ <iframe id="nav" src="class_list.html?1"></iframe>
30
+ <div id="resizer"></div>
31
+ </div>
32
+
33
+ <div id="main" tabindex="-1">
34
+ <div id="header">
35
+ <div id="menu">
36
+
37
+ </div>
38
+
39
+ <div id="search">
40
+
41
+ <a class="full_list_link" id="class_list_link"
42
+ href="class_list.html">
43
+
44
+ <svg width="24" height="24">
45
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
46
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
47
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
48
+ </svg>
49
+ </a>
50
+
51
+ </div>
52
+ <div class="clear"></div>
53
+ </div>
54
+
55
+ <div id="content"><h1 class="noborder title">Documentation by YARD 0.9.24</h1>
56
+ <div id="listing">
57
+ <h1 class="alphaindex">Alphabetic Index</h1>
58
+
59
+ <h2>File Listing</h2>
60
+ <ul id="files" class="index_inline_list">
61
+
62
+
63
+ <li class="r1"><a href="index.html" title="README">README</a></li>
64
+
65
+
66
+ </ul>
67
+
68
+ <div class="clear"></div>
69
+ <h2>Namespace Listing A-Z</h2>
70
+
71
+
72
+
73
+
74
+ <table>
75
+ <tr>
76
+ <td valign='top' width="33%">
77
+
78
+
79
+ <ul id="alpha_A" class="alpha">
80
+ <li class="letter">A</li>
81
+ <ul>
82
+
83
+ <li>
84
+ <span class='object_link'><a href="Puppeteer/AsyncAwaitBehavior.html" title="Puppeteer::AsyncAwaitBehavior (module)">AsyncAwaitBehavior</a></span>
85
+
86
+ <small>(Puppeteer)</small>
87
+
88
+ </li>
89
+
90
+ </ul>
91
+ </ul>
92
+
93
+
94
+ <ul id="alpha_B" class="alpha">
95
+ <li class="letter">B</li>
96
+ <ul>
97
+
98
+ <li>
99
+ <span class='object_link'><a href="Puppeteer/Launcher/Base.html" title="Puppeteer::Launcher::Base (class)">Base</a></span>
100
+
101
+ <small>(Puppeteer::Launcher)</small>
102
+
103
+ </li>
104
+
105
+ <li>
106
+ <span class='object_link'><a href="Puppeteer/Browser.html" title="Puppeteer::Browser (class)">Browser</a></span>
107
+
108
+ <small>(Puppeteer)</small>
109
+
110
+ </li>
111
+
112
+ <li>
113
+ <span class='object_link'><a href="Puppeteer/BrowserContext.html" title="Puppeteer::BrowserContext (class)">BrowserContext</a></span>
114
+
115
+ <small>(Puppeteer)</small>
116
+
117
+ </li>
118
+
119
+ <li>
120
+ <span class='object_link'><a href="Puppeteer/BrowserFetcher.html" title="Puppeteer::BrowserFetcher (class)">BrowserFetcher</a></span>
121
+
122
+ <small>(Puppeteer)</small>
123
+
124
+ </li>
125
+
126
+ <li>
127
+ <span class='object_link'><a href="Puppeteer/Launcher/BrowserOptions.html" title="Puppeteer::Launcher::BrowserOptions (class)">BrowserOptions</a></span>
128
+
129
+ <small>(Puppeteer::Launcher)</small>
130
+
131
+ </li>
132
+
133
+ <li>
134
+ <span class='object_link'><a href="Puppeteer/BrowserRunner/BrowserProcess.html" title="Puppeteer::BrowserRunner::BrowserProcess (class)">BrowserProcess</a></span>
135
+
136
+ <small>(Puppeteer::BrowserRunner)</small>
137
+
138
+ </li>
139
+
140
+ <li>
141
+ <span class='object_link'><a href="Puppeteer/BrowserRunner.html" title="Puppeteer::BrowserRunner (class)">BrowserRunner</a></span>
142
+
143
+ <small>(Puppeteer)</small>
144
+
145
+ </li>
146
+
147
+ <li>
148
+ <span class='object_link'><a href="Puppeteer/Mouse/Button.html" title="Puppeteer::Mouse::Button (module)">Button</a></span>
149
+
150
+ <small>(Puppeteer::Mouse)</small>
151
+
152
+ </li>
153
+
154
+ </ul>
155
+ </ul>
156
+
157
+
158
+ <ul id="alpha_C" class="alpha">
159
+ <li class="letter">C</li>
160
+ <ul>
161
+
162
+ <li>
163
+ <span class='object_link'><a href="Puppeteer/CDPSession.html" title="Puppeteer::CDPSession (class)">CDPSession</a></span>
164
+
165
+ <small>(Puppeteer)</small>
166
+
167
+ </li>
168
+
169
+ <li>
170
+ <span class='object_link'><a href="Puppeteer/Launcher/Chrome.html" title="Puppeteer::Launcher::Chrome (class)">Chrome</a></span>
171
+
172
+ <small>(Puppeteer::Launcher)</small>
173
+
174
+ </li>
175
+
176
+ <li>
177
+ <span class='object_link'><a href="Puppeteer/Launcher/ChromeArgOptions.html" title="Puppeteer::Launcher::ChromeArgOptions (class)">ChromeArgOptions</a></span>
178
+
179
+ <small>(Puppeteer::Launcher)</small>
180
+
181
+ </li>
182
+
183
+ <li>
184
+ <span class='object_link'><a href="Puppeteer/ConcurrentRubyUtils.html" title="Puppeteer::ConcurrentRubyUtils (module)">ConcurrentRubyUtils</a></span>
185
+
186
+ <small>(Puppeteer)</small>
187
+
188
+ </li>
189
+
190
+ <li>
191
+ <span class='object_link'><a href="Puppeteer/Connection.html" title="Puppeteer::Connection (class)">Connection</a></span>
192
+
193
+ <small>(Puppeteer)</small>
194
+
195
+ </li>
196
+
197
+ <li>
198
+ <span class='object_link'><a href="Puppeteer/ConsoleMessage.html" title="Puppeteer::ConsoleMessage (class)">ConsoleMessage</a></span>
199
+
200
+ <small>(Puppeteer)</small>
201
+
202
+ </li>
203
+
204
+ <li>
205
+ <span class='object_link'><a href="Puppeteer/NetworkManager/Credentials.html" title="Puppeteer::NetworkManager::Credentials (class)">Credentials</a></span>
206
+
207
+ <small>(Puppeteer::NetworkManager)</small>
208
+
209
+ </li>
210
+
211
+ </ul>
212
+ </ul>
213
+
214
+
215
+ <ul id="alpha_D" class="alpha">
216
+ <li class="letter">D</li>
217
+ <ul>
218
+
219
+ <li>
220
+ <span class='object_link'><a href="Puppeteer/DOMWorld.html" title="Puppeteer::DOMWorld (class)">DOMWorld</a></span>
221
+
222
+ <small>(Puppeteer)</small>
223
+
224
+ </li>
225
+
226
+ <li>
227
+ <span class='object_link'><a href="Puppeteer/DebugPrint.html" title="Puppeteer::DebugPrint (module)">DebugPrint</a></span>
228
+
229
+ <small>(Puppeteer)</small>
230
+
231
+ </li>
232
+
233
+ <li>
234
+ <span class='object_link'><a href="Puppeteer/Launcher/Chrome/DefaultArgs.html" title="Puppeteer::Launcher::Chrome::DefaultArgs (class)">DefaultArgs</a></span>
235
+
236
+ <small>(Puppeteer::Launcher::Chrome)</small>
237
+
238
+ </li>
239
+
240
+ <li>
241
+ <span class='object_link'><a href="Puppeteer/DOMWorld/DetachedError.html" title="Puppeteer::DOMWorld::DetachedError (class)">DetachedError</a></span>
242
+
243
+ <small>(Puppeteer::DOMWorld)</small>
244
+
245
+ </li>
246
+
247
+ <li>
248
+ <span class='object_link'><a href="Puppeteer/Device.html" title="Puppeteer::Device (class)">Device</a></span>
249
+
250
+ <small>(Puppeteer)</small>
251
+
252
+ </li>
253
+
254
+ <li>
255
+ <span class='object_link'><a href="Puppeteer/Devices.html" title="Puppeteer::Devices (class)">Devices</a></span>
256
+
257
+ <small>(Puppeteer)</small>
258
+
259
+ </li>
260
+
261
+ <li>
262
+ <span class='object_link'><a href="Puppeteer/DOMWorld/DocumentEvaluationError.html" title="Puppeteer::DOMWorld::DocumentEvaluationError (class)">DocumentEvaluationError</a></span>
263
+
264
+ <small>(Puppeteer::DOMWorld)</small>
265
+
266
+ </li>
267
+
268
+ <li>
269
+ <span class='object_link'><a href="Puppeteer/WebSocket/DriverImpl.html" title="Puppeteer::WebSocket::DriverImpl (class)">DriverImpl</a></span>
270
+
271
+ <small>(Puppeteer::WebSocket)</small>
272
+
273
+ </li>
274
+
275
+ </ul>
276
+ </ul>
277
+
278
+
279
+ <ul id="alpha_E" class="alpha">
280
+ <li class="letter">E</li>
281
+ <ul>
282
+
283
+ <li>
284
+ <span class='object_link'><a href="Puppeteer/ElementHandle.html" title="Puppeteer::ElementHandle (class)">ElementHandle</a></span>
285
+
286
+ <small>(Puppeteer)</small>
287
+
288
+ </li>
289
+
290
+ <li>
291
+ <span class='object_link'><a href="Puppeteer/ElementHandle/ElementNotFoundError.html" title="Puppeteer::ElementHandle::ElementNotFoundError (class)">ElementNotFoundError</a></span>
292
+
293
+ <small>(Puppeteer::ElementHandle)</small>
294
+
295
+ </li>
296
+
297
+ <li>
298
+ <span class='object_link'><a href="Puppeteer/ElementHandle/ElementNotVisibleError.html" title="Puppeteer::ElementHandle::ElementNotVisibleError (class)">ElementNotVisibleError</a></span>
299
+
300
+ <small>(Puppeteer::ElementHandle)</small>
301
+
302
+ </li>
303
+
304
+ <li>
305
+ <span class='object_link'><a href="Puppeteer/EmulationManager.html" title="Puppeteer::EmulationManager (class)">EmulationManager</a></span>
306
+
307
+ <small>(Puppeteer)</small>
308
+
309
+ </li>
310
+
311
+ <li>
312
+ <span class='object_link'><a href="Puppeteer/CDPSession/Error.html" title="Puppeteer::CDPSession::Error (class)">Error</a></span>
313
+
314
+ <small>(Puppeteer::CDPSession)</small>
315
+
316
+ </li>
317
+
318
+ <li>
319
+ <span class='object_link'><a href="Puppeteer/ExecutionContext/EvaluationError.html" title="Puppeteer::ExecutionContext::EvaluationError (class)">EvaluationError</a></span>
320
+
321
+ <small>(Puppeteer::ExecutionContext)</small>
322
+
323
+ </li>
324
+
325
+ <li>
326
+ <span class='object_link'><a href="Puppeteer/EventCallbackable.html" title="Puppeteer::EventCallbackable (module)">EventCallbackable</a></span>
327
+
328
+ <small>(Puppeteer)</small>
329
+
330
+ </li>
331
+
332
+ <li>
333
+ <span class='object_link'><a href="Puppeteer/EventCallbackable/EventListeners.html" title="Puppeteer::EventCallbackable::EventListeners (class)">EventListeners</a></span>
334
+
335
+ <small>(Puppeteer::EventCallbackable)</small>
336
+
337
+ </li>
338
+
339
+ <li>
340
+ <span class='object_link'><a href="Puppeteer/Launcher/Base/ExecutablePathNotFound.html" title="Puppeteer::Launcher::Base::ExecutablePathNotFound (class)">ExecutablePathNotFound</a></span>
341
+
342
+ <small>(Puppeteer::Launcher::Base)</small>
343
+
344
+ </li>
345
+
346
+ <li>
347
+ <span class='object_link'><a href="Puppeteer/ExecutionContext.html" title="Puppeteer::ExecutionContext (class)">ExecutionContext</a></span>
348
+
349
+ <small>(Puppeteer)</small>
350
+
351
+ </li>
352
+
353
+ <li>
354
+ <span class='object_link'><a href="Puppeteer/LifecycleWatcher/ExpectedLifecycle.html" title="Puppeteer::LifecycleWatcher::ExpectedLifecycle (class)">ExpectedLifecycle</a></span>
355
+
356
+ <small>(Puppeteer::LifecycleWatcher)</small>
357
+
358
+ </li>
359
+
360
+ </ul>
361
+ </ul>
362
+
363
+
364
+ <ul id="alpha_F" class="alpha">
365
+ <li class="letter">F</li>
366
+ <ul>
367
+
368
+ <li>
369
+ <span class='object_link'><a href="Puppeteer/FileChooser.html" title="Puppeteer::FileChooser (class)">FileChooser</a></span>
370
+
371
+ <small>(Puppeteer)</small>
372
+
373
+ </li>
374
+
375
+ <li>
376
+ <span class='object_link'><a href="Puppeteer/Page/FileChooserTimeoutError.html" title="Puppeteer::Page::FileChooserTimeoutError (class)">FileChooserTimeoutError</a></span>
377
+
378
+ <small>(Puppeteer::Page)</small>
379
+
380
+ </li>
381
+
382
+ <li>
383
+ <span class='object_link'><a href="Puppeteer/Frame.html" title="Puppeteer::Frame (class)">Frame</a></span>
384
+
385
+ <small>(Puppeteer)</small>
386
+
387
+ </li>
388
+
389
+ <li>
390
+ <span class='object_link'><a href="Puppeteer/LifecycleWatcher/FrameDetachedError.html" title="Puppeteer::LifecycleWatcher::FrameDetachedError (class)">FrameDetachedError</a></span>
391
+
392
+ <small>(Puppeteer::LifecycleWatcher)</small>
393
+
394
+ </li>
395
+
396
+ <li>
397
+ <span class='object_link'><a href="Puppeteer/FrameManager.html" title="Puppeteer::FrameManager (class)">FrameManager</a></span>
398
+
399
+ <small>(Puppeteer)</small>
400
+
401
+ </li>
402
+
403
+ </ul>
404
+ </ul>
405
+
406
+
407
+ <ul id="alpha_I" class="alpha">
408
+ <li class="letter">I</li>
409
+ <ul>
410
+
411
+ <li>
412
+ <span class='object_link'><a href="Puppeteer/IfPresent.html" title="Puppeteer::IfPresent (module)">IfPresent</a></span>
413
+
414
+ <small>(Puppeteer)</small>
415
+
416
+ </li>
417
+
418
+ <li>
419
+ <span class='object_link'><a href="Puppeteer/Target/InitializeFailure.html" title="Puppeteer::Target::InitializeFailure (class)">InitializeFailure</a></span>
420
+
421
+ <small>(Puppeteer::Target)</small>
422
+
423
+ </li>
424
+
425
+ </ul>
426
+ </ul>
427
+
428
+
429
+ </td><td valign='top' width="33%">
430
+
431
+
432
+ <ul id="alpha_J" class="alpha">
433
+ <li class="letter">J</li>
434
+ <ul>
435
+
436
+ <li>
437
+ <span class='object_link'><a href="Puppeteer/JSHandle.html" title="Puppeteer::JSHandle (class)">JSHandle</a></span>
438
+
439
+ <small>(Puppeteer)</small>
440
+
441
+ </li>
442
+
443
+ <li>
444
+ <span class='object_link'><a href="Puppeteer/ExecutionContext/JavaScriptExpression.html" title="Puppeteer::ExecutionContext::JavaScriptExpression (class)">JavaScriptExpression</a></span>
445
+
446
+ <small>(Puppeteer::ExecutionContext)</small>
447
+
448
+ </li>
449
+
450
+ <li>
451
+ <span class='object_link'><a href="Puppeteer/ExecutionContext/JavaScriptFunction.html" title="Puppeteer::ExecutionContext::JavaScriptFunction (class)">JavaScriptFunction</a></span>
452
+
453
+ <small>(Puppeteer::ExecutionContext)</small>
454
+
455
+ </li>
456
+
457
+ </ul>
458
+ </ul>
459
+
460
+
461
+ <ul id="alpha_K" class="alpha">
462
+ <li class="letter">K</li>
463
+ <ul>
464
+
465
+ <li>
466
+ <span class='object_link'><a href="Puppeteer/Keyboard/KeyDefinition.html" title="Puppeteer::Keyboard::KeyDefinition (class)">KeyDefinition</a></span>
467
+
468
+ <small>(Puppeteer::Keyboard)</small>
469
+
470
+ </li>
471
+
472
+ <li>
473
+ <span class='object_link'><a href="Puppeteer/Keyboard/KeyDescription.html" title="Puppeteer::Keyboard::KeyDescription (class)">KeyDescription</a></span>
474
+
475
+ <small>(Puppeteer::Keyboard)</small>
476
+
477
+ </li>
478
+
479
+ <li>
480
+ <span class='object_link'><a href="Puppeteer/Keyboard.html" title="Puppeteer::Keyboard (class)">Keyboard</a></span>
481
+
482
+ <small>(Puppeteer)</small>
483
+
484
+ </li>
485
+
486
+ </ul>
487
+ </ul>
488
+
489
+
490
+ <ul id="alpha_L" class="alpha">
491
+ <li class="letter">L</li>
492
+ <ul>
493
+
494
+ <li>
495
+ <span class='object_link'><a href="Puppeteer/Launcher/LaunchOptions.html" title="Puppeteer::Launcher::LaunchOptions (class)">LaunchOptions</a></span>
496
+
497
+ <small>(Puppeteer::Launcher)</small>
498
+
499
+ </li>
500
+
501
+ <li>
502
+ <span class='object_link'><a href="Puppeteer/Launcher.html" title="Puppeteer::Launcher (module)">Launcher</a></span>
503
+
504
+ <small>(Puppeteer)</small>
505
+
506
+ </li>
507
+
508
+ <li>
509
+ <span class='object_link'><a href="Puppeteer/LifecycleWatcher.html" title="Puppeteer::LifecycleWatcher (class)">LifecycleWatcher</a></span>
510
+
511
+ <small>(Puppeteer)</small>
512
+
513
+ </li>
514
+
515
+ <li>
516
+ <span class='object_link'><a href="Puppeteer/ConsoleMessage/Location.html" title="Puppeteer::ConsoleMessage::Location (class)">Location</a></span>
517
+
518
+ <small>(Puppeteer::ConsoleMessage)</small>
519
+
520
+ </li>
521
+
522
+ </ul>
523
+ </ul>
524
+
525
+
526
+ <ul id="alpha_M" class="alpha">
527
+ <li class="letter">M</li>
528
+ <ul>
529
+
530
+ <li>
531
+ <span class='object_link'><a href="Puppeteer/Connection/MessageCallback.html" title="Puppeteer::Connection::MessageCallback (class)">MessageCallback</a></span>
532
+
533
+ <small>(Puppeteer::Connection)</small>
534
+
535
+ </li>
536
+
537
+ <li>
538
+ <span class='object_link'><a href="Puppeteer/Mouse.html" title="Puppeteer::Mouse (class)">Mouse</a></span>
539
+
540
+ <small>(Puppeteer)</small>
541
+
542
+ </li>
543
+
544
+ </ul>
545
+ </ul>
546
+
547
+
548
+ <ul id="alpha_N" class="alpha">
549
+ <li class="letter">N</li>
550
+ <ul>
551
+
552
+ <li>
553
+ <span class='object_link'><a href="Puppeteer/FrameManager/NavigationError.html" title="Puppeteer::FrameManager::NavigationError (class)">NavigationError</a></span>
554
+
555
+ <small>(Puppeteer::FrameManager)</small>
556
+
557
+ </li>
558
+
559
+ <li>
560
+ <span class='object_link'><a href="Puppeteer/NetworkManager.html" title="Puppeteer::NetworkManager (class)">NetworkManager</a></span>
561
+
562
+ <small>(Puppeteer)</small>
563
+
564
+ </li>
565
+
566
+ </ul>
567
+ </ul>
568
+
569
+
570
+ <ul id="alpha_P" class="alpha">
571
+ <li class="letter">P</li>
572
+ <ul>
573
+
574
+ <li>
575
+ <span class='object_link'><a href="Puppeteer/Page.html" title="Puppeteer::Page (class)">Page</a></span>
576
+
577
+ <small>(Puppeteer)</small>
578
+
579
+ </li>
580
+
581
+ <li>
582
+ <span class='object_link'><a href="Puppeteer/ElementHandle/Point.html" title="Puppeteer::ElementHandle::Point (class)">Point</a></span>
583
+
584
+ <small>(Puppeteer::ElementHandle)</small>
585
+
586
+ </li>
587
+
588
+ <li>
589
+ <span class='object_link'><a href="Puppeteer/Connection/ProtocolError.html" title="Puppeteer::Connection::ProtocolError (class)">ProtocolError</a></span>
590
+
591
+ <small>(Puppeteer::Connection)</small>
592
+
593
+ </li>
594
+
595
+ <li>
596
+ <span class='object_link'><a href="Puppeteer.html" title="Puppeteer (class)">Puppeteer</a></span>
597
+
598
+ </li>
599
+
600
+ </ul>
601
+ </ul>
602
+
603
+
604
+ <ul id="alpha_R" class="alpha">
605
+ <li class="letter">R</li>
606
+ <ul>
607
+
608
+ <li>
609
+ <span class='object_link'><a href="Puppeteer/RemoteObject.html" title="Puppeteer::RemoteObject (class)">RemoteObject</a></span>
610
+
611
+ <small>(Puppeteer)</small>
612
+
613
+ </li>
614
+
615
+ <li>
616
+ <span class='object_link'><a href="Puppeteer/Connection/RequestDebugPrinter.html" title="Puppeteer::Connection::RequestDebugPrinter (class)">RequestDebugPrinter</a></span>
617
+
618
+ <small>(Puppeteer::Connection)</small>
619
+
620
+ </li>
621
+
622
+ <li>
623
+ <span class='object_link'><a href="Puppeteer/Connection/ResponseDebugPrinter.html" title="Puppeteer::Connection::ResponseDebugPrinter (class)">ResponseDebugPrinter</a></span>
624
+
625
+ <small>(Puppeteer::Connection)</small>
626
+
627
+ </li>
628
+
629
+ </ul>
630
+ </ul>
631
+
632
+
633
+ <ul id="alpha_S" class="alpha">
634
+ <li class="letter">S</li>
635
+ <ul>
636
+
637
+ <li>
638
+ <span class='object_link'><a href="Puppeteer/Page/ScreenshotOptions.html" title="Puppeteer::Page::ScreenshotOptions (class)">ScreenshotOptions</a></span>
639
+
640
+ <small>(Puppeteer::Page)</small>
641
+
642
+ </li>
643
+
644
+ <li>
645
+ <span class='object_link'><a href="Puppeteer/Page/ScriptTag.html" title="Puppeteer::Page::ScriptTag (class)">ScriptTag</a></span>
646
+
647
+ <small>(Puppeteer::Page)</small>
648
+
649
+ </li>
650
+
651
+ <li>
652
+ <span class='object_link'><a href="Puppeteer/ElementHandle/ScrollIntoViewError.html" title="Puppeteer::ElementHandle::ScrollIntoViewError (class)">ScrollIntoViewError</a></span>
653
+
654
+ <small>(Puppeteer::ElementHandle)</small>
655
+
656
+ </li>
657
+
658
+ <li>
659
+ <span class='object_link'><a href="Puppeteer/Page/StyleTag.html" title="Puppeteer::Page::StyleTag (class)">StyleTag</a></span>
660
+
661
+ <small>(Puppeteer::Page)</small>
662
+
663
+ </li>
664
+
665
+ </ul>
666
+ </ul>
667
+
668
+
669
+ </td><td valign='top' width="33%">
670
+
671
+
672
+ <ul id="alpha_T" class="alpha">
673
+ <li class="letter">T</li>
674
+ <ul>
675
+
676
+ <li>
677
+ <span class='object_link'><a href="Puppeteer/Target.html" title="Puppeteer::Target (class)">Target</a></span>
678
+
679
+ <small>(Puppeteer)</small>
680
+
681
+ </li>
682
+
683
+ <li>
684
+ <span class='object_link'><a href="Puppeteer/Page/TargetCrashedError.html" title="Puppeteer::Page::TargetCrashedError (class)">TargetCrashedError</a></span>
685
+
686
+ <small>(Puppeteer::Page)</small>
687
+
688
+ </li>
689
+
690
+ <li>
691
+ <span class='object_link'><a href="Puppeteer/Target/TargetInfo.html" title="Puppeteer::Target::TargetInfo (class)">TargetInfo</a></span>
692
+
693
+ <small>(Puppeteer::Target)</small>
694
+
695
+ </li>
696
+
697
+ <li>
698
+ <span class='object_link'><a href="Puppeteer/LifecycleWatcher/TerminatedError.html" title="Puppeteer::LifecycleWatcher::TerminatedError (class)">TerminatedError</a></span>
699
+
700
+ <small>(Puppeteer::LifecycleWatcher)</small>
701
+
702
+ </li>
703
+
704
+ <li>
705
+ <span class='object_link'><a href="Puppeteer/WaitTask/TerminatedError.html" title="Puppeteer::WaitTask::TerminatedError (class)">TerminatedError</a></span>
706
+
707
+ <small>(Puppeteer::WaitTask)</small>
708
+
709
+ </li>
710
+
711
+ <li>
712
+ <span class='object_link'><a href="Puppeteer/WaitTask/TimeoutError.html" title="Puppeteer::WaitTask::TimeoutError (class)">TimeoutError</a></span>
713
+
714
+ <small>(Puppeteer::WaitTask)</small>
715
+
716
+ </li>
717
+
718
+ <li>
719
+ <span class='object_link'><a href="Puppeteer/TimeoutError.html" title="Puppeteer::TimeoutError (class)">TimeoutError</a></span>
720
+
721
+ <small>(Puppeteer)</small>
722
+
723
+ </li>
724
+
725
+ <li>
726
+ <span class='object_link'><a href="Puppeteer/TimeoutSettings.html" title="Puppeteer::TimeoutSettings (class)">TimeoutSettings</a></span>
727
+
728
+ <small>(Puppeteer)</small>
729
+
730
+ </li>
731
+
732
+ <li>
733
+ <span class='object_link'><a href="Puppeteer/TouchScreen.html" title="Puppeteer::TouchScreen (class)">TouchScreen</a></span>
734
+
735
+ <small>(Puppeteer)</small>
736
+
737
+ </li>
738
+
739
+ </ul>
740
+ </ul>
741
+
742
+
743
+ <ul id="alpha_V" class="alpha">
744
+ <li class="letter">V</li>
745
+ <ul>
746
+
747
+ <li>
748
+ <span class='object_link'><a href="Puppeteer/Viewport.html" title="Puppeteer::Viewport (class)">Viewport</a></span>
749
+
750
+ <small>(Puppeteer)</small>
751
+
752
+ </li>
753
+
754
+ </ul>
755
+ </ul>
756
+
757
+
758
+ <ul id="alpha_W" class="alpha">
759
+ <li class="letter">W</li>
760
+ <ul>
761
+
762
+ <li>
763
+ <span class='object_link'><a href="Puppeteer/WaitTask.html" title="Puppeteer::WaitTask (class)">WaitTask</a></span>
764
+
765
+ <small>(Puppeteer)</small>
766
+
767
+ </li>
768
+
769
+ <li>
770
+ <span class='object_link'><a href="Puppeteer/WebSocket.html" title="Puppeteer::WebSocket (class)">WebSocket</a></span>
771
+
772
+ <small>(Puppeteer)</small>
773
+
774
+ </li>
775
+
776
+ <li>
777
+ <span class='object_link'><a href="Puppeteer/WebSocketTransport.html" title="Puppeteer::WebSocketTransport (class)">WebSocketTransport</a></span>
778
+
779
+ <small>(Puppeteer)</small>
780
+
781
+ </li>
782
+
783
+ <li>
784
+ <span class='object_link'><a href="Puppeteer/WebSocktTransportError.html" title="Puppeteer::WebSocktTransportError (class)">WebSocktTransportError</a></span>
785
+
786
+ <small>(Puppeteer)</small>
787
+
788
+ </li>
789
+
790
+ </ul>
791
+ </ul>
792
+
793
+ </td>
794
+ </tr>
795
+ </table>
796
+
797
+ </div>
798
+
799
+ </div>
800
+
801
+ <div id="footer">
802
+ Generated on Thu Jun 4 23:54:40 2020 by
803
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
804
+ 0.9.24 (ruby-2.6.3).
805
+ </div>
806
+
807
+ </div>
808
+ </body>
809
+ </html>