puppeteer-ruby 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +30 -0
  3. data/.rubocop.yml +4 -5
  4. data/docs/Puppeteer.html +2010 -0
  5. data/docs/Puppeteer/AsyncAwaitBehavior.html +105 -0
  6. data/docs/Puppeteer/Browser.html +2150 -0
  7. data/docs/Puppeteer/BrowserContext.html +809 -0
  8. data/docs/Puppeteer/BrowserFetcher.html +214 -0
  9. data/docs/Puppeteer/BrowserRunner.html +914 -0
  10. data/docs/Puppeteer/BrowserRunner/BrowserProcess.html +477 -0
  11. data/docs/Puppeteer/CDPSession.html +784 -0
  12. data/docs/Puppeteer/CDPSession/Error.html +124 -0
  13. data/docs/Puppeteer/ConcurrentRubyUtils.html +430 -0
  14. data/docs/Puppeteer/Connection.html +960 -0
  15. data/docs/Puppeteer/Connection/MessageCallback.html +434 -0
  16. data/docs/Puppeteer/Connection/ProtocolError.html +216 -0
  17. data/docs/Puppeteer/Connection/RequestDebugPrinter.html +217 -0
  18. data/docs/Puppeteer/Connection/ResponseDebugPrinter.html +244 -0
  19. data/docs/Puppeteer/ConsoleMessage.html +565 -0
  20. data/docs/Puppeteer/ConsoleMessage/Location.html +433 -0
  21. data/docs/Puppeteer/DOMWorld.html +1580 -0
  22. data/docs/Puppeteer/DOMWorld/DetachedError.html +124 -0
  23. data/docs/Puppeteer/DOMWorld/DocumentEvaluationError.html +124 -0
  24. data/docs/Puppeteer/DebugPrint.html +233 -0
  25. data/docs/Puppeteer/Device.html +470 -0
  26. data/docs/Puppeteer/Devices.html +139 -0
  27. data/docs/Puppeteer/ElementHandle.html +1603 -0
  28. data/docs/Puppeteer/ElementHandle/ElementNotFoundError.html +206 -0
  29. data/docs/Puppeteer/ElementHandle/ElementNotVisibleError.html +206 -0
  30. data/docs/Puppeteer/ElementHandle/Point.html +481 -0
  31. data/docs/Puppeteer/ElementHandle/ScrollIntoViewError.html +124 -0
  32. data/docs/Puppeteer/EmulationManager.html +454 -0
  33. data/docs/Puppeteer/EventCallbackable.html +433 -0
  34. data/docs/Puppeteer/EventCallbackable/EventListeners.html +435 -0
  35. data/docs/Puppeteer/ExecutionContext.html +772 -0
  36. data/docs/Puppeteer/ExecutionContext/EvaluationError.html +124 -0
  37. data/docs/Puppeteer/ExecutionContext/JavaScriptExpression.html +357 -0
  38. data/docs/Puppeteer/ExecutionContext/JavaScriptFunction.html +389 -0
  39. data/docs/Puppeteer/Frame.html +3625 -0
  40. data/docs/Puppeteer/FrameManager.html +2414 -0
  41. data/docs/Puppeteer/FrameManager/NavigationError.html +124 -0
  42. data/docs/Puppeteer/IfPresent.html +222 -0
  43. data/docs/Puppeteer/JSHandle.html +1352 -0
  44. data/docs/Puppeteer/Keyboard.html +1557 -0
  45. data/docs/Puppeteer/Keyboard/KeyDefinition.html +831 -0
  46. data/docs/Puppeteer/Keyboard/KeyDescription.html +603 -0
  47. data/docs/Puppeteer/Launcher.html +237 -0
  48. data/docs/Puppeteer/Launcher/Base.html +385 -0
  49. data/docs/Puppeteer/Launcher/Base/ExecutablePathNotFound.html +124 -0
  50. data/docs/Puppeteer/Launcher/BrowserOptions.html +441 -0
  51. data/docs/Puppeteer/Launcher/Chrome.html +628 -0
  52. data/docs/Puppeteer/Launcher/Chrome/DefaultArgs.html +382 -0
  53. data/docs/Puppeteer/Launcher/ChromeArgOptions.html +531 -0
  54. data/docs/Puppeteer/Launcher/LaunchOptions.html +893 -0
  55. data/docs/Puppeteer/LifecycleWatcher.html +834 -0
  56. data/docs/Puppeteer/LifecycleWatcher/ExpectedLifecycle.html +363 -0
  57. data/docs/Puppeteer/LifecycleWatcher/FrameDetachedError.html +206 -0
  58. data/docs/Puppeteer/LifecycleWatcher/TerminatedError.html +124 -0
  59. data/docs/Puppeteer/Mouse.html +1105 -0
  60. data/docs/Puppeteer/Mouse/Button.html +136 -0
  61. data/docs/Puppeteer/NetworkManager.html +901 -0
  62. data/docs/Puppeteer/NetworkManager/Credentials.html +385 -0
  63. data/docs/Puppeteer/Page.html +5426 -0
  64. data/docs/Puppeteer/Page/ScreenshotOptions.html +845 -0
  65. data/docs/Puppeteer/Page/ScriptTag.html +555 -0
  66. data/docs/Puppeteer/Page/StyleTag.html +448 -0
  67. data/docs/Puppeteer/Page/TargetCrashedError.html +124 -0
  68. data/docs/Puppeteer/RemoteObject.html +951 -0
  69. data/docs/Puppeteer/Target.html +1384 -0
  70. data/docs/Puppeteer/Target/InitializeFailure.html +124 -0
  71. data/docs/Puppeteer/Target/TargetInfo.html +729 -0
  72. data/docs/Puppeteer/TimeoutError.html +135 -0
  73. data/docs/Puppeteer/TimeoutSettings.html +496 -0
  74. data/docs/Puppeteer/TouchScreen.html +464 -0
  75. data/docs/Puppeteer/Viewport.html +757 -0
  76. data/docs/Puppeteer/WaitTask.html +211 -0
  77. data/docs/Puppeteer/WaitTask/TerminatedError.html +124 -0
  78. data/docs/Puppeteer/WebSocket.html +673 -0
  79. data/docs/Puppeteer/WebSocket/DriverImpl.html +412 -0
  80. data/docs/Puppeteer/WebSocketTransport.html +600 -0
  81. data/docs/Puppeteer/WebSocktTransportError.html +124 -0
  82. data/docs/_index.html +788 -0
  83. data/docs/class_list.html +51 -0
  84. data/docs/css/common.css +1 -0
  85. data/docs/css/full_list.css +58 -0
  86. data/docs/css/style.css +496 -0
  87. data/docs/file.README.html +121 -0
  88. data/docs/file_list.html +56 -0
  89. data/docs/frames.html +17 -0
  90. data/docs/index.html +121 -0
  91. data/docs/js/app.js +314 -0
  92. data/docs/js/full_list.js +216 -0
  93. data/docs/js/jquery.js +4 -0
  94. data/docs/method_list.html +3747 -0
  95. data/docs/top-level-namespace.html +126 -0
  96. data/lib/puppeteer.rb +9 -7
  97. data/lib/puppeteer/async_await_behavior.rb +6 -0
  98. data/lib/puppeteer/browser.rb +21 -1
  99. data/lib/puppeteer/connection.rb +1 -1
  100. data/lib/puppeteer/dom_world.rb +15 -2
  101. data/lib/puppeteer/element_handle.rb +3 -2
  102. data/lib/puppeteer/frame.rb +4 -0
  103. data/lib/puppeteer/frame_manager.rb +1 -1
  104. data/lib/puppeteer/js_handle.rb +3 -2
  105. data/lib/puppeteer/launcher.rb +0 -1
  106. data/lib/puppeteer/lifecycle_watcher.rb +3 -3
  107. data/lib/puppeteer/page.rb +6 -4
  108. data/lib/puppeteer/version.rb +1 -1
  109. data/puppeteer-ruby.gemspec +4 -1
  110. metadata +138 -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 Sun Apr 26 15:52:56 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>
