caius-celerity 0.0.6.10 → 0.0.6.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (279) hide show
  1. data/Manifest.txt +335 -0
  2. data/benchmark/bm_2000_spans.rb +48 -0
  3. data/benchmark/bm_digg.rb +26 -0
  4. data/benchmark/bm_google_images.rb +36 -0
  5. data/benchmark/bm_input_locator.rb +69 -0
  6. data/benchmark/bm_text_input.rb +19 -0
  7. data/benchmark/loader.rb +14 -0
  8. data/celerity.gemspec +33 -0
  9. data/config/hoe.rb +78 -0
  10. data/config/requirements.rb +9 -0
  11. data/lib/celerity/version.rb +1 -1
  12. data/spec/area_spec.rb +97 -0
  13. data/spec/areas_spec.rb +40 -0
  14. data/spec/browser_authentication_spec.rb +20 -0
  15. data/spec/browser_spec.rb +537 -0
  16. data/spec/button_spec.rb +244 -0
  17. data/spec/buttons_spec.rb +51 -0
  18. data/spec/checkbox_spec.rb +302 -0
  19. data/spec/checkboxes_spec.rb +38 -0
  20. data/spec/clickable_element_spec.rb +43 -0
  21. data/spec/dd_spec.rb +143 -0
  22. data/spec/dds_spec.rb +39 -0
  23. data/spec/default_viewer_spec.rb +24 -0
  24. data/spec/div_spec.rb +235 -0
  25. data/spec/divs_spec.rb +39 -0
  26. data/spec/dl_spec.rb +143 -0
  27. data/spec/dls_spec.rb +39 -0
  28. data/spec/dt_spec.rb +143 -0
  29. data/spec/dts_spec.rb +39 -0
  30. data/spec/element_spec.rb +150 -0
  31. data/spec/em_spec.rb +116 -0
  32. data/spec/ems_spec.rb +39 -0
  33. data/spec/filefield_spec.rb +133 -0
  34. data/spec/filefields_spec.rb +40 -0
  35. data/spec/form_spec.rb +59 -0
  36. data/spec/forms_spec.rb +41 -0
  37. data/spec/frame_spec.rb +139 -0
  38. data/spec/frames_spec.rb +71 -0
  39. data/spec/hidden_spec.rb +127 -0
  40. data/spec/hiddens_spec.rb +39 -0
  41. data/spec/hn_spec.rb +104 -0
  42. data/spec/hns_spec.rb +45 -0
  43. data/spec/html/2000_spans.html +2009 -0
  44. data/spec/html/bug_duplicate_attributes.html +14 -0
  45. data/spec/html/bug_javascript_001.html +11 -0
  46. data/spec/html/definition_lists.html +48 -0
  47. data/spec/html/euc-jp_text.html +17 -0
  48. data/spec/html/forms_with_input_elements.html +124 -0
  49. data/spec/html/frame_1.html +18 -0
  50. data/spec/html/frame_2.html +16 -0
  51. data/spec/html/frames.html +11 -0
  52. data/spec/html/iframes.html +12 -0
  53. data/spec/html/images.html +27 -0
  54. data/spec/html/images/1.gif +0 -0
  55. data/spec/html/images/2.gif +0 -0
  56. data/spec/html/images/3.gif +0 -0
  57. data/spec/html/images/button.jpg +0 -0
  58. data/spec/html/images/circle.jpg +0 -0
  59. data/spec/html/images/map.gif +0 -0
  60. data/spec/html/images/map2.gif +0 -0
  61. data/spec/html/images/minus.gif +0 -0
  62. data/spec/html/images/originaltriangle.jpg +0 -0
  63. data/spec/html/images/plus.gif +0 -0
  64. data/spec/html/images/square.jpg +0 -0
  65. data/spec/html/images/triangle.jpg +0 -0
  66. data/spec/html/iso-2022-jp_text.html +17 -0
  67. data/spec/html/jquery.html +29 -0
  68. data/spec/html/latin1_text.html +17 -0
  69. data/spec/html/multiple_ids.html +14 -0
  70. data/spec/html/non_control_elements.html +115 -0
  71. data/spec/html/right_click.html +16 -0
  72. data/spec/html/shift_jis_text.html +17 -0
  73. data/spec/html/tables.html +119 -0
  74. data/spec/html/timeout.html +16 -0
  75. data/spec/html/tiny_mce.html +29 -0
  76. data/spec/html/utf8_text.html +15 -0
  77. data/spec/htmlunit_spec.rb +47 -0
  78. data/spec/image_spec.rb +221 -0
  79. data/spec/images_spec.rb +39 -0
  80. data/spec/index_offset_spec.rb +26 -0
  81. data/spec/label_spec.rb +88 -0
  82. data/spec/labels_spec.rb +40 -0
  83. data/spec/li_spec.rb +139 -0
  84. data/spec/link_spec.rb +200 -0
  85. data/spec/links_spec.rb +47 -0
  86. data/spec/lis_spec.rb +40 -0
  87. data/spec/listener_spec.rb +142 -0
  88. data/spec/map_spec.rb +102 -0
  89. data/spec/maps_spec.rb +40 -0
  90. data/spec/meta_spec.rb +29 -0
  91. data/spec/metas_spec.rb +38 -0
  92. data/spec/ol_spec.rb +87 -0
  93. data/spec/ols_spec.rb +40 -0
  94. data/spec/option_spec.rb +156 -0
  95. data/spec/p_spec.rb +171 -0
  96. data/spec/pre_spec.rb +135 -0
  97. data/spec/pres_spec.rb +40 -0
  98. data/spec/ps_spec.rb +40 -0
  99. data/spec/radio_spec.rb +314 -0
  100. data/spec/radios_spec.rb +42 -0
  101. data/spec/select_list_spec.rb +320 -0
  102. data/spec/select_lists_spec.rb +47 -0
  103. data/spec/span_spec.rb +184 -0
  104. data/spec/spans_spec.rb +64 -0
  105. data/spec/spec.opts +1 -0
  106. data/spec/spec_helper.rb +66 -0
  107. data/spec/strong_spec.rb +101 -0
  108. data/spec/strongs_spec.rb +40 -0
  109. data/spec/table_bodies_spec.rb +57 -0
  110. data/spec/table_body_spec.rb +109 -0
  111. data/spec/table_cell_spec.rb +84 -0
  112. data/spec/table_cells_spec.rb +59 -0
  113. data/spec/table_footer_spec.rb +96 -0
  114. data/spec/table_footers_spec.rb +55 -0
  115. data/spec/table_header_spec.rb +101 -0
  116. data/spec/table_headers_spec.rb +55 -0
  117. data/spec/table_row_spec.rb +106 -0
  118. data/spec/table_rows_spec.rb +58 -0
  119. data/spec/table_spec.rb +169 -0
  120. data/spec/tables_spec.rb +42 -0
  121. data/spec/text_field_spec.rb +331 -0
  122. data/spec/text_fields_spec.rb +44 -0
  123. data/spec/ul_spec.rb +88 -0
  124. data/spec/uls_spec.rb +40 -0
  125. data/spec/watir_compatibility_spec.rb +268 -0
  126. data/support/spec_server.rb +122 -0
  127. data/tasks/benchmark.rake +4 -0
  128. data/tasks/deployment.rake +43 -0
  129. data/tasks/environment.rake +7 -0
  130. data/tasks/fix.rake +25 -0
  131. data/tasks/rspec.rake +31 -0
  132. data/tasks/simple_ci.rake +94 -0
  133. data/tasks/snapshot.rake +22 -0
  134. data/tasks/specserver.rake +21 -0
  135. data/tasks/website.rake +17 -0
  136. data/tasks/yard.rake +9 -0
  137. data/website/benchmarks.html +237 -0
  138. data/website/css/color.css +153 -0
  139. data/website/css/hacks.css +3 -0
  140. data/website/css/layout.css +179 -0
  141. data/website/css/screen.css +5 -0
  142. data/website/css/textmate.css +226 -0
  143. data/website/css/typography.css +72 -0
  144. data/website/gfx/body_bg.gif +0 -0
  145. data/website/gfx/button_bg.jpg +0 -0
  146. data/website/gfx/header_bg.jpg +0 -0
  147. data/website/gfx/header_left.jpg +0 -0
  148. data/website/gfx/header_right.jpg +0 -0
  149. data/website/gfx/nav_bg.jpg +0 -0
  150. data/website/index.html +133 -0
  151. data/website/yard/Celerity.html +50 -0
  152. data/website/yard/Celerity/Area.html +212 -0
  153. data/website/yard/Celerity/Areas.html +103 -0
  154. data/website/yard/Celerity/Browser.html +5594 -0
  155. data/website/yard/Celerity/Button.html +312 -0
  156. data/website/yard/Celerity/Buttons.html +103 -0
  157. data/website/yard/Celerity/CheckBox.html +347 -0
  158. data/website/yard/Celerity/CheckBoxes.html +103 -0
  159. data/website/yard/Celerity/ClickableElement.html +448 -0
  160. data/website/yard/Celerity/Container.html +7676 -0
  161. data/website/yard/Celerity/Dd.html +198 -0
  162. data/website/yard/Celerity/Dds.html +103 -0
  163. data/website/yard/Celerity/DefaultViewer.html +101 -0
  164. data/website/yard/Celerity/DisabledElement.html +252 -0
  165. data/website/yard/Celerity/Div.html +198 -0
  166. data/website/yard/Celerity/Divs.html +103 -0
  167. data/website/yard/Celerity/Dl.html +198 -0
  168. data/website/yard/Celerity/Dls.html +103 -0
  169. data/website/yard/Celerity/Dt.html +198 -0
  170. data/website/yard/Celerity/Dts.html +103 -0
  171. data/website/yard/Celerity/Element.html +1703 -0
  172. data/website/yard/Celerity/ElementCollection.html +725 -0
  173. data/website/yard/Celerity/ElementLocator.html +589 -0
  174. data/website/yard/Celerity/Em.html +198 -0
  175. data/website/yard/Celerity/Ems.html +103 -0
  176. data/website/yard/Celerity/Exception.html +23 -0
  177. data/website/yard/Celerity/Exception/CelerityException.html +32 -0
  178. data/website/yard/Celerity/Exception/MissingWayOfFindingObjectException.html +32 -0
  179. data/website/yard/Celerity/Exception/NavigationException.html +33 -0
  180. data/website/yard/Celerity/Exception/NoValueFoundException.html +33 -0
  181. data/website/yard/Celerity/Exception/ObjectDisabledException.html +33 -0
  182. data/website/yard/Celerity/Exception/ObjectReadOnlyException.html +33 -0
  183. data/website/yard/Celerity/Exception/UnexpectedPageException.html +33 -0
  184. data/website/yard/Celerity/Exception/UnknownCellException.html +33 -0
  185. data/website/yard/Celerity/Exception/UnknownFormException.html +33 -0
  186. data/website/yard/Celerity/Exception/UnknownFrameException.html +33 -0
  187. data/website/yard/Celerity/Exception/UnknownObjectException.html +33 -0
  188. data/website/yard/Celerity/Exception/UnknownRowException.html +33 -0
  189. data/website/yard/Celerity/FileField.html +289 -0
  190. data/website/yard/Celerity/FileFields.html +103 -0
  191. data/website/yard/Celerity/Form.html +284 -0
  192. data/website/yard/Celerity/Forms.html +103 -0
  193. data/website/yard/Celerity/Frame.html +527 -0
  194. data/website/yard/Celerity/Frames.html +103 -0
  195. data/website/yard/Celerity/H1.html +198 -0
  196. data/website/yard/Celerity/H1s.html +103 -0
  197. data/website/yard/Celerity/H2.html +198 -0
  198. data/website/yard/Celerity/H2s.html +103 -0
  199. data/website/yard/Celerity/H3.html +198 -0
  200. data/website/yard/Celerity/H3s.html +103 -0
  201. data/website/yard/Celerity/H4.html +198 -0
  202. data/website/yard/Celerity/H4s.html +103 -0
  203. data/website/yard/Celerity/H5.html +198 -0
  204. data/website/yard/Celerity/H5s.html +103 -0
  205. data/website/yard/Celerity/H6.html +198 -0
  206. data/website/yard/Celerity/H6s.html +103 -0
  207. data/website/yard/Celerity/Hidden.html +285 -0
  208. data/website/yard/Celerity/Hiddens.html +103 -0
  209. data/website/yard/Celerity/Image.html +645 -0
  210. data/website/yard/Celerity/Images.html +103 -0
  211. data/website/yard/Celerity/InputElement.html +271 -0
  212. data/website/yard/Celerity/Label.html +210 -0
  213. data/website/yard/Celerity/Labels.html +103 -0
  214. data/website/yard/Celerity/Li.html +198 -0
  215. data/website/yard/Celerity/Link.html +295 -0
  216. data/website/yard/Celerity/Links.html +103 -0
  217. data/website/yard/Celerity/Lis.html +103 -0
  218. data/website/yard/Celerity/Listener.html +821 -0
  219. data/website/yard/Celerity/Map.html +198 -0
  220. data/website/yard/Celerity/Maps.html +103 -0
  221. data/website/yard/Celerity/Meta.html +196 -0
  222. data/website/yard/Celerity/Metas.html +103 -0
  223. data/website/yard/Celerity/MethodGenerator.html +195 -0
  224. data/website/yard/Celerity/NonControlElement.html +212 -0
  225. data/website/yard/Celerity/Ol.html +198 -0
  226. data/website/yard/Celerity/Ols.html +103 -0
  227. data/website/yard/Celerity/Option.html +348 -0
  228. data/website/yard/Celerity/Options.html +103 -0
  229. data/website/yard/Celerity/P.html +198 -0
  230. data/website/yard/Celerity/Pre.html +198 -0
  231. data/website/yard/Celerity/Pres.html +103 -0
  232. data/website/yard/Celerity/Ps.html +103 -0
  233. data/website/yard/Celerity/Radio.html +339 -0
  234. data/website/yard/Celerity/RadioCheckCommon.html +453 -0
  235. data/website/yard/Celerity/Radios.html +103 -0
  236. data/website/yard/Celerity/SelectList.html +1122 -0
  237. data/website/yard/Celerity/SelectLists.html +103 -0
  238. data/website/yard/Celerity/ShortInspect.html +108 -0
  239. data/website/yard/Celerity/Span.html +198 -0
  240. data/website/yard/Celerity/Spans.html +103 -0
  241. data/website/yard/Celerity/Strong.html +198 -0
  242. data/website/yard/Celerity/Strongs.html +103 -0
  243. data/website/yard/Celerity/Table.html +1287 -0
  244. data/website/yard/Celerity/TableBodies.html +103 -0
  245. data/website/yard/Celerity/TableBody.html +203 -0
  246. data/website/yard/Celerity/TableCell.html +279 -0
  247. data/website/yard/Celerity/TableCells.html +103 -0
  248. data/website/yard/Celerity/TableElement.html +437 -0
  249. data/website/yard/Celerity/TableFooter.html +203 -0
  250. data/website/yard/Celerity/TableFooters.html +103 -0
  251. data/website/yard/Celerity/TableHeader.html +203 -0
  252. data/website/yard/Celerity/TableHeaders.html +103 -0
  253. data/website/yard/Celerity/TableRow.html +478 -0
  254. data/website/yard/Celerity/TableRows.html +103 -0
  255. data/website/yard/Celerity/Tables.html +103 -0
  256. data/website/yard/Celerity/TextField.html +938 -0
  257. data/website/yard/Celerity/TextFields.html +103 -0
  258. data/website/yard/Celerity/Th.html +208 -0
  259. data/website/yard/Celerity/Ul.html +209 -0
  260. data/website/yard/Celerity/Uls.html +103 -0
  261. data/website/yard/Celerity/Util.html +264 -0
  262. data/website/yard/Celerity/VERSION.html +44 -0
  263. data/website/yard/HtmlUnit.html +23 -0
  264. data/website/yard/HtmlUnit/Html.html +23 -0
  265. data/website/yard/HtmlUnit/Util.html +23 -0
  266. data/website/yard/Java/ComGargoylesoftwareHtmlunitHtml/HtmlPage.html +90 -0
  267. data/website/yard/Java/JavaLang/Iterable.html +103 -0
  268. data/website/yard/Java/OrgW3cDom/NamedNodeMap.html +97 -0
  269. data/website/yard/README.txt.html +116 -0
  270. data/website/yard/String.html +103 -0
  271. data/website/yard/all-files.html +22 -0
  272. data/website/yard/all-methods.html +3276 -0
  273. data/website/yard/all-namespaces.html +258 -0
  274. data/website/yard/app.js +18 -0
  275. data/website/yard/index.html +19 -0
  276. data/website/yard/jquery.js +11 -0
  277. data/website/yard/style.css +68 -0
  278. data/website/yard/syntax_highlight.css +21 -0
  279. metadata +285 -13