data/docs/_index.html ADDED
@@ -0,0 +1,788 @@
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/Frame.html" title="Puppeteer::Frame (class)">Frame</a></span>
370
+
371
+ <small>(Puppeteer)</small>
372
+
373
+ </li>
374
+
375
+ <li>
376
+ <span class='object_link'><a href="Puppeteer/LifecycleWatcher/FrameDetachedError.html" title="Puppeteer::LifecycleWatcher::FrameDetachedError (class)">FrameDetachedError</a></span>
377
+
378
+ <small>(Puppeteer::LifecycleWatcher)</small>
379
+
380
+ </li>
381
+
382
+ <li>
383
+ <span class='object_link'><a href="Puppeteer/FrameManager.html" title="Puppeteer::FrameManager (class)">FrameManager</a></span>
384
+
385
+ <small>(Puppeteer)</small>
386
+
387
+ </li>
388
+
389
+ </ul>
390
+ </ul>
391
+
392
+
393
+ <ul id="alpha_I" class="alpha">
394
+ <li class="letter">I</li>
395
+ <ul>
396
+
397
+ <li>
398
+ <span class='object_link'><a href="Puppeteer/IfPresent.html" title="Puppeteer::IfPresent (module)">IfPresent</a></span>
399
+
400
+ <small>(Puppeteer)</small>
401
+
402
+ </li>
403
+
404
+ <li>
405
+ <span class='object_link'><a href="Puppeteer/Target/InitializeFailure.html" title="Puppeteer::Target::InitializeFailure (class)">InitializeFailure</a></span>
406
+
407
+ <small>(Puppeteer::Target)</small>
408
+
409
+ </li>
410
+
411
+ </ul>
412
+ </ul>
413
+
414
+
415
+ </td><td valign='top' width="33%">
416
+
417
+
418
+ <ul id="alpha_J" class="alpha">
419
+ <li class="letter">J</li>
420
+ <ul>
421
+
422
+ <li>
423
+ <span class='object_link'><a href="Puppeteer/JSHandle.html" title="Puppeteer::JSHandle (class)">JSHandle</a></span>
424
+
425
+ <small>(Puppeteer)</small>
426
+
427
+ </li>
428
+
429
+ <li>
430
+ <span class='object_link'><a href="Puppeteer/ExecutionContext/JavaScriptExpression.html" title="Puppeteer::ExecutionContext::JavaScriptExpression (class)">JavaScriptExpression</a></span>
431
+
432
+ <small>(Puppeteer::ExecutionContext)</small>
433
+
434
+ </li>
435
+
436
+ <li>
437
+ <span class='object_link'><a href="Puppeteer/ExecutionContext/JavaScriptFunction.html" title="Puppeteer::ExecutionContext::JavaScriptFunction (class)">JavaScriptFunction</a></span>
438
+
439
+ <small>(Puppeteer::ExecutionContext)</small>
440
+
441
+ </li>
442
+
443
+ </ul>
444
+ </ul>
445
+
446
+
447
+ <ul id="alpha_K" class="alpha">
448
+ <li class="letter">K</li>
449
+ <ul>
450
+
451
+ <li>
452
+ <span class='object_link'><a href="Puppeteer/Keyboard/KeyDefinition.html" title="Puppeteer::Keyboard::KeyDefinition (class)">KeyDefinition</a></span>
453
+
454
+ <small>(Puppeteer::Keyboard)</small>
455
+
456
+ </li>
457
+
458
+ <li>
459
+ <span class='object_link'><a href="Puppeteer/Keyboard/KeyDescription.html" title="Puppeteer::Keyboard::KeyDescription (class)">KeyDescription</a></span>
460
+
461
+ <small>(Puppeteer::Keyboard)</small>
462
+
463
+ </li>
464
+
465
+ <li>
466
+ <span class='object_link'><a href="Puppeteer/Keyboard.html" title="Puppeteer::Keyboard (class)">Keyboard</a></span>
467
+
468
+ <small>(Puppeteer)</small>
469
+
470
+ </li>
471
+
472
+ </ul>
473
+ </ul>
474
+
475
+
476
+ <ul id="alpha_L" class="alpha">
477
+ <li class="letter">L</li>
478
+ <ul>
479
+
480
+ <li>
481
+ <span class='object_link'><a href="Puppeteer/Launcher/LaunchOptions.html" title="Puppeteer::Launcher::LaunchOptions (class)">LaunchOptions</a></span>
482
+
483
+ <small>(Puppeteer::Launcher)</small>
484
+
485
+ </li>
486
+
487
+ <li>
488
+ <span class='object_link'><a href="Puppeteer/Launcher.html" title="Puppeteer::Launcher (module)">Launcher</a></span>
489
+
490
+ <small>(Puppeteer)</small>
491
+
492
+ </li>
493
+
494
+ <li>
495
+ <span class='object_link'><a href="Puppeteer/LifecycleWatcher.html" title="Puppeteer::LifecycleWatcher (class)">LifecycleWatcher</a></span>
496
+
497
+ <small>(Puppeteer)</small>
498
+
499
+ </li>
500
+
501
+ <li>
502
+ <span class='object_link'><a href="Puppeteer/ConsoleMessage/Location.html" title="Puppeteer::ConsoleMessage::Location (class)">Location</a></span>
503
+
504
+ <small>(Puppeteer::ConsoleMessage)</small>
505
+
506
+ </li>
507
+
508
+ </ul>
509
+ </ul>
510
+
511
+
512
+ <ul id="alpha_M" class="alpha">
513
+ <li class="letter">M</li>
514
+ <ul>
515
+
516
+ <li>
517
+ <span class='object_link'><a href="Puppeteer/Connection/MessageCallback.html" title="Puppeteer::Connection::MessageCallback (class)">MessageCallback</a></span>
518
+
519
+ <small>(Puppeteer::Connection)</small>
520
+
521
+ </li>
522
+
523
+ <li>
524
+ <span class='object_link'><a href="Puppeteer/Mouse.html" title="Puppeteer::Mouse (class)">Mouse</a></span>
525
+
526
+ <small>(Puppeteer)</small>
527
+
528
+ </li>
529
+
530
+ </ul>
531
+ </ul>
532
+
533
+
534
+ <ul id="alpha_N" class="alpha">
535
+ <li class="letter">N</li>
536
+ <ul>
537
+
538
+ <li>
539
+ <span class='object_link'><a href="Puppeteer/FrameManager/NavigationError.html" title="Puppeteer::FrameManager::NavigationError (class)">NavigationError</a></span>
540
+
541
+ <small>(Puppeteer::FrameManager)</small>
542
+
543
+ </li>
544
+
545
+ <li>
546
+ <span class='object_link'><a href="Puppeteer/NetworkManager.html" title="Puppeteer::NetworkManager (class)">NetworkManager</a></span>
547
+
548
+ <small>(Puppeteer)</small>
549
+
550
+ </li>
551
+
552
+ </ul>
553
+ </ul>
554
+
555
+
556
+ <ul id="alpha_P" class="alpha">
557
+ <li class="letter">P</li>
558
+ <ul>
559
+
560
+ <li>
561
+ <span class='object_link'><a href="Puppeteer/Page.html" title="Puppeteer::Page (class)">Page</a></span>
562
+
563
+ <small>(Puppeteer)</small>
564
+
565
+ </li>
566
+
567
+ <li>
568
+ <span class='object_link'><a href="Puppeteer/ElementHandle/Point.html" title="Puppeteer::ElementHandle::Point (class)">Point</a></span>
569
+
570
+ <small>(Puppeteer::ElementHandle)</small>
571
+
572
+ </li>
573
+
574
+ <li>
575
+ <span class='object_link'><a href="Puppeteer/Connection/ProtocolError.html" title="Puppeteer::Connection::ProtocolError (class)">ProtocolError</a></span>
576
+
577
+ <small>(Puppeteer::Connection)</small>
578
+
579
+ </li>
580
+
581
+ <li>
582
+ <span class='object_link'><a href="Puppeteer.html" title="Puppeteer (class)">Puppeteer</a></span>
583
+
584
+ </li>
585
+
586
+ </ul>
587
+ </ul>
588
+
589
+
590
+ <ul id="alpha_R" class="alpha">
591
+ <li class="letter">R</li>
592
+ <ul>
593
+
594
+ <li>
595
+ <span class='object_link'><a href="Puppeteer/RemoteObject.html" title="Puppeteer::RemoteObject (class)">RemoteObject</a></span>
596
+
597
+ <small>(Puppeteer)</small>
598
+
599
+ </li>
600
+
601
+ <li>
602
+ <span class='object_link'><a href="Puppeteer/Connection/RequestDebugPrinter.html" title="Puppeteer::Connection::RequestDebugPrinter (class)">RequestDebugPrinter</a></span>
603
+
604
+ <small>(Puppeteer::Connection)</small>
605
+
606
+ </li>
607
+
608
+ <li>
609
+ <span class='object_link'><a href="Puppeteer/Connection/ResponseDebugPrinter.html" title="Puppeteer::Connection::ResponseDebugPrinter (class)">ResponseDebugPrinter</a></span>
610
+
611
+ <small>(Puppeteer::Connection)</small>
612
+
613
+ </li>
614
+
615
+ </ul>
616
+ </ul>
617
+
618
+
619
+ <ul id="alpha_S" class="alpha">
620
+ <li class="letter">S</li>
621
+ <ul>
622
+
623
+ <li>
624
+ <span class='object_link'><a href="Puppeteer/Page/ScreenshotOptions.html" title="Puppeteer::Page::ScreenshotOptions (class)">ScreenshotOptions</a></span>
625
+
626
+ <small>(Puppeteer::Page)</small>
627
+
628
+ </li>
629
+
630
+ <li>
631
+ <span class='object_link'><a href="Puppeteer/Page/ScriptTag.html" title="Puppeteer::Page::ScriptTag (class)">ScriptTag</a></span>
632
+
633
+ <small>(Puppeteer::Page)</small>
634
+
635
+ </li>
636
+
637
+ <li>
638
+ <span class='object_link'><a href="Puppeteer/ElementHandle/ScrollIntoViewError.html" title="Puppeteer::ElementHandle::ScrollIntoViewError (class)">ScrollIntoViewError</a></span>
639
+
640
+ <small>(Puppeteer::ElementHandle)</small>
641
+
642
+ </li>
643
+
644
+ <li>
645
+ <span class='object_link'><a href="Puppeteer/Page/StyleTag.html" title="Puppeteer::Page::StyleTag (class)">StyleTag</a></span>
646
+
647
+ <small>(Puppeteer::Page)</small>
648
+
649
+ </li>
650
+
651
+ </ul>
652
+ </ul>
653
+
654
+
655
+ </td><td valign='top' width="33%">
656
+
657
+
658
+ <ul id="alpha_T" class="alpha">
659
+ <li class="letter">T</li>
660
+ <ul>
661
+
662
+ <li>
663
+ <span class='object_link'><a href="Puppeteer/Target.html" title="Puppeteer::Target (class)">Target</a></span>
664
+
665
+ <small>(Puppeteer)</small>
666
+
667
+ </li>
668
+
669
+ <li>
670
+ <span class='object_link'><a href="Puppeteer/Page/TargetCrashedError.html" title="Puppeteer::Page::TargetCrashedError (class)">TargetCrashedError</a></span>
671
+
672
+ <small>(Puppeteer::Page)</small>
673
+
674
+ </li>
675
+
676
+ <li>
677
+ <span class='object_link'><a href="Puppeteer/Target/TargetInfo.html" title="Puppeteer::Target::TargetInfo (class)">TargetInfo</a></span>
678
+
679
+ <small>(Puppeteer::Target)</small>
680
+
681
+ </li>
682
+
683
+ <li>
684
+ <span class='object_link'><a href="Puppeteer/LifecycleWatcher/TerminatedError.html" title="Puppeteer::LifecycleWatcher::TerminatedError (class)">TerminatedError</a></span>
685
+
686
+ <small>(Puppeteer::LifecycleWatcher)</small>
687
+
688
+ </li>
689
+
690
+ <li>
691
+ <span class='object_link'><a href="Puppeteer/WaitTask/TerminatedError.html" title="Puppeteer::WaitTask::TerminatedError (class)">TerminatedError</a></span>
692
+
693
+ <small>(Puppeteer::WaitTask)</small>
694
+
695
+ </li>
696
+
697
+ <li>
698
+ <span class='object_link'><a href="Puppeteer/TimeoutError.html" title="Puppeteer::TimeoutError (class)">TimeoutError</a></span>
699
+
700
+ <small>(Puppeteer)</small>
701
+
702
+ </li>
703
+
704
+ <li>
705
+ <span class='object_link'><a href="Puppeteer/TimeoutSettings.html" title="Puppeteer::TimeoutSettings (class)">TimeoutSettings</a></span>
706
+
707
+ <small>(Puppeteer)</small>
708
+
709
+ </li>
710
+
711
+ <li>
712
+ <span class='object_link'><a href="Puppeteer/TouchScreen.html" title="Puppeteer::TouchScreen (class)">TouchScreen</a></span>
713
+
714
+ <small>(Puppeteer)</small>
715
+
716
+ </li>
717
+
718
+ </ul>
719
+ </ul>
720
+
721
+
722
+ <ul id="alpha_V" class="alpha">
723
+ <li class="letter">V</li>
724
+ <ul>
725
+
726
+ <li>
727
+ <span class='object_link'><a href="Puppeteer/Viewport.html" title="Puppeteer::Viewport (class)">Viewport</a></span>
728
+
729
+ <small>(Puppeteer)</small>
730
+
731
+ </li>
732
+
733
+ </ul>
734
+ </ul>
735
+
736
+
737
+ <ul id="alpha_W" class="alpha">
738
+ <li class="letter">W</li>
739
+ <ul>
740
+
741
+ <li>
742
+ <span class='object_link'><a href="Puppeteer/WaitTask.html" title="Puppeteer::WaitTask (class)">WaitTask</a></span>
743
+
744
+ <small>(Puppeteer)</small>
745
+
746
+ </li>
747
+
748
+ <li>
749
+ <span class='object_link'><a href="Puppeteer/WebSocket.html" title="Puppeteer::WebSocket (class)">WebSocket</a></span>
750
+
751
+ <small>(Puppeteer)</small>
752
+
753
+ </li>
754
+
755
+ <li>
756
+ <span class='object_link'><a href="Puppeteer/WebSocketTransport.html" title="Puppeteer::WebSocketTransport (class)">WebSocketTransport</a></span>
757
+
758
+ <small>(Puppeteer)</small>
759
+
760
+ </li>
761
+
762
+ <li>
763
+ <span class='object_link'><a href="Puppeteer/WebSocktTransportError.html" title="Puppeteer::WebSocktTransportError (class)">WebSocktTransportError</a></span>
764
+
765
+ <small>(Puppeteer)</small>
766
+
767
+ </li>
768
+
769
+ </ul>
770
+ </ul>
771
+
772
+ </td>
773
+ </tr>
774
+ </table>
775
+
776
+ </div>
777
+
778
+ </div>
779
+
780
+ <div id="footer">
781
+ Generated on Sun Apr 26 15:52:55 2020 by
782
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
783
+ 0.9.24 (ruby-2.6.3).
784
+ </div>
785
+
786
+ </div>
787
+ </body>
788
+ </html>