@@ -0,0 +1,22 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html>
4
+ <head>
5
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6
+ <link rel="stylesheet" href="style.css" type="text/css" charset="utf-8" />
7
+ <link rel="stylesheet" href="syntax_highlight.css" type="text/css" charset="utf-8" />
8
+
9
+ <title>All Files</title>
10
+ <base target="main" />
11
+ </head>
12
+ <body>
13
+ <div id="nav" class="files">
14
+ <h1>Files List</h1>
15
+ <ul>
16
+
17
+ <li nowrap><a href="README.txt.html">README.txt</a></li>
18
+
19
+ </ul>
20
+ </div>
21
+ </body>
22
+ </html>
@@ -0,0 +1,3276 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html>
4
+ <head>
5
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6
+ <link rel="stylesheet" href="style.css" type="text/css" charset="utf-8" />
7
+ <link rel="stylesheet" href="syntax_highlight.css" type="text/css" charset="utf-8" />
8
+
9
+ <title>All Modules / Classes</title>
10
+ <base target="main" />
11
+ </head>
12
+ <body>
13
+ <div id="nav" class="methods">
14
+ <h1>Method List</h1>
15
+ <ul>
16
+
17
+
18
+ <li nowrap>
19
+ <a title="#element_class" href="Celerity/Areas.html#element_class-instance_method">#element_class</a>
20
+
21
+ <em>(class Areas)</em>
22
+
23
+ </li>
24
+
25
+
26
+ <li nowrap>
27
+ <a title="#add_checker" href="Celerity/Browser.html#add_checker-instance_method">#add_checker</a>
28
+
29
+ <em>(class Browser)</em>
30
+
31
+ </li>
32
+
33
+
34
+ <li nowrap>
35
+ <a title="#add_cookie" href="Celerity/Browser.html#add_cookie-instance_method">#add_cookie</a>
36
+
37
+ <em>(class Browser)</em>
38
+
39
+ </li>
40
+
41
+
42
+ <li nowrap>
43
+ <a title="#add_listener" href="Celerity/Browser.html#add_listener-instance_method">#add_listener</a>
44
+
45
+ <em>(class Browser)</em>
46
+
47
+ </li>
48
+
49
+
50
+ <li nowrap>
51
+ <a title="#assert_exists" href="Celerity/Browser.html#assert_exists-instance_method">#assert_exists</a>
52
+
53
+ <em>(class Browser)</em>
54
+
55
+ </li>
56
+
57
+
58
+ <li nowrap>
59
+ <a title="#asynchronized" href="Celerity/Browser.html#asynchronized-instance_method">#asynchronized</a>
60
+
61
+ <em>(class Browser)</em>
62
+
63
+ </li>
64
+
65
+
66
+ <li nowrap>
67
+ <a title="#back" href="Celerity/Browser.html#back-instance_method">#back</a>
68
+
69
+ <em>(class Browser)</em>
70
+
71
+ </li>
72
+
73
+
74
+ <li nowrap>
75
+ <a title="#bring_to_front" href="Celerity/Browser.html#bring_to_front-instance_method">#bring_to_front</a>
76
+
77
+ <em>(class Browser)</em>
78
+
79
+ </li>
80
+
81
+
82
+ <li nowrap>
83
+ <a title="#charset" href="Celerity/Browser.html#charset-instance_method">#charset</a>
84
+
85
+ <em>(class Browser)</em>
86
+
87
+ </li>
88
+
89
+
90
+ <li nowrap>
91
+ <a title="#charset=" href="Celerity/Browser.html#charset%3D-instance_method">#charset=</a>
92
+
93
+ <em>(class Browser)</em>
94
+
95
+ </li>
96
+
97
+
98
+ <li nowrap>
99
+ <a title="#clear_cache" href="Celerity/Browser.html#clear_cache-instance_method">#clear_cache</a>
100
+
101
+ <em>(class Browser)</em>
102
+
103
+ </li>
104
+
105
+
106
+ <li nowrap>
107
+ <a title="#clear_cookies" href="Celerity/Browser.html#clear_cookies-instance_method">#clear_cookies</a>
108
+
109
+ <em>(class Browser)</em>
110
+
111
+ </li>
112
+
113
+
114
+ <li nowrap>
115
+ <a title="#close" href="Celerity/Browser.html#close-instance_method">#close</a>
116
+
117
+ <em>(class Browser)</em>
118
+
119
+ </li>
120
+
121
+
122
+ <li nowrap>
123
+ <a title="#confirm" href="Celerity/Browser.html#confirm-instance_method">#confirm</a>
124
+
125
+ <em>(class Browser)</em>
126
+
127
+ </li>
128
+
129
+
130
+ <li nowrap>
131
+ <a title="#contains_text" href="Celerity/Browser.html#contains_text-instance_method">#contains_text</a>
132
+
133
+ <em>(class Browser)</em>
134
+
135
+ </li>
136
+
137
+
138
+ <li nowrap>
139
+ <a title="#content_type" href="Celerity/Browser.html#content_type-instance_method">#content_type</a>
140
+
141
+ <em>(class Browser)</em>
142
+
143
+ </li>
144
+
145
+
146
+ <li nowrap>
147
+ <a title="#cookies" href="Celerity/Browser.html#cookies-instance_method">#cookies</a>
148
+
149
+ <em>(class Browser)</em>
150
+
151
+ </li>
152
+
153
+
154
+ <li nowrap>
155
+ <a title="#credentials" href="Celerity/Browser.html#credentials-instance_method">#credentials</a>
156
+
157
+ <em>(class Browser)</em>
158
+
159
+ </li>
160
+
161
+
162
+ <li nowrap>
163
+ <a title="#css" href="Celerity/Browser.html#css-instance_method">#css</a>
164
+
165
+ <em>(class Browser)</em>
166
+
167
+ </li>
168
+
169
+
170
+ <li nowrap>
171
+ <a title="#debug_web_connection" href="Celerity/Browser.html#debug_web_connection-instance_method">#debug_web_connection</a>
172
+
173
+ <em>(class Browser)</em>
174
+
175
+ </li>
176
+
177
+
178
+ <li nowrap>
179
+ <a title="#disable_checker" href="Celerity/Browser.html#disable_checker-instance_method">#disable_checker</a>
180
+
181
+ <em>(class Browser)</em>
182
+
183
+ </li>
184
+
185
+
186
+ <li nowrap>
187
+ <a title="#document" href="Celerity/Browser.html#document-instance_method">#document</a>
188
+
189
+ <em>(class Browser)</em>
190
+
191
+ </li>
192
+
193
+
194
+ <li nowrap>
195
+ <a title="#element_by_xpath" href="Celerity/Browser.html#element_by_xpath-instance_method">#element_by_xpath</a>
196
+
197
+ <em>(class Browser)</em>
198
+
199
+ </li>
200
+
201
+
202
+ <li nowrap>
203
+ <a title="#element_from_dom_node" href="Celerity/Browser.html#element_from_dom_node-instance_method">#element_from_dom_node</a>
204
+
205
+ <em>(class Browser)</em>
206
+
207
+ </li>
208
+
209
+
210
+ <li nowrap>
211
+ <a title="#elements_by_xpath" href="Celerity/Browser.html#elements_by_xpath-instance_method">#elements_by_xpath</a>
212
+
213
+ <em>(class Browser)</em>
214
+
215
+ </li>
216
+
217
+
218
+ <li nowrap>
219
+ <a title="#execute_script" href="Celerity/Browser.html#execute_script-instance_method">#execute_script</a>
220
+
221
+ <em>(class Browser)</em>
222
+
223
+ </li>
224
+
225
+
226
+ <li nowrap>
227
+ <a title="#exist?" href="Celerity/Browser.html#exist%3F-instance_method">#exist?</a>
228
+
229
+ <em>(class Browser)</em>
230
+
231
+ </li>
232
+
233
+
234
+ <li nowrap>
235
+ <a title="#exists?" href="Celerity/Browser.html#exists%3F-instance_method">#exists?</a>
236
+
237
+ <em>(class Browser)</em>
238
+
239
+ </li>
240
+
241
+
242
+ <li nowrap>
243
+ <a title="#find_viewer" href="Celerity/Browser.html#find_viewer-instance_method">#find_viewer</a>
244
+
245
+ <em>(class Browser)</em>
246
+
247
+ </li>
248
+
249
+
250
+ <li nowrap>
251
+ <a title="#focused_element" href="Celerity/Browser.html#focused_element-instance_method">#focused_element</a>
252
+
253
+ <em>(class Browser)</em>
254
+
255
+ </li>
256
+
257
+
258
+ <li nowrap>
259
+ <a title="#generate_method" href="Celerity/Browser.html#generate_method-instance_method">#generate_method</a>
260
+
261
+ <em>(class Browser)</em>
262
+
263
+ </li>
264
+
265
+
266
+ <li nowrap>
267
+ <a title="#goto" href="Celerity/Browser.html#goto-instance_method">#goto</a>
268
+
269
+ <em>(class Browser)</em>
270
+
271
+ </li>
272
+
273
+
274
+ <li nowrap>
275
+ <a title="#html" href="Celerity/Browser.html#html-instance_method">#html</a>
276
+
277
+ <em>(class Browser)</em>
278
+
279
+ </li>
280
+
281
+
282
+ <li nowrap>
283
+ <a title="#initialize" href="Celerity/Browser.html#initialize-instance_method">#initialize</a>
284
+
285
+ <em>(class Browser)</em>
286
+
287
+ </li>
288
+
289
+
290
+ <li nowrap>
291
+ <a title="#inspect" href="Celerity/Browser.html#inspect-instance_method">#inspect</a>
292
+
293
+ <em>(class Browser)</em>
294
+
295
+ </li>
296
+
297
+
298
+ <li nowrap>
299
+ <a title="#io" href="Celerity/Browser.html#io-instance_method">#io</a>
300
+
301
+ <em>(class Browser)</em>
302
+
303
+ </li>
304
+
305
+
306
+ <li nowrap>
307
+ <a title="#javascript_exceptions" href="Celerity/Browser.html#javascript_exceptions-instance_method">#javascript_exceptions</a>
308
+
309
+ <em>(class Browser)</em>
310
+
311
+ </li>
312
+
313
+
314
+ <li nowrap>
315
+ <a title="#listener" href="Celerity/Browser.html#listener-instance_method">#listener</a>
316
+
317
+ <em>(class Browser)</em>
318
+
319
+ </li>
320
+
321
+
322
+ <li nowrap>
323
+ <a title="#log_level" href="Celerity/Browser.html#log_level-instance_method">#log_level</a>
324
+
325
+ <em>(class Browser)</em>
326
+
327
+ </li>
328
+
329
+
330
+ <li nowrap>
331
+ <a title="#logger_for" href="Celerity/Browser.html#logger_for-instance_method">#logger_for</a>
332
+
333
+ <em>(class Browser)</em>
334
+
335
+ </li>
336
+
337
+
338
+ <li nowrap>
339
+ <a title="#object" href="Celerity/Browser.html#object-instance_method">#object</a>
340
+
341
+ <em>(class Browser)</em>
342
+
343
+ </li>
344
+
345
+
346
+ <li nowrap>
347
+ <a title="#object=" href="Celerity/Browser.html#object%3D-instance_method">#object=</a>
348
+
349
+ <em>(class Browser)</em>
350
+
351
+ </li>
352
+
353
+
354
+ <li nowrap>
355
+ <a title="#options" href="Celerity/Browser.html#options-instance_method">#options</a>
356
+
357
+ <em>(class Browser)</em>
358
+
359
+ </li>
360
+
361
+
362
+ <li nowrap>
363
+ <a title="#page" href="Celerity/Browser.html#page-instance_method">#page</a>
364
+
365
+ <em>(class Browser)</em>
366
+
367
+ </li>
368
+
369
+
370
+ <li nowrap>
371
+ <a title="#page=" href="Celerity/Browser.html#page%3D-instance_method">#page=</a>
372
+
373
+ <em>(class Browser)</em>
374
+
375
+ </li>
376
+
377
+
378
+ <li nowrap>
379
+ <a title="#refresh" href="Celerity/Browser.html#refresh-instance_method">#refresh</a>
380
+
381
+ <em>(class Browser)</em>
382
+
383
+ </li>
384
+
385
+
386
+ <li nowrap>
387
+ <a title="#refresh_page_from_window" href="Celerity/Browser.html#refresh_page_from_window-instance_method">#refresh_page_from_window</a>
388
+
389
+ <em>(class Browser)</em>
390
+
391
+ </li>
392
+
393
+
394
+ <li nowrap>
395
+ <a title="#remove_cookie" href="Celerity/Browser.html#remove_cookie-instance_method">#remove_cookie</a>
396
+
397
+ <em>(class Browser)</em>
398
+
399
+ </li>
400
+
401
+
402
+ <li nowrap>
403
+ <a title="#render" href="Celerity/Browser.html#render-instance_method">#render</a>
404
+
405
+ <em>(class Browser)</em>
406
+
407
+ </li>
408
+
409
+
410
+ <li nowrap>
411
+ <a title="#response_headers" href="Celerity/Browser.html#response_headers-instance_method">#response_headers</a>
412
+
413
+ <em>(class Browser)</em>
414
+
415
+ </li>
416
+
417
+
418
+ <li nowrap>
419
+ <a title="#resynchronized" href="Celerity/Browser.html#resynchronized-instance_method">#resynchronized</a>
420
+
421
+ <em>(class Browser)</em>
422
+
423
+ </li>
424
+
425
+
426
+ <li nowrap>
427
+ <a title="#run_error_checks" href="Celerity/Browser.html#run_error_checks-instance_method">#run_error_checks</a>
428
+
429
+ <em>(class Browser)</em>
430
+
431
+ </li>
432
+
433
+
434
+ <li nowrap>
435
+ <a title="#secure_ssl" href="Celerity/Browser.html#secure_ssl-instance_method">#secure_ssl</a>
436
+
437
+ <em>(class Browser)</em>
438
+
439
+ </li>
440
+
441
+
442
+ <li nowrap>
443
+ <a title="#send_keys" href="Celerity/Browser.html#send_keys-instance_method">#send_keys</a>
444
+
445
+ <em>(class Browser)</em>
446
+
447
+ </li>
448
+
449
+
450
+ <li nowrap>
451
+ <a title="#setup_webclient" href="Celerity/Browser.html#setup_webclient-instance_method">#setup_webclient</a>
452
+
453
+ <em>(class Browser)</em>
454
+
455
+ </li>
456
+
457
+
458
+ <li nowrap>
459
+ <a title="#speed" href="Celerity/Browser.html#speed-instance_method">#speed</a>
460
+
461
+ <em>(class Browser)</em>
462
+
463
+ </li>
464
+
465
+
466
+ <li nowrap>
467
+ <a title="#status" href="Celerity/Browser.html#status-instance_method">#status</a>
468
+
469
+ <em>(class Browser)</em>
470
+
471
+ </li>
472
+
473
+
474
+ <li nowrap>
475
+ <a title="#status_code" href="Celerity/Browser.html#status_code-instance_method">#status_code</a>
476
+
477
+ <em>(class Browser)</em>
478
+
479
+ </li>
480
+
481
+
482
+ <li nowrap>
483
+ <a title="#status_code_exceptions" href="Celerity/Browser.html#status_code_exceptions-instance_method">#status_code_exceptions</a>
484
+
485
+ <em>(class Browser)</em>
486
+
487
+ </li>
488
+
489
+
490
+ <li nowrap>
491
+ <a title="#text" href="Celerity/Browser.html#text-instance_method">#text</a>
492
+
493
+ <em>(class Browser)</em>
494
+
495
+ </li>
496
+
497
+
498
+ <li nowrap>
499
+ <a title="#title" href="Celerity/Browser.html#title-instance_method">#title</a>
500
+
501
+ <em>(class Browser)</em>
502
+
503
+ </li>
504
+
505
+
506
+ <li nowrap>
507
+ <a title="#url" href="Celerity/Browser.html#url-instance_method">#url</a>
508
+
509
+ <em>(class Browser)</em>
510
+
511
+ </li>
512
+
513
+
514
+ <li nowrap>
515
+ <a title="#viewer" href="Celerity/Browser.html#viewer-instance_method">#viewer</a>
516
+
517
+ <em>(class Browser)</em>
518
+
519
+ </li>
520
+
521
+
522
+ <li nowrap>
523
+ <a title="#visible" href="Celerity/Browser.html#visible-instance_method">#visible</a>
524
+
525
+ <em>(class Browser)</em>
526
+
527
+ </li>
528
+
529
+
530
+ <li nowrap>
531
+ <a title="#visible=" href="Celerity/Browser.html#visible%3D-instance_method">#visible=</a>
532
+
533
+ <em>(class Browser)</em>
534
+
535
+ </li>
536
+
537
+
538
+ <li nowrap>
539
+ <a title="#wait" href="Celerity/Browser.html#wait-instance_method">#wait</a>
540
+
541
+ <em>(class Browser)</em>
542
+
543
+ </li>
544
+
545
+
546
+ <li nowrap>
547
+ <a title="#wait_until" href="Celerity/Browser.html#wait_until-instance_method">#wait_until</a>
548
+
549
+ <em>(class Browser)</em>
550
+
551
+ </li>
552
+
553
+
554
+ <li nowrap>
555
+ <a title="#wait_while" href="Celerity/Browser.html#wait_while-instance_method">#wait_while</a>
556
+
557
+ <em>(class Browser)</em>
558
+
559
+ </li>
560
+
561
+
562
+ <li nowrap>
563
+ <a title="#webclient" href="Celerity/Browser.html#webclient-instance_method">#webclient</a>
564
+
565
+ <em>(class Browser)</em>
566
+
567
+ </li>
568
+
569
+
570
+ <li nowrap>
571
+ <a title="#xml" href="Celerity/Browser.html#xml-instance_method">#xml</a>
572
+
573
+ <em>(class Browser)</em>
574
+
575
+ </li>
576
+
577
+
578
+ <li nowrap>
579
+ <a title="attach" href="Celerity/Browser.html#attach-class_method">attach</a>
580
+
581
+ <em>(class Browser)</em>
582
+
583
+ </li>
584
+
585
+
586
+ <li nowrap>
587
+ <a title="attach_timeout" href="Celerity/Browser.html#attach_timeout-class_method">attach_timeout</a>
588
+
589
+ <em>(class Browser)</em>
590
+
591
+ </li>
592
+
593
+
594
+ <li nowrap>
595
+ <a title="attach_timeout=" href="Celerity/Browser.html#attach_timeout%3D-class_method">attach_timeout=</a>
596
+
597
+ <em>(class Browser)</em>
598
+
599
+ </li>
600
+
601
+
602
+ <li nowrap>
603
+ <a title="each" href="Celerity/Browser.html#each-class_method">each</a>
604
+
605
+ <em>(class Browser)</em>
606
+
607
+ </li>
608
+
609
+
610
+ <li nowrap>
611
+ <a title="quit" href="Celerity/Browser.html#quit-class_method">quit</a>
612
+
613
+ <em>(class Browser)</em>
614
+
615
+ </li>
616
+
617
+
618
+ <li nowrap>
619
+ <a title="reset_attach_timeout" href="Celerity/Browser.html#reset_attach_timeout-class_method">reset_attach_timeout</a>
620
+
621
+ <em>(class Browser)</em>
622
+
623
+ </li>
624
+
625
+
626
+ <li nowrap>
627
+ <a title="set_fast_speed" href="Celerity/Browser.html#set_fast_speed-class_method">set_fast_speed</a>
628
+
629
+ <em>(class Browser)</em>
630
+
631
+ </li>
632
+
633
+
634
+ <li nowrap>
635
+ <a title="set_slow_speed" href="Celerity/Browser.html#set_slow_speed-class_method">set_slow_speed</a>
636
+
637
+ <em>(class Browser)</em>
638
+
639
+ </li>
640
+
641
+
642
+ <li nowrap>
643
+ <a title="speed" href="Celerity/Browser.html#speed-class_method">speed</a>
644
+
645
+ <em>(class Browser)</em>
646
+
647
+ </li>
648
+
649
+
650
+ <li nowrap>
651
+ <a title="speed=" href="Celerity/Browser.html#speed%3D-class_method">speed=</a>
652
+
653
+ <em>(class Browser)</em>
654
+
655
+ </li>
656
+
657
+
658
+ <li nowrap>
659
+ <a title="start" href="Celerity/Browser.html#start-class_method">start</a>
660
+
661
+ <em>(class Browser)</em>
662
+
663
+ </li>
664
+
665
+
666
+ <li nowrap>
667
+ <a title="start_window" href="Celerity/Browser.html#start_window-class_method">start_window</a>
668
+
669
+ <em>(class Browser)</em>
670
+
671
+ </li>
672
+
673
+
674
+ <li nowrap>
675
+ <a title="visible" href="Celerity/Browser.html#visible-class_method">visible</a>
676
+
677
+ <em>(class Browser)</em>
678
+
679
+ </li>
680
+
681
+
682
+ <li nowrap>
683
+ <a title="visible=" href="Celerity/Browser.html#visible%3D-class_method">visible=</a>
684
+
685
+ <em>(class Browser)</em>
686
+
687
+ </li>
688
+
689
+
690
+ <li nowrap>
691
+ <a title="#locate" href="Celerity/Button.html#locate-instance_method">#locate</a>
692
+
693
+ <em>(class Button)</em>
694
+
695
+ </li>
696
+
697
+
698
+ <li nowrap>
699
+ <a title="#element_class" href="Celerity/Buttons.html#element_class-instance_method">#element_class</a>
700
+
701
+ <em>(class Buttons)</em>
702
+
703
+ </li>
704
+
705
+
706
+ <li nowrap>
707
+ <a title="#initialize" href="Celerity/CheckBox.html#initialize-instance_method">#initialize</a>
708
+
709
+ <em>(class CheckBox)</em>
710
+
711
+ </li>
712
+
713
+
714
+ <li nowrap>
715
+ <a title="#set" href="Celerity/CheckBox.html#set-instance_method">#set</a>
716
+
717
+ <em>(class CheckBox)</em>
718
+
719
+ </li>
720
+
721
+
722
+ <li nowrap>
723
+ <a title="#element_class" href="Celerity/CheckBoxes.html#element_class-instance_method">#element_class</a>
724
+
725
+ <em>(class CheckBoxes)</em>
726
+
727
+ </li>
728
+
729
+
730
+ <li nowrap>
731
+ <a title="#assert_exists_and_enabled" href="Celerity/ClickableElement.html#assert_exists_and_enabled-instance_method">#assert_exists_and_enabled</a>
732
+
733
+ <em>(module ClickableElement)</em>
734
+
735
+ </li>
736
+
737
+
738
+ <li nowrap>
739
+ <a title="#click" href="Celerity/ClickableElement.html#click-instance_method">#click</a>
740
+
741
+ <em>(module ClickableElement)</em>
742
+
743
+ </li>
744
+
745
+
746
+ <li nowrap>
747
+ <a title="#click_and_attach" href="Celerity/ClickableElement.html#click_and_attach-instance_method">#click_and_attach</a>
748
+
749
+ <em>(module ClickableElement)</em>
750
+
751
+ </li>
752
+
753
+
754
+ <li nowrap>
755
+ <a title="#click_no_wait" href="Celerity/ClickableElement.html#click_no_wait-instance_method">#click_no_wait</a>
756
+
757
+ <em>(module ClickableElement)</em>
758
+
759
+ </li>
760
+
761
+
762
+ <li nowrap>
763
+ <a title="#double_click" href="Celerity/ClickableElement.html#double_click-instance_method">#double_click</a>
764
+
765
+ <em>(module ClickableElement)</em>
766
+
767
+ </li>
768
+
769
+
770
+ <li nowrap>
771
+ <a title="#download" href="Celerity/ClickableElement.html#download-instance_method">#download</a>
772
+
773
+ <em>(module ClickableElement)</em>
774
+
775
+ </li>
776
+
777
+
778
+ <li nowrap>
779
+ <a title="#right_click" href="Celerity/ClickableElement.html#right_click-instance_method">#right_click</a>
780
+
781
+ <em>(module ClickableElement)</em>
782
+
783
+ </li>
784
+
785
+
786
+ <li nowrap>
787
+ <a title="#area" href="Celerity/Container.html#area-instance_method">#area</a>
788
+
789
+ <em>(module Container)</em>
790
+
791
+ </li>
792
+
793
+
794
+ <li nowrap>
795
+ <a title="#areas" href="Celerity/Container.html#areas-instance_method">#areas</a>
796
+
797
+ <em>(module Container)</em>
798
+
799
+ </li>
800
+
801
+
802
+ <li nowrap>
803
+ <a title="#bodies" href="Celerity/Container.html#bodies-instance_method">#bodies</a>
804
+
805
+ <em>(module Container)</em>
806
+
807
+ </li>
808
+
809
+
810
+ <li nowrap>
811
+ <a title="#body" href="Celerity/Container.html#body-instance_method">#body</a>
812
+
813
+ <em>(module Container)</em>
814
+
815
+ </li>
816
+
817
+
818
+ <li nowrap>
819
+ <a title="#browser" href="Celerity/Container.html#browser-instance_method">#browser</a>
820
+
821
+ <em>(module Container)</em>
822
+
823
+ </li>
824
+
825
+
826
+ <li nowrap>
827
+ <a title="#button" href="Celerity/Container.html#button-instance_method">#button</a>
828
+
829
+ <em>(module Container)</em>
830
+
831
+ </li>
832
+
833
+
834
+ <li nowrap>
835
+ <a title="#buttons" href="Celerity/Container.html#buttons-instance_method">#buttons</a>
836
+
837
+ <em>(module Container)</em>
838
+
839
+ </li>
840
+
841
+
842
+ <li nowrap>
843
+ <a title="#cell" href="Celerity/Container.html#cell-instance_method">#cell</a>
844
+
845
+ <em>(module Container)</em>
846
+
847
+ </li>
848
+
849
+
850
+ <li nowrap>
851
+ <a title="#cells" href="Celerity/Container.html#cells-instance_method">#cells</a>
852
+
853
+ <em>(module Container)</em>
854
+
855
+ </li>
856
+
857
+
858
+ <li nowrap>
859
+ <a title="#checkBox" href="Celerity/Container.html#checkBox-instance_method">#checkBox</a>
860
+
861
+ <em>(module Container)</em>
862
+
863
+ </li>
864
+
865
+
866
+ <li nowrap>
867
+ <a title="#check_box" href="Celerity/Container.html#check_box-instance_method">#check_box</a>
868
+
869
+ <em>(module Container)</em>
870
+
871
+ </li>
872
+
873
+
874
+ <li nowrap>
875
+ <a title="#checkbox" href="Celerity/Container.html#checkbox-instance_method">#checkbox</a>
876
+
877
+ <em>(module Container)</em>
878
+
879
+ </li>
880
+
881
+
882
+ <li nowrap>
883
+ <a title="#checkboxes" href="Celerity/Container.html#checkboxes-instance_method">#checkboxes</a>
884
+
885
+ <em>(module Container)</em>
886
+
887
+ </li>
888
+
889
+
890
+ <li nowrap>
891
+ <a title="#container" href="Celerity/Container.html#container-instance_method">#container</a>
892
+
893
+ <em>(module Container)</em>
894
+
895
+ </li>
896
+
897
+
898
+ <li nowrap>
899
+ <a title="#contains_text" href="Celerity/Container.html#contains_text-instance_method">#contains_text</a>
900
+
901
+ <em>(module Container)</em>
902
+
903
+ </li>
904
+
905
+
906
+ <li nowrap>
907
+ <a title="#dd" href="Celerity/Container.html#dd-instance_method">#dd</a>
908
+
909
+ <em>(module Container)</em>
910
+
911
+ </li>
912
+
913
+
914
+ <li nowrap>
915
+ <a title="#dds" href="Celerity/Container.html#dds-instance_method">#dds</a>
916
+
917
+ <em>(module Container)</em>
918
+
919
+ </li>
920
+
921
+
922
+ <li nowrap>
923
+ <a title="#div" href="Celerity/Container.html#div-instance_method">#div</a>
924
+
925
+ <em>(module Container)</em>
926
+
927
+ </li>
928
+
929
+
930
+ <li nowrap>
931
+ <a title="#divs" href="Celerity/Container.html#divs-instance_method">#divs</a>
932
+
933
+ <em>(module Container)</em>
934
+
935
+ </li>
936
+
937
+
938
+ <li nowrap>
939
+ <a title="#dl" href="Celerity/Container.html#dl-instance_method">#dl</a>
940
+
941
+ <em>(module Container)</em>
942
+
943
+ </li>
944
+
945
+
946
+ <li nowrap>
947
+ <a title="#dls" href="Celerity/Container.html#dls-instance_method">#dls</a>
948
+
949
+ <em>(module Container)</em>
950
+
951
+ </li>
952
+
953
+
954
+ <li nowrap>
955
+ <a title="#dt" href="Celerity/Container.html#dt-instance_method">#dt</a>
956
+
957
+ <em>(module Container)</em>
958
+
959
+ </li>
960
+
961
+
962
+ <li nowrap>
963
+ <a title="#dts" href="Celerity/Container.html#dts-instance_method">#dts</a>
964
+
965
+ <em>(module Container)</em>
966
+
967
+ </li>
968
+
969
+
970
+ <li nowrap>
971
+ <a title="#em" href="Celerity/Container.html#em-instance_method">#em</a>
972
+
973
+ <em>(module Container)</em>
974
+
975
+ </li>
976
+
977
+
978
+ <li nowrap>
979
+ <a title="#ems" href="Celerity/Container.html#ems-instance_method">#ems</a>
980
+
981
+ <em>(module Container)</em>
982
+
983
+ </li>
984
+
985
+
986
+ <li nowrap>
987
+ <a title="#file_field" href="Celerity/Container.html#file_field-instance_method">#file_field</a>
988
+
989
+ <em>(module Container)</em>
990
+
991
+ </li>
992
+
993
+
994
+ <li nowrap>
995
+ <a title="#file_fields" href="Celerity/Container.html#file_fields-instance_method">#file_fields</a>
996
+
997
+ <em>(module Container)</em>
998
+
999
+ </li>
1000
+
1001
+
1002
+ <li nowrap>
1003
+ <a title="#form" href="Celerity/Container.html#form-instance_method">#form</a>
1004
+
1005
+ <em>(module Container)</em>
1006
+
1007
+ </li>
1008
+
1009
+
1010
+ <li nowrap>
1011
+ <a title="#forms" href="Celerity/Container.html#forms-instance_method">#forms</a>
1012
+
1013
+ <em>(module Container)</em>
1014
+
1015
+ </li>
1016
+
1017
+
1018
+ <li nowrap>
1019
+ <a title="#frame" href="Celerity/Container.html#frame-instance_method">#frame</a>
1020
+
1021
+ <em>(module Container)</em>
1022
+
1023
+ </li>
1024
+
1025
+
1026
+ <li nowrap>
1027
+ <a title="#frames" href="Celerity/Container.html#frames-instance_method">#frames</a>
1028
+
1029
+ <em>(module Container)</em>
1030
+
1031
+ </li>
1032
+
1033
+
1034
+ <li nowrap>
1035
+ <a title="#h1" href="Celerity/Container.html#h1-instance_method">#h1</a>
1036
+
1037
+ <em>(module Container)</em>
1038
+
1039
+ </li>
1040
+
1041
+
1042
+ <li nowrap>
1043
+ <a title="#h1s" href="Celerity/Container.html#h1s-instance_method">#h1s</a>
1044
+
1045
+ <em>(module Container)</em>
1046
+
1047
+ </li>
1048
+
1049
+
1050
+ <li nowrap>
1051
+ <a title="#h2" href="Celerity/Container.html#h2-instance_method">#h2</a>
1052
+
1053
+ <em>(module Container)</em>
1054
+
1055
+ </li>
1056
+
1057
+
1058
+ <li nowrap>
1059
+ <a title="#h2s" href="Celerity/Container.html#h2s-instance_method">#h2s</a>
1060
+
1061
+ <em>(module Container)</em>
1062
+
1063
+ </li>
1064
+
1065
+
1066
+ <li nowrap>
1067
+ <a title="#h3" href="Celerity/Container.html#h3-instance_method">#h3</a>
1068
+
1069
+ <em>(module Container)</em>
1070
+
1071
+ </li>
1072
+
1073
+
1074
+ <li nowrap>
1075
+ <a title="#h3s" href="Celerity/Container.html#h3s-instance_method">#h3s</a>
1076
+
1077
+ <em>(module Container)</em>
1078
+
1079
+ </li>
1080
+
1081
+
1082
+ <li nowrap>
1083
+ <a title="#h4" href="Celerity/Container.html#h4-instance_method">#h4</a>
1084
+
1085
+ <em>(module Container)</em>
1086
+
1087
+ </li>
1088
+
1089
+
1090
+ <li nowrap>
1091
+ <a title="#h4s" href="Celerity/Container.html#h4s-instance_method">#h4s</a>
1092
+
1093
+ <em>(module Container)</em>
1094
+
1095
+ </li>
1096
+
1097
+
1098
+ <li nowrap>
1099
+ <a title="#h5" href="Celerity/Container.html#h5-instance_method">#h5</a>
1100
+
1101
+ <em>(module Container)</em>
1102
+
1103
+ </li>
1104
+
1105
+
1106
+ <li nowrap>
1107
+ <a title="#h5s" href="Celerity/Container.html#h5s-instance_method">#h5s</a>
1108
+
1109
+ <em>(module Container)</em>
1110
+
1111
+ </li>
1112
+
1113
+
1114
+ <li nowrap>
1115
+ <a title="#h6" href="Celerity/Container.html#h6-instance_method">#h6</a>
1116
+
1117
+ <em>(module Container)</em>
1118
+
1119
+ </li>
1120
+
1121
+
1122
+ <li nowrap>
1123
+ <a title="#h6s" href="Celerity/Container.html#h6s-instance_method">#h6s</a>
1124
+
1125
+ <em>(module Container)</em>
1126
+
1127
+ </li>
1128
+
1129
+
1130
+ <li nowrap>
1131
+ <a title="#hidden" href="Celerity/Container.html#hidden-instance_method">#hidden</a>
1132
+
1133
+ <em>(module Container)</em>
1134
+
1135
+ </li>
1136
+
1137
+
1138
+ <li nowrap>
1139
+ <a title="#hiddens" href="Celerity/Container.html#hiddens-instance_method">#hiddens</a>
1140
+
1141
+ <em>(module Container)</em>
1142
+
1143
+ </li>
1144
+
1145
+
1146
+ <li nowrap>
1147
+ <a title="#image" href="Celerity/Container.html#image-instance_method">#image</a>
1148
+
1149
+ <em>(module Container)</em>
1150
+
1151
+ </li>
1152
+
1153
+
1154
+ <li nowrap>
1155
+ <a title="#images" href="Celerity/Container.html#images-instance_method">#images</a>
1156
+
1157
+ <em>(module Container)</em>
1158
+
1159
+ </li>
1160
+
1161
+
1162
+ <li nowrap>
1163
+ <a title="#inspect" href="Celerity/Container.html#inspect-instance_method">#inspect</a>
1164
+
1165
+ <em>(module Container)</em>
1166
+
1167
+ </li>
1168
+
1169
+
1170
+ <li nowrap>
1171
+ <a title="#label" href="Celerity/Container.html#label-instance_method">#label</a>
1172
+
1173
+ <em>(module Container)</em>
1174
+
1175
+ </li>
1176
+
1177
+
1178
+ <li nowrap>
1179
+ <a title="#labels" href="Celerity/Container.html#labels-instance_method">#labels</a>
1180
+
1181
+ <em>(module Container)</em>
1182
+
1183
+ </li>
1184
+
1185
+
1186
+ <li nowrap>
1187
+ <a title="#li" href="Celerity/Container.html#li-instance_method">#li</a>
1188
+
1189
+ <em>(module Container)</em>
1190
+
1191
+ </li>
1192
+
1193
+
1194
+ <li nowrap>
1195
+ <a title="#link" href="Celerity/Container.html#link-instance_method">#link</a>
1196
+
1197
+ <em>(module Container)</em>
1198
+
1199
+ </li>
1200
+
1201
+
1202
+ <li nowrap>
1203
+ <a title="#links" href="Celerity/Container.html#links-instance_method">#links</a>
1204
+
1205
+ <em>(module Container)</em>
1206
+
1207
+ </li>
1208
+
1209
+
1210
+ <li nowrap>
1211
+ <a title="#lis" href="Celerity/Container.html#lis-instance_method">#lis</a>
1212
+
1213
+ <em>(module Container)</em>
1214
+
1215
+ </li>
1216
+
1217
+
1218
+ <li nowrap>
1219
+ <a title="#map" href="Celerity/Container.html#map-instance_method">#map</a>
1220
+
1221
+ <em>(module Container)</em>
1222
+
1223
+ </li>
1224
+
1225
+
1226
+ <li nowrap>
1227
+ <a title="#maps" href="Celerity/Container.html#maps-instance_method">#maps</a>
1228
+
1229
+ <em>(module Container)</em>
1230
+
1231
+ </li>
1232
+
1233
+
1234
+ <li nowrap>
1235
+ <a title="#matches?" href="Celerity/Container.html#matches%3F-instance_method">#matches?</a>
1236
+
1237
+ <em>(module Container)</em>
1238
+
1239
+ </li>
1240
+
1241
+
1242
+ <li nowrap>
1243
+ <a title="#meta" href="Celerity/Container.html#meta-instance_method">#meta</a>
1244
+
1245
+ <em>(module Container)</em>
1246
+
1247
+ </li>
1248
+
1249
+
1250
+ <li nowrap>
1251
+ <a title="#metas" href="Celerity/Container.html#metas-instance_method">#metas</a>
1252
+
1253
+ <em>(module Container)</em>
1254
+
1255
+ </li>
1256
+
1257
+
1258
+ <li nowrap>
1259
+ <a title="#ol" href="Celerity/Container.html#ol-instance_method">#ol</a>
1260
+
1261
+ <em>(module Container)</em>
1262
+
1263
+ </li>
1264
+
1265
+
1266
+ <li nowrap>
1267
+ <a title="#ols" href="Celerity/Container.html#ols-instance_method">#ols</a>
1268
+
1269
+ <em>(module Container)</em>
1270
+
1271
+ </li>
1272
+
1273
+
1274
+ <li nowrap>
1275
+ <a title="#option" href="Celerity/Container.html#option-instance_method">#option</a>
1276
+
1277
+ <em>(module Container)</em>
1278
+
1279
+ </li>
1280
+
1281
+
1282
+ <li nowrap>
1283
+ <a title="#p" href="Celerity/Container.html#p-instance_method">#p</a>
1284
+
1285
+ <em>(module Container)</em>
1286
+
1287
+ </li>
1288
+
1289
+
1290
+ <li nowrap>
1291
+ <a title="#pre" href="Celerity/Container.html#pre-instance_method">#pre</a>
1292
+
1293
+ <em>(module Container)</em>
1294
+
1295
+ </li>
1296
+
1297
+
1298
+ <li nowrap>
1299
+ <a title="#pres" href="Celerity/Container.html#pres-instance_method">#pres</a>
1300
+
1301
+ <em>(module Container)</em>
1302
+
1303
+ </li>
1304
+
1305
+
1306
+ <li nowrap>
1307
+ <a title="#ps" href="Celerity/Container.html#ps-instance_method">#ps</a>
1308
+
1309
+ <em>(module Container)</em>
1310
+
1311
+ </li>
1312
+
1313
+
1314
+ <li nowrap>
1315
+ <a title="#radio" href="Celerity/Container.html#radio-instance_method">#radio</a>
1316
+
1317
+ <em>(module Container)</em>
1318
+
1319
+ </li>
1320
+
1321
+
1322
+ <li nowrap>
1323
+ <a title="#radios" href="Celerity/Container.html#radios-instance_method">#radios</a>
1324
+
1325
+ <em>(module Container)</em>
1326
+
1327
+ </li>
1328
+
1329
+
1330
+ <li nowrap>
1331
+ <a title="#rescue_status_code_exception" href="Celerity/Container.html#rescue_status_code_exception-instance_method">#rescue_status_code_exception</a>
1332
+
1333
+ <em>(module Container)</em>
1334
+
1335
+ </li>
1336
+
1337
+
1338
+ <li nowrap>
1339
+ <a title="#row" href="Celerity/Container.html#row-instance_method">#row</a>
1340
+
1341
+ <em>(module Container)</em>
1342
+
1343
+ </li>
1344
+
1345
+
1346
+ <li nowrap>
1347
+ <a title="#rows" href="Celerity/Container.html#rows-instance_method">#rows</a>
1348
+
1349
+ <em>(module Container)</em>
1350
+
1351
+ </li>
1352
+
1353
+
1354
+ <li nowrap>
1355
+ <a title="#select_list" href="Celerity/Container.html#select_list-instance_method">#select_list</a>
1356
+
1357
+ <em>(module Container)</em>
1358
+
1359
+ </li>
1360
+
1361
+
1362
+ <li nowrap>
1363
+ <a title="#select_lists" href="Celerity/Container.html#select_lists-instance_method">#select_lists</a>
1364
+
1365
+ <em>(module Container)</em>
1366
+
1367
+ </li>
1368
+
1369
+
1370
+ <li nowrap>
1371
+ <a title="#span" href="Celerity/Container.html#span-instance_method">#span</a>
1372
+
1373
+ <em>(module Container)</em>
1374
+
1375
+ </li>
1376
+
1377
+
1378
+ <li nowrap>
1379
+ <a title="#spans" href="Celerity/Container.html#spans-instance_method">#spans</a>
1380
+
1381
+ <em>(module Container)</em>
1382
+
1383
+ </li>
1384
+
1385
+
1386
+ <li nowrap>
1387
+ <a title="#strong" href="Celerity/Container.html#strong-instance_method">#strong</a>
1388
+
1389
+ <em>(module Container)</em>
1390
+
1391
+ </li>
1392
+
1393
+
1394
+ <li nowrap>
1395
+ <a title="#strongs" href="Celerity/Container.html#strongs-instance_method">#strongs</a>
1396
+
1397
+ <em>(module Container)</em>
1398
+
1399
+ </li>
1400
+
1401
+
1402
+ <li nowrap>
1403
+ <a title="#table" href="Celerity/Container.html#table-instance_method">#table</a>
1404
+
1405
+ <em>(module Container)</em>
1406
+
1407
+ </li>
1408
+
1409
+
1410
+ <li nowrap>
1411
+ <a title="#tables" href="Celerity/Container.html#tables-instance_method">#tables</a>
1412
+
1413
+ <em>(module Container)</em>
1414
+
1415
+ </li>
1416
+
1417
+
1418
+ <li nowrap>
1419
+ <a title="#tbodies" href="Celerity/Container.html#tbodies-instance_method">#tbodies</a>
1420
+
1421
+ <em>(module Container)</em>
1422
+
1423
+ </li>
1424
+
1425
+
1426
+ <li nowrap>
1427
+ <a title="#tbody" href="Celerity/Container.html#tbody-instance_method">#tbody</a>
1428
+
1429
+ <em>(module Container)</em>
1430
+
1431
+ </li>
1432
+
1433
+
1434
+ <li nowrap>
1435
+ <a title="#text_field" href="Celerity/Container.html#text_field-instance_method">#text_field</a>
1436
+
1437
+ <em>(module Container)</em>
1438
+
1439
+ </li>
1440
+
1441
+
1442
+ <li nowrap>
1443
+ <a title="#text_fields" href="Celerity/Container.html#text_fields-instance_method">#text_fields</a>
1444
+
1445
+ <em>(module Container)</em>
1446
+
1447
+ </li>
1448
+
1449
+
1450
+ <li nowrap>
1451
+ <a title="#tfeet" href="Celerity/Container.html#tfeet-instance_method">#tfeet</a>
1452
+
1453
+ <em>(module Container)</em>
1454
+
1455
+ </li>
1456
+
1457
+
1458
+ <li nowrap>
1459
+ <a title="#tfoot" href="Celerity/Container.html#tfoot-instance_method">#tfoot</a>
1460
+
1461
+ <em>(module Container)</em>
1462
+
1463
+ </li>
1464
+
1465
+
1466
+ <li nowrap>
1467
+ <a title="#tfoots" href="Celerity/Container.html#tfoots-instance_method">#tfoots</a>
1468
+
1469
+ <em>(module Container)</em>
1470
+
1471
+ </li>
1472
+
1473
+
1474
+ <li nowrap>
1475
+ <a title="#th" href="Celerity/Container.html#th-instance_method">#th</a>
1476
+
1477
+ <em>(module Container)</em>
1478
+
1479
+ </li>
1480
+
1481
+
1482
+ <li nowrap>
1483
+ <a title="#thead" href="Celerity/Container.html#thead-instance_method">#thead</a>
1484
+
1485
+ <em>(module Container)</em>
1486
+
1487
+ </li>
1488
+
1489
+
1490
+ <li nowrap>
1491
+ <a title="#theads" href="Celerity/Container.html#theads-instance_method">#theads</a>
1492
+
1493
+ <em>(module Container)</em>
1494
+
1495
+ </li>
1496
+
1497
+
1498
+ <li nowrap>
1499
+ <a title="#ths" href="Celerity/Container.html#ths-instance_method">#ths</a>
1500
+
1501
+ <em>(module Container)</em>
1502
+
1503
+ </li>
1504
+
1505
+
1506
+ <li nowrap>
1507
+ <a title="#ul" href="Celerity/Container.html#ul-instance_method">#ul</a>
1508
+
1509
+ <em>(module Container)</em>
1510
+
1511
+ </li>
1512
+
1513
+
1514
+ <li nowrap>
1515
+ <a title="#uls" href="Celerity/Container.html#uls-instance_method">#uls</a>
1516
+
1517
+ <em>(module Container)</em>
1518
+
1519
+ </li>
1520
+
1521
+
1522
+ <li nowrap>
1523
+ <a title="#update_page" href="Celerity/Container.html#update_page-instance_method">#update_page</a>
1524
+
1525
+ <em>(module Container)</em>
1526
+
1527
+ </li>
1528
+
1529
+
1530
+ <li nowrap>
1531
+ <a title="#element_class" href="Celerity/Dds.html#element_class-instance_method">#element_class</a>
1532
+
1533
+ <em>(class Dds)</em>
1534
+
1535
+ </li>
1536
+
1537
+
1538
+ <li nowrap>
1539
+ <a title="save" href="Celerity/DefaultViewer.html#save-class_method">save</a>
1540
+
1541
+ <em>(class DefaultViewer)</em>
1542
+
1543
+ </li>
1544
+
1545
+
1546
+ <li nowrap>
1547
+ <a title="#assert_enabled" href="Celerity/DisabledElement.html#assert_enabled-instance_method">#assert_enabled</a>
1548
+
1549
+ <em>(module DisabledElement)</em>
1550
+
1551
+ </li>
1552
+
1553
+
1554
+ <li nowrap>
1555
+ <a title="#disabled" href="Celerity/DisabledElement.html#disabled-instance_method">#disabled</a>
1556
+
1557
+ <em>(module DisabledElement)</em>
1558
+
1559
+ </li>
1560
+
1561
+
1562
+ <li nowrap>
1563
+ <a title="#disabled?" href="Celerity/DisabledElement.html#disabled%3F-instance_method">#disabled?</a>
1564
+
1565
+ <em>(module DisabledElement)</em>
1566
+
1567
+ </li>
1568
+
1569
+
1570
+ <li nowrap>
1571
+ <a title="#enabled?" href="Celerity/DisabledElement.html#enabled%3F-instance_method">#enabled?</a>
1572
+
1573
+ <em>(module DisabledElement)</em>
1574
+
1575
+ </li>
1576
+
1577
+
1578
+ <li nowrap>
1579
+ <a title="#element_class" href="Celerity/Divs.html#element_class-instance_method">#element_class</a>
1580
+
1581
+ <em>(class Divs)</em>
1582
+
1583
+ </li>
1584
+
1585
+
1586
+ <li nowrap>
1587
+ <a title="#element_class" href="Celerity/Dls.html#element_class-instance_method">#element_class</a>
1588
+
1589
+ <em>(class Dls)</em>
1590
+
1591
+ </li>
1592
+
1593
+
1594
+ <li nowrap>
1595
+ <a title="#element_class" href="Celerity/Dts.html#element_class-instance_method">#element_class</a>
1596
+
1597
+ <em>(class Dts)</em>
1598
+
1599
+ </li>
1600
+
1601
+
1602
+ <li nowrap>
1603
+ <a title="#asXml" href="Celerity/Element.html#asXml-instance_method">#asXml</a>
1604
+
1605
+ <em>(class Element)</em>
1606
+
1607
+ </li>
1608
+
1609
+
1610
+ <li nowrap>
1611
+ <a title="#as_xml" href="Celerity/Element.html#as_xml-instance_method">#as_xml</a>
1612
+
1613
+ <em>(class Element)</em>
1614
+
1615
+ </li>
1616
+
1617
+
1618
+ <li nowrap>
1619
+ <a title="#assert_exists" href="Celerity/Element.html#assert_exists-instance_method">#assert_exists</a>
1620
+
1621
+ <em>(class Element)</em>
1622
+
1623
+ </li>
1624
+
1625
+
1626
+ <li nowrap>
1627
+ <a title="#attribute_string" href="Celerity/Element.html#attribute_string-instance_method">#attribute_string</a>
1628
+
1629
+ <em>(class Element)</em>
1630
+
1631
+ </li>
1632
+
1633
+
1634
+ <li nowrap>
1635
+ <a title="#attribute_value" href="Celerity/Element.html#attribute_value-instance_method">#attribute_value</a>
1636
+
1637
+ <em>(class Element)</em>
1638
+
1639
+ </li>
1640
+
1641
+
1642
+ <li nowrap>
1643
+ <a title="#container" href="Celerity/Element.html#container-instance_method">#container</a>
1644
+
1645
+ <em>(class Element)</em>
1646
+
1647
+ </li>
1648
+
1649
+
1650
+ <li nowrap>
1651
+ <a title="#create_string" href="Celerity/Element.html#create_string-instance_method">#create_string</a>
1652
+
1653
+ <em>(class Element)</em>
1654
+
1655
+ </li>
1656
+
1657
+
1658
+ <li nowrap>
1659
+ <a title="#exist?" href="Celerity/Element.html#exist%3F-instance_method">#exist?</a>
1660
+
1661
+ <em>(class Element)</em>
1662
+
1663
+ </li>
1664
+
1665
+
1666
+ <li nowrap>
1667
+ <a title="#exists" href="Celerity/Element.html#exists-instance_method">#exists</a>
1668
+
1669
+ <em>(class Element)</em>
1670
+
1671
+ </li>
1672
+
1673
+
1674
+ <li nowrap>
1675
+ <a title="#exists?" href="Celerity/Element.html#exists%3F-instance_method">#exists?</a>
1676
+
1677
+ <em>(class Element)</em>
1678
+
1679
+ </li>
1680
+
1681
+
1682
+ <li nowrap>
1683
+ <a title="#fire_event" href="Celerity/Element.html#fire_event-instance_method">#fire_event</a>
1684
+
1685
+ <em>(class Element)</em>
1686
+
1687
+ </li>
1688
+
1689
+
1690
+ <li nowrap>
1691
+ <a title="#focus" href="Celerity/Element.html#focus-instance_method">#focus</a>
1692
+
1693
+ <em>(class Element)</em>
1694
+
1695
+ </li>
1696
+
1697
+
1698
+ <li nowrap>
1699
+ <a title="#html" href="Celerity/Element.html#html-instance_method">#html</a>
1700
+
1701
+ <em>(class Element)</em>
1702
+
1703
+ </li>
1704
+
1705
+
1706
+ <li nowrap>
1707
+ <a title="#identifier_string" href="Celerity/Element.html#identifier_string-instance_method">#identifier_string</a>
1708
+
1709
+ <em>(class Element)</em>
1710
+
1711
+ </li>
1712
+
1713
+
1714
+ <li nowrap>
1715
+ <a title="#initialize" href="Celerity/Element.html#initialize-instance_method">#initialize</a>
1716
+
1717
+ <em>(class Element)</em>
1718
+
1719
+ </li>
1720
+
1721
+
1722
+ <li nowrap>
1723
+ <a title="#innerText" href="Celerity/Element.html#innerText-instance_method">#innerText</a>
1724
+
1725
+ <em>(class Element)</em>
1726
+
1727
+ </li>
1728
+
1729
+
1730
+ <li nowrap>
1731
+ <a title="#inner_text" href="Celerity/Element.html#inner_text-instance_method">#inner_text</a>
1732
+
1733
+ <em>(class Element)</em>
1734
+
1735
+ </li>
1736
+
1737
+
1738
+ <li nowrap>
1739
+ <a title="#locate" href="Celerity/Element.html#locate-instance_method">#locate</a>
1740
+
1741
+ <em>(class Element)</em>
1742
+
1743
+ </li>
1744
+
1745
+
1746
+ <li nowrap>
1747
+ <a title="#method_missing" href="Celerity/Element.html#method_missing-instance_method">#method_missing</a>
1748
+
1749
+ <em>(class Element)</em>
1750
+
1751
+ </li>
1752
+
1753
+
1754
+ <li nowrap>
1755
+ <a title="#methods" href="Celerity/Element.html#methods-instance_method">#methods</a>
1756
+
1757
+ <em>(class Element)</em>
1758
+
1759
+ </li>
1760
+
1761
+
1762
+ <li nowrap>
1763
+ <a title="#object" href="Celerity/Element.html#object-instance_method">#object</a>
1764
+
1765
+ <em>(class Element)</em>
1766
+
1767
+ </li>
1768
+
1769
+
1770
+ <li nowrap>
1771
+ <a title="#parent" href="Celerity/Element.html#parent-instance_method">#parent</a>
1772
+
1773
+ <em>(class Element)</em>
1774
+
1775
+ </li>
1776
+
1777
+
1778
+ <li nowrap>
1779
+ <a title="#respond_to?" href="Celerity/Element.html#respond_to%3F-instance_method">#respond_to?</a>
1780
+
1781
+ <em>(class Element)</em>
1782
+
1783
+ </li>
1784
+
1785
+
1786
+ <li nowrap>
1787
+ <a title="#selector_to_attribute" href="Celerity/Element.html#selector_to_attribute-instance_method">#selector_to_attribute</a>
1788
+
1789
+ <em>(class Element)</em>
1790
+
1791
+ </li>
1792
+
1793
+
1794
+ <li nowrap>
1795
+ <a title="#text" href="Celerity/Element.html#text-instance_method">#text</a>
1796
+
1797
+ <em>(class Element)</em>
1798
+
1799
+ </li>
1800
+
1801
+
1802
+ <li nowrap>
1803
+ <a title="#to_s" href="Celerity/Element.html#to_s-instance_method">#to_s</a>
1804
+
1805
+ <em>(class Element)</em>
1806
+
1807
+ </li>
1808
+
1809
+
1810
+ <li nowrap>
1811
+ <a title="#to_xml" href="Celerity/Element.html#to_xml-instance_method">#to_xml</a>
1812
+
1813
+ <em>(class Element)</em>
1814
+
1815
+ </li>
1816
+
1817
+
1818
+ <li nowrap>
1819
+ <a title="#visible?" href="Celerity/Element.html#visible%3F-instance_method">#visible?</a>
1820
+
1821
+ <em>(class Element)</em>
1822
+
1823
+ </li>
1824
+
1825
+
1826
+ <li nowrap>
1827
+ <a title="#xpath" href="Celerity/Element.html#xpath-instance_method">#xpath</a>
1828
+
1829
+ <em>(class Element)</em>
1830
+
1831
+ </li>
1832
+
1833
+
1834
+ <li nowrap>
1835
+ <a title="#[]" href="Celerity/ElementCollection.html#%5B%5D-instance_method">#[]</a>
1836
+
1837
+ <em>(class ElementCollection)</em>
1838
+
1839
+ </li>
1840
+
1841
+
1842
+ <li nowrap>
1843
+ <a title="#each" href="Celerity/ElementCollection.html#each-instance_method">#each</a>
1844
+
1845
+ <em>(class ElementCollection)</em>
1846
+
1847
+ </li>
1848
+
1849
+
1850
+ <li nowrap>
1851
+ <a title="#first" href="Celerity/ElementCollection.html#first-instance_method">#first</a>
1852
+
1853
+ <em>(class ElementCollection)</em>
1854
+
1855
+ </li>
1856
+
1857
+
1858
+ <li nowrap>
1859
+ <a title="#initialize" href="Celerity/ElementCollection.html#initialize-instance_method">#initialize</a>
1860
+
1861
+ <em>(class ElementCollection)</em>
1862
+
1863
+ </li>
1864
+
1865
+
1866
+ <li nowrap>
1867
+ <a title="#iterator_object" href="Celerity/ElementCollection.html#iterator_object-instance_method">#iterator_object</a>
1868
+
1869
+ <em>(class ElementCollection)</em>
1870
+
1871
+ </li>
1872
+
1873
+
1874
+ <li nowrap>
1875
+ <a title="#last" href="Celerity/ElementCollection.html#last-instance_method">#last</a>
1876
+
1877
+ <em>(class ElementCollection)</em>
1878
+
1879
+ </li>
1880
+
1881
+
1882
+ <li nowrap>
1883
+ <a title="#length" href="Celerity/ElementCollection.html#length-instance_method">#length</a>
1884
+
1885
+ <em>(class ElementCollection)</em>
1886
+
1887
+ </li>
1888
+
1889
+
1890
+ <li nowrap>
1891
+ <a title="#size" href="Celerity/ElementCollection.html#size-instance_method">#size</a>
1892
+
1893
+ <em>(class ElementCollection)</em>
1894
+
1895
+ </li>
1896
+
1897
+
1898
+ <li nowrap>
1899
+ <a title="#to_s" href="Celerity/ElementCollection.html#to_s-instance_method">#to_s</a>
1900
+
1901
+ <em>(class ElementCollection)</em>
1902
+
1903
+ </li>
1904
+
1905
+
1906
+ <li nowrap>
1907
+ <a title="#element_by_idents" href="Celerity/ElementLocator.html#element_by_idents-instance_method">#element_by_idents</a>
1908
+
1909
+ <em>(class ElementLocator)</em>
1910
+
1911
+ </li>
1912
+
1913
+
1914
+ <li nowrap>
1915
+ <a title="#element_matches_ident?" href="Celerity/ElementLocator.html#element_matches_ident%3F-instance_method">#element_matches_ident?</a>
1916
+
1917
+ <em>(class ElementLocator)</em>
1918
+
1919
+ </li>
1920
+
1921
+
1922
+ <li nowrap>
1923
+ <a title="#elements_by_idents" href="Celerity/ElementLocator.html#elements_by_idents-instance_method">#elements_by_idents</a>
1924
+
1925
+ <em>(class ElementLocator)</em>
1926
+
1927
+ </li>
1928
+
1929
+
1930
+ <li nowrap>
1931
+ <a title="#elements_by_tag_names" href="Celerity/ElementLocator.html#elements_by_tag_names-instance_method">#elements_by_tag_names</a>
1932
+
1933
+ <em>(class ElementLocator)</em>
1934
+
1935
+ </li>
1936
+
1937
+
1938
+ <li nowrap>
1939
+ <a title="#find_by_conditions" href="Celerity/ElementLocator.html#find_by_conditions-instance_method">#find_by_conditions</a>
1940
+
1941
+ <em>(class ElementLocator)</em>
1942
+
1943
+ </li>
1944
+
1945
+
1946
+ <li nowrap>
1947
+ <a title="#find_by_id" href="Celerity/ElementLocator.html#find_by_id-instance_method">#find_by_id</a>
1948
+
1949
+ <em>(class ElementLocator)</em>
1950
+
1951
+ </li>
1952
+
1953
+
1954
+ <li nowrap>
1955
+ <a title="#find_by_label" href="Celerity/ElementLocator.html#find_by_label-instance_method">#find_by_label</a>
1956
+
1957
+ <em>(class ElementLocator)</em>
1958
+
1959
+ </li>
1960
+
1961
+
1962
+ <li nowrap>
1963
+ <a title="#find_by_xpath" href="Celerity/ElementLocator.html#find_by_xpath-instance_method">#find_by_xpath</a>
1964
+
1965
+ <em>(class ElementLocator)</em>
1966
+
1967
+ </li>
1968
+
1969
+
1970
+ <li nowrap>
1971
+ <a title="#get_by_idents" href="Celerity/ElementLocator.html#get_by_idents-instance_method">#get_by_idents</a>
1972
+
1973
+ <em>(class ElementLocator)</em>
1974
+
1975
+ </li>
1976
+
1977
+
1978
+ <li nowrap>
1979
+ <a title="#idents" href="Celerity/ElementLocator.html#idents-instance_method">#idents</a>
1980
+
1981
+ <em>(class ElementLocator)</em>
1982
+
1983
+ </li>
1984
+
1985
+
1986
+ <li nowrap>
1987
+ <a title="#idents=" href="Celerity/ElementLocator.html#idents%3D-instance_method">#idents=</a>
1988
+
1989
+ <em>(class ElementLocator)</em>
1990
+
1991
+ </li>
1992
+
1993
+
1994
+ <li nowrap>
1995
+ <a title="#initialize" href="Celerity/ElementLocator.html#initialize-instance_method">#initialize</a>
1996
+
1997
+ <em>(class ElementLocator)</em>
1998
+
1999
+ </li>
2000
+
2001
+
2002
+ <li nowrap>
2003
+ <a title="#matches?" href="Celerity/ElementLocator.html#matches%3F-instance_method">#matches?</a>
2004
+
2005
+ <em>(class ElementLocator)</em>
2006
+
2007
+ </li>
2008
+
2009
+
2010
+ <li nowrap>
2011
+ <a title="#with_nullpointer_retry" href="Celerity/ElementLocator.html#with_nullpointer_retry-instance_method">#with_nullpointer_retry</a>
2012
+
2013
+ <em>(class ElementLocator)</em>
2014
+
2015
+ </li>
2016
+
2017
+
2018
+ <li nowrap>
2019
+ <a title="#element_class" href="Celerity/Ems.html#element_class-instance_method">#element_class</a>
2020
+
2021
+ <em>(class Ems)</em>
2022
+
2023
+ </li>
2024
+
2025
+
2026
+ <li nowrap>
2027
+ <a title="#set" href="Celerity/FileField.html#set-instance_method">#set</a>
2028
+
2029
+ <em>(class FileField)</em>
2030
+
2031
+ </li>
2032
+
2033
+
2034
+ <li nowrap>
2035
+ <a title="#element_class" href="Celerity/FileFields.html#element_class-instance_method">#element_class</a>
2036
+
2037
+ <em>(class FileFields)</em>
2038
+
2039
+ </li>
2040
+
2041
+
2042
+ <li nowrap>
2043
+ <a title="#submit" href="Celerity/Form.html#submit-instance_method">#submit</a>
2044
+
2045
+ <em>(class Form)</em>
2046
+
2047
+ </li>
2048
+
2049
+
2050
+ <li nowrap>
2051
+ <a title="#element_class" href="Celerity/Forms.html#element_class-instance_method">#element_class</a>
2052
+
2053
+ <em>(class Forms)</em>
2054
+
2055
+ </li>
2056
+
2057
+
2058
+ <li nowrap>
2059
+ <a title="#assert_exists" href="Celerity/Frame.html#assert_exists-instance_method">#assert_exists</a>
2060
+
2061
+ <em>(class Frame)</em>
2062
+
2063
+ </li>
2064
+
2065
+
2066
+ <li nowrap>
2067
+ <a title="#execute_script" href="Celerity/Frame.html#execute_script-instance_method">#execute_script</a>
2068
+
2069
+ <em>(class Frame)</em>
2070
+
2071
+ </li>
2072
+
2073
+
2074
+ <li nowrap>
2075
+ <a title="#locate" href="Celerity/Frame.html#locate-instance_method">#locate</a>
2076
+
2077
+ <em>(class Frame)</em>
2078
+
2079
+ </li>
2080
+
2081
+
2082
+ <li nowrap>
2083
+ <a title="#method_missing" href="Celerity/Frame.html#method_missing-instance_method">#method_missing</a>
2084
+
2085
+ <em>(class Frame)</em>
2086
+
2087
+ </li>
2088
+
2089
+
2090
+ <li nowrap>
2091
+ <a title="#page" href="Celerity/Frame.html#page-instance_method">#page</a>
2092
+
2093
+ <em>(class Frame)</em>
2094
+
2095
+ </li>
2096
+
2097
+
2098
+ <li nowrap>
2099
+ <a title="#page=" href="Celerity/Frame.html#page%3D-instance_method">#page=</a>
2100
+
2101
+ <em>(class Frame)</em>
2102
+
2103
+ </li>
2104
+
2105
+
2106
+ <li nowrap>
2107
+ <a title="#to_s" href="Celerity/Frame.html#to_s-instance_method">#to_s</a>
2108
+
2109
+ <em>(class Frame)</em>
2110
+
2111
+ </li>
2112
+
2113
+
2114
+ <li nowrap>
2115
+ <a title="#update_page" href="Celerity/Frame.html#update_page-instance_method">#update_page</a>
2116
+
2117
+ <em>(class Frame)</em>
2118
+
2119
+ </li>
2120
+
2121
+
2122
+ <li nowrap>
2123
+ <a title="#element_class" href="Celerity/Frames.html#element_class-instance_method">#element_class</a>
2124
+
2125
+ <em>(class Frames)</em>
2126
+
2127
+ </li>
2128
+
2129
+
2130
+ <li nowrap>
2131
+ <a title="#element_class" href="Celerity/H1s.html#element_class-instance_method">#element_class</a>
2132
+
2133
+ <em>(class H1s)</em>
2134
+
2135
+ </li>
2136
+
2137
+
2138
+ <li nowrap>
2139
+ <a title="#element_class" href="Celerity/H2s.html#element_class-instance_method">#element_class</a>
2140
+
2141
+ <em>(class H2s)</em>
2142
+
2143
+ </li>
2144
+
2145
+
2146
+ <li nowrap>
2147
+ <a title="#element_class" href="Celerity/H3s.html#element_class-instance_method">#element_class</a>
2148
+
2149
+ <em>(class H3s)</em>
2150
+
2151
+ </li>
2152
+
2153
+
2154
+ <li nowrap>
2155
+ <a title="#element_class" href="Celerity/H4s.html#element_class-instance_method">#element_class</a>
2156
+
2157
+ <em>(class H4s)</em>
2158
+
2159
+ </li>
2160
+
2161
+
2162
+ <li nowrap>
2163
+ <a title="#element_class" href="Celerity/H5s.html#element_class-instance_method">#element_class</a>
2164
+
2165
+ <em>(class H5s)</em>
2166
+
2167
+ </li>
2168
+
2169
+
2170
+ <li nowrap>
2171
+ <a title="#element_class" href="Celerity/H6s.html#element_class-instance_method">#element_class</a>
2172
+
2173
+ <em>(class H6s)</em>
2174
+
2175
+ </li>
2176
+
2177
+
2178
+ <li nowrap>
2179
+ <a title="#visible?" href="Celerity/Hidden.html#visible%3F-instance_method">#visible?</a>
2180
+
2181
+ <em>(class Hidden)</em>
2182
+
2183
+ </li>
2184
+
2185
+
2186
+ <li nowrap>
2187
+ <a title="#element_class" href="Celerity/Hiddens.html#element_class-instance_method">#element_class</a>
2188
+
2189
+ <em>(class Hiddens)</em>
2190
+
2191
+ </li>
2192
+
2193
+
2194
+ <li nowrap>
2195
+ <a title="#fileCreatedDate" href="Celerity/Image.html#fileCreatedDate-instance_method">#fileCreatedDate</a>
2196
+
2197
+ <em>(class Image)</em>
2198
+
2199
+ </li>
2200
+
2201
+
2202
+ <li nowrap>
2203
+ <a title="#fileSize" href="Celerity/Image.html#fileSize-instance_method">#fileSize</a>
2204
+
2205
+ <em>(class Image)</em>
2206
+
2207
+ </li>
2208
+
2209
+
2210
+ <li nowrap>
2211
+ <a title="#file_created_date" href="Celerity/Image.html#file_created_date-instance_method">#file_created_date</a>
2212
+
2213
+ <em>(class Image)</em>
2214
+
2215
+ </li>
2216
+
2217
+
2218
+ <li nowrap>
2219
+ <a title="#file_size" href="Celerity/Image.html#file_size-instance_method">#file_size</a>
2220
+
2221
+ <em>(class Image)</em>
2222
+
2223
+ </li>
2224
+
2225
+
2226
+ <li nowrap>
2227
+ <a title="#hasLoaded?" href="Celerity/Image.html#hasLoaded%3F-instance_method">#hasLoaded?</a>
2228
+
2229
+ <em>(class Image)</em>
2230
+
2231
+ </li>
2232
+
2233
+
2234
+ <li nowrap>
2235
+ <a title="#has_loaded?" href="Celerity/Image.html#has_loaded%3F-instance_method">#has_loaded?</a>
2236
+
2237
+ <em>(class Image)</em>
2238
+
2239
+ </li>
2240
+
2241
+
2242
+ <li nowrap>
2243
+ <a title="#height" href="Celerity/Image.html#height-instance_method">#height</a>
2244
+
2245
+ <em>(class Image)</em>
2246
+
2247
+ </li>
2248
+
2249
+
2250
+ <li nowrap>
2251
+ <a title="#loaded?" href="Celerity/Image.html#loaded%3F-instance_method">#loaded?</a>
2252
+
2253
+ <em>(class Image)</em>
2254
+
2255
+ </li>
2256
+
2257
+
2258
+ <li nowrap>
2259
+ <a title="#save" href="Celerity/Image.html#save-instance_method">#save</a>
2260
+
2261
+ <em>(class Image)</em>
2262
+
2263
+ </li>
2264
+
2265
+
2266
+ <li nowrap>
2267
+ <a title="#width" href="Celerity/Image.html#width-instance_method">#width</a>
2268
+
2269
+ <em>(class Image)</em>
2270
+
2271
+ </li>
2272
+
2273
+
2274
+ <li nowrap>
2275
+ <a title="#element_class" href="Celerity/Images.html#element_class-instance_method">#element_class</a>
2276
+
2277
+ <em>(class Images)</em>
2278
+
2279
+ </li>
2280
+
2281
+
2282
+ <li nowrap>
2283
+ <a title="#assert_not_readonly" href="Celerity/InputElement.html#assert_not_readonly-instance_method">#assert_not_readonly</a>
2284
+
2285
+ <em>(class InputElement)</em>
2286
+
2287
+ </li>
2288
+
2289
+
2290
+ <li nowrap>
2291
+ <a title="#readonly?" href="Celerity/InputElement.html#readonly%3F-instance_method">#readonly?</a>
2292
+
2293
+ <em>(class InputElement)</em>
2294
+
2295
+ </li>
2296
+
2297
+
2298
+ <li nowrap>
2299
+ <a title="#element_class" href="Celerity/Labels.html#element_class-instance_method">#element_class</a>
2300
+
2301
+ <em>(class Labels)</em>
2302
+
2303
+ </li>
2304
+
2305
+
2306
+ <li nowrap>
2307
+ <a title="#absolute_url" href="Celerity/Link.html#absolute_url-instance_method">#absolute_url</a>
2308
+
2309
+ <em>(class Link)</em>
2310
+
2311
+ </li>
2312
+
2313
+
2314
+ <li nowrap>
2315
+ <a title="#click_no_wait" href="Celerity/Link.html#click_no_wait-instance_method">#click_no_wait</a>
2316
+
2317
+ <em>(class Link)</em>
2318
+
2319
+ </li>
2320
+
2321
+
2322
+ <li nowrap>
2323
+ <a title="#element_class" href="Celerity/Links.html#element_class-instance_method">#element_class</a>
2324
+
2325
+ <em>(class Links)</em>
2326
+
2327
+ </li>
2328
+
2329
+
2330
+ <li nowrap>
2331
+ <a title="#element_class" href="Celerity/Lis.html#element_class-instance_method">#element_class</a>
2332
+
2333
+ <em>(class Lis)</em>
2334
+
2335
+ </li>
2336
+
2337
+
2338
+ <li nowrap>
2339
+ <a title="#add_listener" href="Celerity/Listener.html#add_listener-instance_method">#add_listener</a>
2340
+
2341
+ <em>(class Listener)</em>
2342
+
2343
+ </li>
2344
+
2345
+
2346
+ <li nowrap>
2347
+ <a title="#error" href="Celerity/Listener.html#error-instance_method">#error</a>
2348
+
2349
+ <em>(class Listener)</em>
2350
+
2351
+ </li>
2352
+
2353
+
2354
+ <li nowrap>
2355
+ <a title="#handleAlert" href="Celerity/Listener.html#handleAlert-instance_method">#handleAlert</a>
2356
+
2357
+ <em>(class Listener)</em>
2358
+
2359
+ </li>
2360
+
2361
+
2362
+ <li nowrap>
2363
+ <a title="#handleAttachment" href="Celerity/Listener.html#handleAttachment-instance_method">#handleAttachment</a>
2364
+
2365
+ <em>(class Listener)</em>
2366
+
2367
+ </li>
2368
+
2369
+
2370
+ <li nowrap>
2371
+ <a title="#handleConfirm" href="Celerity/Listener.html#handleConfirm-instance_method">#handleConfirm</a>
2372
+
2373
+ <em>(class Listener)</em>
2374
+
2375
+ </li>
2376
+
2377
+
2378
+ <li nowrap>
2379
+ <a title="#handlePrompt" href="Celerity/Listener.html#handlePrompt-instance_method">#handlePrompt</a>
2380
+
2381
+ <em>(class Listener)</em>
2382
+
2383
+ </li>
2384
+
2385
+
2386
+ <li nowrap>
2387
+ <a title="#initialize" href="Celerity/Listener.html#initialize-instance_method">#initialize</a>
2388
+
2389
+ <em>(class Listener)</em>
2390
+
2391
+ </li>
2392
+
2393
+
2394
+ <li nowrap>
2395
+ <a title="#notify" href="Celerity/Listener.html#notify-instance_method">#notify</a>
2396
+
2397
+ <em>(class Listener)</em>
2398
+
2399
+ </li>
2400
+
2401
+
2402
+ <li nowrap>
2403
+ <a title="#remove_listener" href="Celerity/Listener.html#remove_listener-instance_method">#remove_listener</a>
2404
+
2405
+ <em>(class Listener)</em>
2406
+
2407
+ </li>
2408
+
2409
+
2410
+ <li nowrap>
2411
+ <a title="#statusMessageChanged" href="Celerity/Listener.html#statusMessageChanged-instance_method">#statusMessageChanged</a>
2412
+
2413
+ <em>(class Listener)</em>
2414
+
2415
+ </li>
2416
+
2417
+
2418
+ <li nowrap>
2419
+ <a title="#warning" href="Celerity/Listener.html#warning-instance_method">#warning</a>
2420
+
2421
+ <em>(class Listener)</em>
2422
+
2423
+ </li>
2424
+
2425
+
2426
+ <li nowrap>
2427
+ <a title="#webWindowClosed" href="Celerity/Listener.html#webWindowClosed-instance_method">#webWindowClosed</a>
2428
+
2429
+ <em>(class Listener)</em>
2430
+
2431
+ </li>
2432
+
2433
+
2434
+ <li nowrap>
2435
+ <a title="#webWindowContentChanged" href="Celerity/Listener.html#webWindowContentChanged-instance_method">#webWindowContentChanged</a>
2436
+
2437
+ <em>(class Listener)</em>
2438
+
2439
+ </li>
2440
+
2441
+
2442
+ <li nowrap>
2443
+ <a title="#webWindowOpened" href="Celerity/Listener.html#webWindowOpened-instance_method">#webWindowOpened</a>
2444
+
2445
+ <em>(class Listener)</em>
2446
+
2447
+ </li>
2448
+
2449
+
2450
+ <li nowrap>
2451
+ <a title="#element_class" href="Celerity/Maps.html#element_class-instance_method">#element_class</a>
2452
+
2453
+ <em>(class Maps)</em>
2454
+
2455
+ </li>
2456
+
2457
+
2458
+ <li nowrap>
2459
+ <a title="#element_class" href="Celerity/Metas.html#element_class-instance_method">#element_class</a>
2460
+
2461
+ <em>(class Metas)</em>
2462
+
2463
+ </li>
2464
+
2465
+
2466
+ <li nowrap>
2467
+ <a title="#add_button" href="Celerity/MethodGenerator.html#add_button-instance_method">#add_button</a>
2468
+
2469
+ <em>(class MethodGenerator)</em>
2470
+
2471
+ </li>
2472
+
2473
+
2474
+ <li nowrap>
2475
+ <a title="#add_checkbox" href="Celerity/MethodGenerator.html#add_checkbox-instance_method">#add_checkbox</a>
2476
+
2477
+ <em>(class MethodGenerator)</em>
2478
+
2479
+ </li>
2480
+
2481
+
2482
+ <li nowrap>
2483
+ <a title="#add_elements" href="Celerity/MethodGenerator.html#add_elements-instance_method">#add_elements</a>
2484
+
2485
+ <em>(class MethodGenerator)</em>
2486
+
2487
+ </li>
2488
+
2489
+
2490
+ <li nowrap>
2491
+ <a title="#add_link" href="Celerity/MethodGenerator.html#add_link-instance_method">#add_link</a>
2492
+
2493
+ <em>(class MethodGenerator)</em>
2494
+
2495
+ </li>
2496
+
2497
+
2498
+ <li nowrap>
2499
+ <a title="#add_radio" href="Celerity/MethodGenerator.html#add_radio-instance_method">#add_radio</a>
2500
+
2501
+ <em>(class MethodGenerator)</em>
2502
+
2503
+ </li>
2504
+
2505
+
2506
+ <li nowrap>
2507
+ <a title="#add_select_list" href="Celerity/MethodGenerator.html#add_select_list-instance_method">#add_select_list</a>
2508
+
2509
+ <em>(class MethodGenerator)</em>
2510
+
2511
+ </li>
2512
+
2513
+
2514
+ <li nowrap>
2515
+ <a title="#add_text_field" href="Celerity/MethodGenerator.html#add_text_field-instance_method">#add_text_field</a>
2516
+
2517
+ <em>(class MethodGenerator)</em>
2518
+
2519
+ </li>
2520
+
2521
+
2522
+ <li nowrap>
2523
+ <a title="#find_identifier" href="Celerity/MethodGenerator.html#find_identifier-instance_method">#find_identifier</a>
2524
+
2525
+ <em>(class MethodGenerator)</em>
2526
+
2527
+ </li>
2528
+
2529
+
2530
+ <li nowrap>
2531
+ <a title="#initialize" href="Celerity/MethodGenerator.html#initialize-instance_method">#initialize</a>
2532
+
2533
+ <em>(class MethodGenerator)</em>
2534
+
2535
+ </li>
2536
+
2537
+
2538
+ <li nowrap>
2539
+ <a title="#parse" href="Celerity/MethodGenerator.html#parse-instance_method">#parse</a>
2540
+
2541
+ <em>(class MethodGenerator)</em>
2542
+
2543
+ </li>
2544
+
2545
+
2546
+ <li nowrap>
2547
+ <a title="#element_class" href="Celerity/Ols.html#element_class-instance_method">#element_class</a>
2548
+
2549
+ <em>(class Ols)</em>
2550
+
2551
+ </li>
2552
+
2553
+
2554
+ <li nowrap>
2555
+ <a title="#label" href="Celerity/Option.html#label-instance_method">#label</a>
2556
+
2557
+ <em>(class Option)</em>
2558
+
2559
+ </li>
2560
+
2561
+
2562
+ <li nowrap>
2563
+ <a title="#select" href="Celerity/Option.html#select-instance_method">#select</a>
2564
+
2565
+ <em>(class Option)</em>
2566
+
2567
+ </li>
2568
+
2569
+
2570
+ <li nowrap>
2571
+ <a title="#selected?" href="Celerity/Option.html#selected%3F-instance_method">#selected?</a>
2572
+
2573
+ <em>(class Option)</em>
2574
+
2575
+ </li>
2576
+
2577
+
2578
+ <li nowrap>
2579
+ <a title="#element_class" href="Celerity/Options.html#element_class-instance_method">#element_class</a>
2580
+
2581
+ <em>(class Options)</em>
2582
+
2583
+ </li>
2584
+
2585
+
2586
+ <li nowrap>
2587
+ <a title="#element_class" href="Celerity/Pres.html#element_class-instance_method">#element_class</a>
2588
+
2589
+ <em>(class Pres)</em>
2590
+
2591
+ </li>
2592
+
2593
+
2594
+ <li nowrap>
2595
+ <a title="#element_class" href="Celerity/Ps.html#element_class-instance_method">#element_class</a>
2596
+
2597
+ <em>(class Ps)</em>
2598
+
2599
+ </li>
2600
+
2601
+
2602
+ <li nowrap>
2603
+ <a title="#initialize" href="Celerity/Radio.html#initialize-instance_method">#initialize</a>
2604
+
2605
+ <em>(class Radio)</em>
2606
+
2607
+ </li>
2608
+
2609
+
2610
+ <li nowrap>
2611
+ <a title="#set" href="Celerity/Radio.html#set-instance_method">#set</a>
2612
+
2613
+ <em>(class Radio)</em>
2614
+
2615
+ </li>
2616
+
2617
+
2618
+ <li nowrap>
2619
+ <a title="#checked?" href="Celerity/RadioCheckCommon.html#checked%3F-instance_method">#checked?</a>
2620
+
2621
+ <em>(class RadioCheckCommon)</em>
2622
+
2623
+ </li>
2624
+
2625
+
2626
+ <li nowrap>
2627
+ <a title="#clear" href="Celerity/RadioCheckCommon.html#clear-instance_method">#clear</a>
2628
+
2629
+ <em>(class RadioCheckCommon)</em>
2630
+
2631
+ </li>
2632
+
2633
+
2634
+ <li nowrap>
2635
+ <a title="#getState" href="Celerity/RadioCheckCommon.html#getState-instance_method">#getState</a>
2636
+
2637
+ <em>(class RadioCheckCommon)</em>
2638
+
2639
+ </li>
2640
+
2641
+
2642
+ <li nowrap>
2643
+ <a title="#get_state" href="Celerity/RadioCheckCommon.html#get_state-instance_method">#get_state</a>
2644
+
2645
+ <em>(class RadioCheckCommon)</em>
2646
+
2647
+ </li>
2648
+
2649
+
2650
+ <li nowrap>
2651
+ <a title="#initialize" href="Celerity/RadioCheckCommon.html#initialize-instance_method">#initialize</a>
2652
+
2653
+ <em>(class RadioCheckCommon)</em>
2654
+
2655
+ </li>
2656
+
2657
+
2658
+ <li nowrap>
2659
+ <a title="#isSet?" href="Celerity/RadioCheckCommon.html#isSet%3F-instance_method">#isSet?</a>
2660
+
2661
+ <em>(class RadioCheckCommon)</em>
2662
+
2663
+ </li>
2664
+
2665
+
2666
+ <li nowrap>
2667
+ <a title="#is_set?" href="Celerity/RadioCheckCommon.html#is_set%3F-instance_method">#is_set?</a>
2668
+
2669
+ <em>(class RadioCheckCommon)</em>
2670
+
2671
+ </li>
2672
+
2673
+
2674
+ <li nowrap>
2675
+ <a title="#set?" href="Celerity/RadioCheckCommon.html#set%3F-instance_method">#set?</a>
2676
+
2677
+ <em>(class RadioCheckCommon)</em>
2678
+
2679
+ </li>
2680
+
2681
+
2682
+ <li nowrap>
2683
+ <a title="#element_class" href="Celerity/Radios.html#element_class-instance_method">#element_class</a>
2684
+
2685
+ <em>(class Radios)</em>
2686
+
2687
+ </li>
2688
+
2689
+
2690
+ <li nowrap>
2691
+ <a title="#clear" href="Celerity/SelectList.html#clear-instance_method">#clear</a>
2692
+
2693
+ <em>(class SelectList)</em>
2694
+
2695
+ </li>
2696
+
2697
+
2698
+ <li nowrap>
2699
+ <a title="#clearSelection" href="Celerity/SelectList.html#clearSelection-instance_method">#clearSelection</a>
2700
+
2701
+ <em>(class SelectList)</em>
2702
+
2703
+ </li>
2704
+
2705
+
2706
+ <li nowrap>
2707
+ <a title="#clear_selection" href="Celerity/SelectList.html#clear_selection-instance_method">#clear_selection</a>
2708
+
2709
+ <em>(class SelectList)</em>
2710
+
2711
+ </li>
2712
+
2713
+
2714
+ <li nowrap>
2715
+ <a title="#getAllContents" href="Celerity/SelectList.html#getAllContents-instance_method">#getAllContents</a>
2716
+
2717
+ <em>(class SelectList)</em>
2718
+
2719
+ </li>
2720
+
2721
+
2722
+ <li nowrap>
2723
+ <a title="#getSelectedItems" href="Celerity/SelectList.html#getSelectedItems-instance_method">#getSelectedItems</a>
2724
+
2725
+ <em>(class SelectList)</em>
2726
+
2727
+ </li>
2728
+
2729
+
2730
+ <li nowrap>
2731
+ <a title="#include?" href="Celerity/SelectList.html#include%3F-instance_method">#include?</a>
2732
+
2733
+ <em>(class SelectList)</em>
2734
+
2735
+ </li>
2736
+
2737
+
2738
+ <li nowrap>
2739
+ <a title="#includes?" href="Celerity/SelectList.html#includes%3F-instance_method">#includes?</a>
2740
+
2741
+ <em>(class SelectList)</em>
2742
+
2743
+ </li>
2744
+
2745
+
2746
+ <li nowrap>
2747
+ <a title="#matches_option?" href="Celerity/SelectList.html#matches_option%3F-instance_method">#matches_option?</a>
2748
+
2749
+ <em>(class SelectList)</em>
2750
+
2751
+ </li>
2752
+
2753
+
2754
+ <li nowrap>
2755
+ <a title="#options" href="Celerity/SelectList.html#options-instance_method">#options</a>
2756
+
2757
+ <em>(class SelectList)</em>
2758
+
2759
+ </li>
2760
+
2761
+
2762
+ <li nowrap>
2763
+ <a title="#select" href="Celerity/SelectList.html#select-instance_method">#select</a>
2764
+
2765
+ <em>(class SelectList)</em>
2766
+
2767
+ </li>
2768
+
2769
+
2770
+ <li nowrap>
2771
+ <a title="#select_value" href="Celerity/SelectList.html#select_value-instance_method">#select_value</a>
2772
+
2773
+ <em>(class SelectList)</em>
2774
+
2775
+ </li>
2776
+
2777
+
2778
+ <li nowrap>
2779
+ <a title="#selected?" href="Celerity/SelectList.html#selected%3F-instance_method">#selected?</a>
2780
+
2781
+ <em>(class SelectList)</em>
2782
+
2783
+ </li>
2784
+
2785
+
2786
+ <li nowrap>
2787
+ <a title="#selected_options" href="Celerity/SelectList.html#selected_options-instance_method">#selected_options</a>
2788
+
2789
+ <em>(class SelectList)</em>
2790
+
2791
+ </li>
2792
+
2793
+
2794
+ <li nowrap>
2795
+ <a title="#set" href="Celerity/SelectList.html#set-instance_method">#set</a>
2796
+
2797
+ <em>(class SelectList)</em>
2798
+
2799
+ </li>
2800
+
2801
+
2802
+ <li nowrap>
2803
+ <a title="#type" href="Celerity/SelectList.html#type-instance_method">#type</a>
2804
+
2805
+ <em>(class SelectList)</em>
2806
+
2807
+ </li>
2808
+
2809
+
2810
+ <li nowrap>
2811
+ <a title="#value" href="Celerity/SelectList.html#value-instance_method">#value</a>
2812
+
2813
+ <em>(class SelectList)</em>
2814
+
2815
+ </li>
2816
+
2817
+
2818
+ <li nowrap>
2819
+ <a title="#element_class" href="Celerity/SelectLists.html#element_class-instance_method">#element_class</a>
2820
+
2821
+ <em>(class SelectLists)</em>
2822
+
2823
+ </li>
2824
+
2825
+
2826
+ <li nowrap>
2827
+ <a title="#short_inspect" href="Celerity/ShortInspect.html#short_inspect-instance_method">#short_inspect</a>
2828
+
2829
+ <em>(module ShortInspect)</em>
2830
+
2831
+ </li>
2832
+
2833
+
2834
+ <li nowrap>
2835
+ <a title="#element_class" href="Celerity/Spans.html#element_class-instance_method">#element_class</a>
2836
+
2837
+ <em>(class Spans)</em>
2838
+
2839
+ </li>
2840
+
2841
+
2842
+ <li nowrap>
2843
+ <a title="#element_class" href="Celerity/Strongs.html#element_class-instance_method">#element_class</a>
2844
+
2845
+ <em>(class Strongs)</em>
2846
+
2847
+ </li>
2848
+
2849
+
2850
+ <li nowrap>
2851
+ <a title="#[]" href="Celerity/Table.html#%5B%5D-instance_method">#[]</a>
2852
+
2853
+ <em>(class Table)</em>
2854
+
2855
+ </li>
2856
+
2857
+
2858
+ <li nowrap>
2859
+ <a title="#cells" href="Celerity/Table.html#cells-instance_method">#cells</a>
2860
+
2861
+ <em>(class Table)</em>
2862
+
2863
+ </li>
2864
+
2865
+
2866
+ <li nowrap>
2867
+ <a title="#child_cell" href="Celerity/Table.html#child_cell-instance_method">#child_cell</a>
2868
+
2869
+ <em>(class Table)</em>
2870
+
2871
+ </li>
2872
+
2873
+
2874
+ <li nowrap>
2875
+ <a title="#child_row" href="Celerity/Table.html#child_row-instance_method">#child_row</a>
2876
+
2877
+ <em>(class Table)</em>
2878
+
2879
+ </li>
2880
+
2881
+
2882
+ <li nowrap>
2883
+ <a title="#column_count" href="Celerity/Table.html#column_count-instance_method">#column_count</a>
2884
+
2885
+ <em>(class Table)</em>
2886
+
2887
+ </li>
2888
+
2889
+
2890
+ <li nowrap>
2891
+ <a title="#column_values" href="Celerity/Table.html#column_values-instance_method">#column_values</a>
2892
+
2893
+ <em>(class Table)</em>
2894
+
2895
+ </li>
2896
+
2897
+
2898
+ <li nowrap>
2899
+ <a title="#each" href="Celerity/Table.html#each-instance_method">#each</a>
2900
+
2901
+ <em>(class Table)</em>
2902
+
2903
+ </li>
2904
+
2905
+
2906
+ <li nowrap>
2907
+ <a title="#locate" href="Celerity/Table.html#locate-instance_method">#locate</a>
2908
+
2909
+ <em>(class Table)</em>
2910
+
2911
+ </li>
2912
+
2913
+
2914
+ <li nowrap>
2915
+ <a title="#row_count" href="Celerity/Table.html#row_count-instance_method">#row_count</a>
2916
+
2917
+ <em>(class Table)</em>
2918
+
2919
+ </li>
2920
+
2921
+
2922
+ <li nowrap>
2923
+ <a title="#row_values" href="Celerity/Table.html#row_values-instance_method">#row_values</a>
2924
+
2925
+ <em>(class Table)</em>
2926
+
2927
+ </li>
2928
+
2929
+
2930
+ <li nowrap>
2931
+ <a title="#rows" href="Celerity/Table.html#rows-instance_method">#rows</a>
2932
+
2933
+ <em>(class Table)</em>
2934
+
2935
+ </li>
2936
+
2937
+
2938
+ <li nowrap>
2939
+ <a title="#to_a" href="Celerity/Table.html#to_a-instance_method">#to_a</a>
2940
+
2941
+ <em>(class Table)</em>
2942
+
2943
+ </li>
2944
+
2945
+
2946
+ <li nowrap>
2947
+ <a title="#element_class" href="Celerity/TableBodies.html#element_class-instance_method">#element_class</a>
2948
+
2949
+ <em>(class TableBodies)</em>
2950
+
2951
+ </li>
2952
+
2953
+
2954
+ <li nowrap>
2955
+ <a title="#colspan" href="Celerity/TableCell.html#colspan-instance_method">#colspan</a>
2956
+
2957
+ <em>(class TableCell)</em>
2958
+
2959
+ </li>
2960
+
2961
+
2962
+ <li nowrap>
2963
+ <a title="#to_s" href="Celerity/TableCell.html#to_s-instance_method">#to_s</a>
2964
+
2965
+ <em>(class TableCell)</em>
2966
+
2967
+ </li>
2968
+
2969
+
2970
+ <li nowrap>
2971
+ <a title="#element_class" href="Celerity/TableCells.html#element_class-instance_method">#element_class</a>
2972
+
2973
+ <em>(class TableCells)</em>
2974
+
2975
+ </li>
2976
+
2977
+
2978
+ <li nowrap>
2979
+ <a title="#[]" href="Celerity/TableElement.html#%5B%5D-instance_method">#[]</a>
2980
+
2981
+ <em>(class TableElement)</em>
2982
+
2983
+ </li>
2984
+
2985
+
2986
+ <li nowrap>
2987
+ <a title="#each" href="Celerity/TableElement.html#each-instance_method">#each</a>
2988
+
2989
+ <em>(class TableElement)</em>
2990
+
2991
+ </li>
2992
+
2993
+
2994
+ <li nowrap>
2995
+ <a title="#length" href="Celerity/TableElement.html#length-instance_method">#length</a>
2996
+
2997
+ <em>(class TableElement)</em>
2998
+
2999
+ </li>
3000
+
3001
+
3002
+ <li nowrap>
3003
+ <a title="#locate" href="Celerity/TableElement.html#locate-instance_method">#locate</a>
3004
+
3005
+ <em>(class TableElement)</em>
3006
+
3007
+ </li>
3008
+
3009
+
3010
+ <li nowrap>
3011
+ <a title="#element_class" href="Celerity/TableFooters.html#element_class-instance_method">#element_class</a>
3012
+
3013
+ <em>(class TableFooters)</em>
3014
+
3015
+ </li>
3016
+
3017
+
3018
+ <li nowrap>
3019
+ <a title="#element_class" href="Celerity/TableHeaders.html#element_class-instance_method">#element_class</a>
3020
+
3021
+ <em>(class TableHeaders)</em>
3022
+
3023
+ </li>
3024
+
3025
+
3026
+ <li nowrap>
3027
+ <a title="#[]" href="Celerity/TableRow.html#%5B%5D-instance_method">#[]</a>
3028
+
3029
+ <em>(class TableRow)</em>
3030
+
3031
+ </li>
3032
+
3033
+
3034
+ <li nowrap>
3035
+ <a title="#child_cell" href="Celerity/TableRow.html#child_cell-instance_method">#child_cell</a>
3036
+
3037
+ <em>(class TableRow)</em>
3038
+
3039
+ </li>
3040
+
3041
+
3042
+ <li nowrap>
3043
+ <a title="#column_count" href="Celerity/TableRow.html#column_count-instance_method">#column_count</a>
3044
+
3045
+ <em>(class TableRow)</em>
3046
+
3047
+ </li>
3048
+
3049
+
3050
+ <li nowrap>
3051
+ <a title="#each" href="Celerity/TableRow.html#each-instance_method">#each</a>
3052
+
3053
+ <em>(class TableRow)</em>
3054
+
3055
+ </li>
3056
+
3057
+
3058
+ <li nowrap>
3059
+ <a title="#locate" href="Celerity/TableRow.html#locate-instance_method">#locate</a>
3060
+
3061
+ <em>(class TableRow)</em>
3062
+
3063
+ </li>
3064
+
3065
+
3066
+ <li nowrap>
3067
+ <a title="#element_class" href="Celerity/TableRows.html#element_class-instance_method">#element_class</a>
3068
+
3069
+ <em>(class TableRows)</em>
3070
+
3071
+ </li>
3072
+
3073
+
3074
+ <li nowrap>
3075
+ <a title="#element_class" href="Celerity/Tables.html#element_class-instance_method">#element_class</a>
3076
+
3077
+ <em>(class Tables)</em>
3078
+
3079
+ </li>
3080
+
3081
+
3082
+ <li nowrap>
3083
+ <a title="#append" href="Celerity/TextField.html#append-instance_method">#append</a>
3084
+
3085
+ <em>(class TextField)</em>
3086
+
3087
+ </li>
3088
+
3089
+
3090
+ <li nowrap>
3091
+ <a title="#clear" href="Celerity/TextField.html#clear-instance_method">#clear</a>
3092
+
3093
+ <em>(class TextField)</em>
3094
+
3095
+ </li>
3096
+
3097
+
3098
+ <li nowrap>
3099
+ <a title="#contains_text" href="Celerity/TextField.html#contains_text-instance_method">#contains_text</a>
3100
+
3101
+ <em>(class TextField)</em>
3102
+
3103
+ </li>
3104
+
3105
+
3106
+ <li nowrap>
3107
+ <a title="#dragContentsTo" href="Celerity/TextField.html#dragContentsTo-instance_method">#dragContentsTo</a>
3108
+
3109
+ <em>(class TextField)</em>
3110
+
3111
+ </li>
3112
+
3113
+
3114
+ <li nowrap>
3115
+ <a title="#drag_contents_to" href="Celerity/TextField.html#drag_contents_to-instance_method">#drag_contents_to</a>
3116
+
3117
+ <em>(class TextField)</em>
3118
+
3119
+ </li>
3120
+
3121
+
3122
+ <li nowrap>
3123
+ <a title="#getContents" href="Celerity/TextField.html#getContents-instance_method">#getContents</a>
3124
+
3125
+ <em>(class TextField)</em>
3126
+
3127
+ </li>
3128
+
3129
+
3130
+ <li nowrap>
3131
+ <a title="#get_contents" href="Celerity/TextField.html#get_contents-instance_method">#get_contents</a>
3132
+
3133
+ <em>(class TextField)</em>
3134
+
3135
+ </li>
3136
+
3137
+
3138
+ <li nowrap>
3139
+ <a title="#insert_string" href="Celerity/TextField.html#insert_string-instance_method">#insert_string</a>
3140
+
3141
+ <em>(class TextField)</em>
3142
+
3143
+ </li>
3144
+
3145
+
3146
+ <li nowrap>
3147
+ <a title="#requires_typing" href="Celerity/TextField.html#requires_typing-instance_method">#requires_typing</a>
3148
+
3149
+ <em>(class TextField)</em>
3150
+
3151
+ </li>
3152
+
3153
+
3154
+ <li nowrap>
3155
+ <a title="#set" href="Celerity/TextField.html#set-instance_method">#set</a>
3156
+
3157
+ <em>(class TextField)</em>
3158
+
3159
+ </li>
3160
+
3161
+
3162
+ <li nowrap>
3163
+ <a title="#type" href="Celerity/TextField.html#type-instance_method">#type</a>
3164
+
3165
+ <em>(class TextField)</em>
3166
+
3167
+ </li>
3168
+
3169
+
3170
+ <li nowrap>
3171
+ <a title="#type_string" href="Celerity/TextField.html#type_string-instance_method">#type_string</a>
3172
+
3173
+ <em>(class TextField)</em>
3174
+
3175
+ </li>
3176
+
3177
+
3178
+ <li nowrap>
3179
+ <a title="#value" href="Celerity/TextField.html#value-instance_method">#value</a>
3180
+
3181
+ <em>(class TextField)</em>
3182
+
3183
+ </li>
3184
+
3185
+
3186
+ <li nowrap>
3187
+ <a title="#verify_contains" href="Celerity/TextField.html#verify_contains-instance_method">#verify_contains</a>
3188
+
3189
+ <em>(class TextField)</em>
3190
+
3191
+ </li>
3192
+
3193
+
3194
+ <li nowrap>
3195
+ <a title="#visible?" href="Celerity/TextField.html#visible%3F-instance_method">#visible?</a>
3196
+
3197
+ <em>(class TextField)</em>
3198
+
3199
+ </li>
3200
+
3201
+
3202
+ <li nowrap>
3203
+ <a title="#element_class" href="Celerity/TextFields.html#element_class-instance_method">#element_class</a>
3204
+
3205
+ <em>(class TextFields)</em>
3206
+
3207
+ </li>
3208
+
3209
+
3210
+ <li nowrap>
3211
+ <a title="#element_class" href="Celerity/Uls.html#element_class-instance_method">#element_class</a>
3212
+
3213
+ <em>(class Uls)</em>
3214
+
3215
+ </li>
3216
+
3217
+
3218
+ <li nowrap>
3219
+ <a title="#content_type_for" href="Celerity/Util.html#content_type_for-instance_method">#content_type_for</a>
3220
+
3221
+ <em>(module Util)</em>
3222
+
3223
+ </li>
3224
+
3225
+
3226
+ <li nowrap>
3227
+ <a title="#htmlunit2celerity" href="Celerity/Util.html#htmlunit2celerity-instance_method">#htmlunit2celerity</a>
3228
+
3229
+ <em>(module Util)</em>
3230
+
3231
+ </li>
3232
+
3233
+
3234
+ <li nowrap>
3235
+ <a title="#normalize_text" href="Celerity/Util.html#normalize_text-instance_method">#normalize_text</a>
3236
+
3237
+ <em>(module Util)</em>
3238
+
3239
+ </li>
3240
+
3241
+
3242
+ <li nowrap>
3243
+ <a title="#inspect" href="Java/ComGargoylesoftwareHtmlunitHtml/HtmlPage.html#inspect-instance_method">#inspect</a>
3244
+
3245
+ <em>(class HtmlPage)</em>
3246
+
3247
+ </li>
3248
+
3249
+
3250
+ <li nowrap>
3251
+ <a title="#each" href="Java/JavaLang/Iterable.html#each-instance_method">#each</a>
3252
+
3253
+ <em>(module Iterable)</em>
3254
+
3255
+ </li>
3256
+
3257
+
3258
+ <li nowrap>
3259
+ <a title="#each" href="Java/OrgW3cDom/NamedNodeMap.html#each-instance_method">#each</a>
3260
+
3261
+ <em>(module NamedNodeMap)</em>
3262
+
3263
+ </li>
3264
+
3265
+
3266
+ <li nowrap>
3267
+ <a title="#underscore" href="String.html#underscore-instance_method">#underscore</a>
3268
+
3269
+ <em>(class String)</em>
3270
+
3271
+ </li>
3272
+
3273
+ </ul>
3274
+ </div>
3275
+ </body>
3276
+ </html>