watir 6.10.0 → 6.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (280) hide show
  1. checksums.yaml +4 -4
  2. data/.document +5 -5
  3. data/.github/ISSUE_TEMPLATE.md +16 -16
  4. data/.gitignore +21 -21
  5. data/.travis.yml +72 -72
  6. data/CHANGES.md +6 -0
  7. data/Gemfile +16 -16
  8. data/LICENSE +23 -23
  9. data/README.md +106 -106
  10. data/Rakefile +153 -153
  11. data/appveyor.yml +13 -13
  12. data/lib/watir-webdriver.rb +2 -2
  13. data/lib/watir.rb +158 -158
  14. data/lib/watir/adjacent.rb +126 -126
  15. data/lib/watir/after_hooks.rb +132 -132
  16. data/lib/watir/alert.rb +120 -120
  17. data/lib/watir/aliases.rb +6 -6
  18. data/lib/watir/attribute_helper.rb +96 -96
  19. data/lib/watir/browser.rb +349 -349
  20. data/lib/watir/capabilities.rb +123 -123
  21. data/lib/watir/cell_container.rb +25 -25
  22. data/lib/watir/container.rb +51 -51
  23. data/lib/watir/cookies.rb +134 -134
  24. data/lib/watir/element_collection.rb +138 -138
  25. data/lib/watir/elements/area.rb +12 -12
  26. data/lib/watir/elements/button.rb +37 -37
  27. data/lib/watir/elements/cell.rb +17 -17
  28. data/lib/watir/elements/checkbox.rb +56 -56
  29. data/lib/watir/elements/dlist.rb +12 -12
  30. data/lib/watir/elements/element.rb +6 -5
  31. data/lib/watir/elements/file_field.rb +41 -41
  32. data/lib/watir/elements/font.rb +25 -25
  33. data/lib/watir/elements/form.rb +16 -16
  34. data/lib/watir/elements/hidden.rb +25 -25
  35. data/lib/watir/elements/html_elements.rb +2035 -2035
  36. data/lib/watir/elements/iframe.rb +166 -166
  37. data/lib/watir/elements/image.rb +21 -21
  38. data/lib/watir/elements/input.rb +15 -15
  39. data/lib/watir/elements/link.rb +18 -18
  40. data/lib/watir/elements/list.rb +49 -49
  41. data/lib/watir/elements/option.rb +72 -72
  42. data/lib/watir/elements/radio.rb +60 -60
  43. data/lib/watir/elements/row.rb +17 -17
  44. data/lib/watir/elements/select.rb +250 -250
  45. data/lib/watir/elements/svg_elements.rb +613 -613
  46. data/lib/watir/elements/table.rb +76 -76
  47. data/lib/watir/elements/table_cell.rb +31 -31
  48. data/lib/watir/elements/table_row.rb +32 -32
  49. data/lib/watir/elements/table_section.rb +15 -15
  50. data/lib/watir/elements/text_area.rb +5 -5
  51. data/lib/watir/elements/text_field.rb +39 -39
  52. data/lib/watir/exception.rb +16 -16
  53. data/lib/watir/extensions/nokogiri.rb +14 -14
  54. data/lib/watir/generator.rb +3 -3
  55. data/lib/watir/generator/base.rb +11 -11
  56. data/lib/watir/generator/base/generator.rb +115 -115
  57. data/lib/watir/generator/base/idl_sorter.rb +47 -47
  58. data/lib/watir/generator/base/spec_extractor.rb +138 -138
  59. data/lib/watir/generator/base/util.rb +21 -21
  60. data/lib/watir/generator/base/visitor.rb +162 -162
  61. data/lib/watir/generator/html.rb +15 -15
  62. data/lib/watir/generator/html/generator.rb +36 -36
  63. data/lib/watir/generator/html/spec_extractor.rb +50 -50
  64. data/lib/watir/generator/html/visitor.rb +21 -21
  65. data/lib/watir/generator/svg.rb +7 -7
  66. data/lib/watir/generator/svg/generator.rb +38 -38
  67. data/lib/watir/generator/svg/spec_extractor.rb +53 -53
  68. data/lib/watir/generator/svg/visitor.rb +21 -21
  69. data/lib/watir/has_window.rb +68 -68
  70. data/lib/watir/js_execution.rb +143 -143
  71. data/lib/watir/js_snippets.rb +16 -16
  72. data/lib/watir/js_snippets/backgroundColor.js +7 -7
  73. data/lib/watir/js_snippets/fireEvent.js +31 -31
  74. data/lib/watir/js_snippets/focus.js +3 -3
  75. data/lib/watir/js_snippets/getInnerHtml.js +19 -19
  76. data/lib/watir/js_snippets/getInnerText.js +19 -19
  77. data/lib/watir/js_snippets/getOuterHtml.js +20 -20
  78. data/lib/watir/js_snippets/getTextContent.js +19 -19
  79. data/lib/watir/js_snippets/isImageLoaded.js +3 -3
  80. data/lib/watir/js_snippets/selectOptionsLabel.js +10 -10
  81. data/lib/watir/js_snippets/selectOptionsText.js +10 -10
  82. data/lib/watir/js_snippets/selectOptionsValue.js +10 -10
  83. data/lib/watir/js_snippets/selectText.js +64 -64
  84. data/lib/watir/js_snippets/selectedOptions.js +11 -11
  85. data/lib/watir/js_snippets/setValue.js +3 -3
  86. data/lib/watir/legacy_wait.rb +126 -126
  87. data/lib/watir/locators.rb +60 -60
  88. data/lib/watir/locators/button/locator.rb +31 -31
  89. data/lib/watir/locators/button/selector_builder.rb +30 -30
  90. data/lib/watir/locators/button/selector_builder/xpath.rb +29 -29
  91. data/lib/watir/locators/button/validator.rb +15 -15
  92. data/lib/watir/locators/cell/locator.rb +15 -15
  93. data/lib/watir/locators/cell/selector_builder.rb +24 -24
  94. data/lib/watir/locators/element/locator.rb +1 -0
  95. data/lib/watir/locators/element/selector_builder.rb +150 -150
  96. data/lib/watir/locators/element/selector_builder/xpath.rb +119 -119
  97. data/lib/watir/locators/element/validator.rb +18 -18
  98. data/lib/watir/locators/row/locator.rb +15 -15
  99. data/lib/watir/locators/row/selector_builder.rb +29 -29
  100. data/lib/watir/locators/text_area/locator.rb +13 -13
  101. data/lib/watir/locators/text_area/selector_builder.rb +22 -22
  102. data/lib/watir/locators/text_field/locator.rb +30 -30
  103. data/lib/watir/locators/text_field/selector_builder.rb +31 -31
  104. data/lib/watir/locators/text_field/selector_builder/xpath.rb +17 -17
  105. data/lib/watir/locators/text_field/validator.rb +12 -12
  106. data/lib/watir/logger.rb +109 -109
  107. data/lib/watir/radio_set.rb +231 -231
  108. data/lib/watir/row_container.rb +36 -36
  109. data/lib/watir/screenshot.rb +50 -50
  110. data/lib/watir/user_editable.rb +56 -56
  111. data/lib/watir/wait.rb +200 -200
  112. data/lib/watir/wait/timer.rb +52 -52
  113. data/lib/watir/window.rb +257 -257
  114. data/lib/watir/xpath_support.rb +20 -20
  115. data/lib/watirspec.rb +86 -86
  116. data/lib/watirspec/guards.rb +60 -60
  117. data/lib/watirspec/implementation.rb +51 -51
  118. data/lib/watirspec/rake_tasks.rb +115 -115
  119. data/lib/watirspec/remote_server.rb +38 -38
  120. data/lib/watirspec/runner.rb +53 -53
  121. data/lib/watirspec/server.rb +99 -99
  122. data/lib/watirspec/server/app.rb +76 -76
  123. data/spec/browser_spec.rb +278 -278
  124. data/spec/click_spec.rb +19 -19
  125. data/spec/container_spec.rb +34 -34
  126. data/spec/element_locator_spec.rb +517 -517
  127. data/spec/element_spec.rb +158 -158
  128. data/spec/implementation_spec.rb +24 -24
  129. data/spec/input_spec.rb +14 -14
  130. data/spec/locator_spec_helper.rb +55 -55
  131. data/spec/logger_spec.rb +46 -46
  132. data/spec/spec_helper.rb +22 -22
  133. data/spec/special_chars_spec.rb +13 -13
  134. data/spec/watirspec/adjacent_spec.rb +227 -227
  135. data/spec/watirspec/after_hooks_spec.rb +182 -182
  136. data/spec/watirspec/alert_spec.rb +108 -108
  137. data/spec/watirspec/attributes_spec.rb +16 -16
  138. data/spec/watirspec/browser_spec.rb +281 -281
  139. data/spec/watirspec/cookies_spec.rb +154 -154
  140. data/spec/watirspec/drag_and_drop_spec.rb +49 -49
  141. data/spec/watirspec/element_hidden_spec.rb +75 -75
  142. data/spec/watirspec/elements/area_spec.rb +72 -72
  143. data/spec/watirspec/elements/areas_spec.rb +42 -42
  144. data/spec/watirspec/elements/button_spec.rb +277 -277
  145. data/spec/watirspec/elements/buttons_spec.rb +55 -55
  146. data/spec/watirspec/elements/checkbox_spec.rb +275 -275
  147. data/spec/watirspec/elements/checkboxes_spec.rb +44 -44
  148. data/spec/watirspec/elements/collections_spec.rb +52 -52
  149. data/spec/watirspec/elements/dd_spec.rb +124 -124
  150. data/spec/watirspec/elements/dds_spec.rb +42 -42
  151. data/spec/watirspec/elements/del_spec.rb +126 -126
  152. data/spec/watirspec/elements/dels_spec.rb +40 -40
  153. data/spec/watirspec/elements/div_spec.rb +245 -245
  154. data/spec/watirspec/elements/divs_spec.rb +42 -42
  155. data/spec/watirspec/elements/dl_spec.rb +142 -142
  156. data/spec/watirspec/elements/dls_spec.rb +43 -43
  157. data/spec/watirspec/elements/dt_spec.rb +122 -122
  158. data/spec/watirspec/elements/dts_spec.rb +42 -42
  159. data/spec/watirspec/elements/element_spec.rb +483 -483
  160. data/spec/watirspec/elements/elements_spec.rb +47 -47
  161. data/spec/watirspec/elements/em_spec.rb +96 -96
  162. data/spec/watirspec/elements/ems_spec.rb +43 -43
  163. data/spec/watirspec/elements/filefield_spec.rb +170 -170
  164. data/spec/watirspec/elements/filefields_spec.rb +43 -43
  165. data/spec/watirspec/elements/font_spec.rb +29 -29
  166. data/spec/watirspec/elements/form_spec.rb +66 -66
  167. data/spec/watirspec/elements/forms_spec.rb +46 -46
  168. data/spec/watirspec/elements/frame_spec.rb +123 -123
  169. data/spec/watirspec/elements/frames_spec.rb +41 -41
  170. data/spec/watirspec/elements/hidden_spec.rb +104 -104
  171. data/spec/watirspec/elements/hiddens_spec.rb +43 -43
  172. data/spec/watirspec/elements/hn_spec.rb +92 -92
  173. data/spec/watirspec/elements/hns_spec.rb +38 -38
  174. data/spec/watirspec/elements/iframe_spec.rb +10 -0
  175. data/spec/watirspec/elements/iframes_spec.rb +47 -47
  176. data/spec/watirspec/elements/image_spec.rb +158 -158
  177. data/spec/watirspec/elements/images_spec.rb +40 -40
  178. data/spec/watirspec/elements/ins_spec.rb +127 -127
  179. data/spec/watirspec/elements/inses_spec.rb +40 -40
  180. data/spec/watirspec/elements/label_spec.rb +75 -75
  181. data/spec/watirspec/elements/labels_spec.rb +40 -40
  182. data/spec/watirspec/elements/li_spec.rb +111 -111
  183. data/spec/watirspec/elements/link_spec.rb +171 -171
  184. data/spec/watirspec/elements/links_spec.rb +44 -44
  185. data/spec/watirspec/elements/lis_spec.rb +42 -42
  186. data/spec/watirspec/elements/list_spec.rb +32 -32
  187. data/spec/watirspec/elements/map_spec.rb +75 -75
  188. data/spec/watirspec/elements/maps_spec.rb +41 -41
  189. data/spec/watirspec/elements/meta_spec.rb +23 -23
  190. data/spec/watirspec/elements/metas_spec.rb +40 -40
  191. data/spec/watirspec/elements/ol_spec.rb +87 -87
  192. data/spec/watirspec/elements/ols_spec.rb +40 -40
  193. data/spec/watirspec/elements/option_spec.rb +121 -121
  194. data/spec/watirspec/elements/p_spec.rb +111 -111
  195. data/spec/watirspec/elements/pre_spec.rb +111 -111
  196. data/spec/watirspec/elements/pres_spec.rb +40 -40
  197. data/spec/watirspec/elements/ps_spec.rb +40 -40
  198. data/spec/watirspec/elements/radio_spec.rb +273 -273
  199. data/spec/watirspec/elements/radios_spec.rb +43 -43
  200. data/spec/watirspec/elements/select_list_spec.rb +553 -553
  201. data/spec/watirspec/elements/select_lists_spec.rb +46 -46
  202. data/spec/watirspec/elements/span_spec.rb +128 -128
  203. data/spec/watirspec/elements/spans_spec.rb +40 -40
  204. data/spec/watirspec/elements/strong_spec.rb +88 -88
  205. data/spec/watirspec/elements/strongs_spec.rb +43 -43
  206. data/spec/watirspec/elements/table_nesting_spec.rb +51 -51
  207. data/spec/watirspec/elements/table_spec.rb +156 -156
  208. data/spec/watirspec/elements/tables_spec.rb +42 -42
  209. data/spec/watirspec/elements/tbody_spec.rb +93 -93
  210. data/spec/watirspec/elements/tbodys_spec.rb +62 -62
  211. data/spec/watirspec/elements/td_spec.rb +93 -93
  212. data/spec/watirspec/elements/tds_spec.rb +53 -53
  213. data/spec/watirspec/elements/text_field_spec.rb +360 -360
  214. data/spec/watirspec/elements/text_fields_spec.rb +44 -44
  215. data/spec/watirspec/elements/textarea_spec.rb +26 -26
  216. data/spec/watirspec/elements/textareas_spec.rb +24 -24
  217. data/spec/watirspec/elements/tfoot_spec.rb +86 -86
  218. data/spec/watirspec/elements/tfoots_spec.rb +68 -68
  219. data/spec/watirspec/elements/thead_spec.rb +86 -86
  220. data/spec/watirspec/elements/theads_spec.rb +68 -68
  221. data/spec/watirspec/elements/tr_spec.rb +78 -78
  222. data/spec/watirspec/elements/trs_spec.rb +61 -61
  223. data/spec/watirspec/elements/ul_spec.rb +76 -76
  224. data/spec/watirspec/elements/uls_spec.rb +39 -39
  225. data/spec/watirspec/html/alerts.html +12 -12
  226. data/spec/watirspec/html/aria_attributes.html +9 -9
  227. data/spec/watirspec/html/class_locator.html +8 -8
  228. data/spec/watirspec/html/clicks.html +19 -19
  229. data/spec/watirspec/html/closeable.html +12 -12
  230. data/spec/watirspec/html/collections.html +14 -14
  231. data/spec/watirspec/html/css/jquery-ui-1.8.17.custom.css +286 -286
  232. data/spec/watirspec/html/data_attributes.html +9 -9
  233. data/spec/watirspec/html/definition_lists.html +47 -47
  234. data/spec/watirspec/html/drag_and_drop.html +106 -106
  235. data/spec/watirspec/html/font.html +10 -10
  236. data/spec/watirspec/html/forms_with_input_elements.html +174 -174
  237. data/spec/watirspec/html/frame_1.html +22 -22
  238. data/spec/watirspec/html/frame_2.html +15 -15
  239. data/spec/watirspec/html/frames.html +10 -10
  240. data/spec/watirspec/html/hover.html +11 -11
  241. data/spec/watirspec/html/iframe_1.html +22 -22
  242. data/spec/watirspec/html/iframes.html +12 -12
  243. data/spec/watirspec/html/images.html +27 -27
  244. data/spec/watirspec/html/inner_outer.html +4 -4
  245. data/spec/watirspec/html/javascript/angular.min.js +331 -331
  246. data/spec/watirspec/html/javascript/helpers.js +16 -16
  247. data/spec/watirspec/html/javascript/jquery-1.7.1.min.js +3 -3
  248. data/spec/watirspec/html/javascript/jquery-ui-1.8.17.custom.min.js +67 -67
  249. data/spec/watirspec/html/keylogger.html +14 -14
  250. data/spec/watirspec/html/modal_dialog.html +9 -9
  251. data/spec/watirspec/html/multiple_ids.html +14 -14
  252. data/spec/watirspec/html/nested_elements.html +33 -33
  253. data/spec/watirspec/html/nested_frame_2.html +9 -9
  254. data/spec/watirspec/html/nested_frame_3.html +14 -14
  255. data/spec/watirspec/html/nested_frames.html +10 -10
  256. data/spec/watirspec/html/nested_iframe_2.html +12 -12
  257. data/spec/watirspec/html/nested_iframes.html +13 -13
  258. data/spec/watirspec/html/nested_tables.html +202 -202
  259. data/spec/watirspec/html/non_control_elements.html +140 -140
  260. data/spec/watirspec/html/removed_element.html +24 -24
  261. data/spec/watirspec/html/right_click.html +10 -10
  262. data/spec/watirspec/html/special_chars.html +11 -11
  263. data/spec/watirspec/html/tables.html +120 -120
  264. data/spec/watirspec/html/timeout_window_location.html +19 -19
  265. data/spec/watirspec/html/uneven_table.html +20 -20
  266. data/spec/watirspec/html/wait.html +84 -84
  267. data/spec/watirspec/html/window_switching.html +11 -11
  268. data/spec/watirspec/radio_set_spec.rb +336 -336
  269. data/spec/watirspec/relaxed_locate_spec.rb +99 -99
  270. data/spec/watirspec/screenshot_spec.rb +29 -29
  271. data/spec/watirspec/support/raise_exception_matchers.rb +36 -36
  272. data/spec/watirspec/wait_spec.rb +381 -381
  273. data/spec/watirspec/window_switching_spec.rb +415 -415
  274. data/spec/watirspec_helper.rb +161 -161
  275. data/support/appveyor.cmd +9 -9
  276. data/support/doctest_helper.rb +101 -101
  277. data/support/travis.sh +11 -11
  278. data/support/version_differ.rb +59 -59
  279. data/watir.gemspec +1 -1
  280. metadata +4 -170
@@ -1,613 +1,613 @@
1
- # Autogenerated from SVG specification. Edits may be lost.
2
- module Watir
3
- class SVGElement < HTMLElement
4
- attribute(String, :classname, :className)
5
- attribute(String, :dataset, :dataset)
6
- attribute(String, :ownersvgelement, :ownerSVGElement)
7
- attribute(String, :viewportelement, :viewportElement)
8
- attribute(Integer, :tabindex, :tabIndex)
9
- attribute(String, :correspondingelement, :correspondingElement)
10
- attribute(String, :correspondinguseelement, :correspondingUseElement)
11
- end
12
- class SVGElementCollection < ElementCollection
13
- end
14
-
15
- class View < SVGElement
16
- attribute(String, :viewbox, :viewBox)
17
- attribute(String, :preserveaspectratio, :preserveAspectRatio)
18
- attribute(Integer, :zoomandpan, :zoomAndPan)
19
- end
20
- class ViewCollection < ElementCollection
21
- end
22
-
23
- class Cursor < SVGElement
24
- attribute(Integer, :x, :x)
25
- attribute(Integer, :y, :y)
26
- attribute(String, :href, :href)
27
- end
28
- class CursorCollection < ElementCollection
29
- end
30
-
31
- class Hatchpath < SVGElement
32
- end
33
- class HatchpathCollection < ElementCollection
34
- end
35
-
36
- class Hatch < SVGElement
37
- end
38
- class HatchCollection < ElementCollection
39
- end
40
-
41
- class Pattern < SVGElement
42
- attribute(String, :patternunits, :patternUnits)
43
- attribute(String, :patterncontentunits, :patternContentUnits)
44
- attribute(String, :patterntransform, :patternTransform)
45
- attribute(Integer, :x, :x)
46
- attribute(Integer, :y, :y)
47
- attribute(Integer, :width, :width)
48
- attribute(Integer, :height, :height)
49
- attribute(String, :viewbox, :viewBox)
50
- attribute(String, :preserveaspectratio, :preserveAspectRatio)
51
- attribute(String, :href, :href)
52
- end
53
- class PatternCollection < ElementCollection
54
- end
55
-
56
- class Stop < SVGElement
57
- attribute(String, :offset, :offset)
58
- end
59
- class StopCollection < ElementCollection
60
- end
61
-
62
- class Meshpatch < SVGElement
63
- end
64
- class MeshpatchCollection < ElementCollection
65
- end
66
-
67
- class Meshrow < SVGElement
68
- end
69
- class MeshrowCollection < ElementCollection
70
- end
71
-
72
- class Gradient < SVGElement
73
- attribute(String, :gradientunits, :gradientUnits)
74
- attribute(String, :gradienttransform, :gradientTransform)
75
- attribute(String, :spreadmethod, :spreadMethod)
76
- attribute(String, :href, :href)
77
- end
78
- class GradientCollection < ElementCollection
79
- end
80
-
81
- class MeshGradient < Gradient
82
- end
83
- class MeshGradientCollection < ElementCollection
84
- end
85
-
86
- class RadialGradient < Gradient
87
- attribute(Integer, :cx, :cx)
88
- attribute(Integer, :cy, :cy)
89
- attribute(Integer, :r, :r)
90
- attribute(Integer, :fx, :fx)
91
- attribute(Integer, :fy, :fy)
92
- attribute(Integer, :fr, :fr)
93
- end
94
- class RadialGradientCollection < ElementCollection
95
- end
96
-
97
- class LinearGradient < Gradient
98
- attribute(Integer, :x1, :x1)
99
- attribute(Integer, :y1, :y1)
100
- attribute(Integer, :x2, :x2)
101
- attribute(Integer, :y2, :y2)
102
- end
103
- class LinearGradientCollection < ElementCollection
104
- end
105
-
106
- class Solidcolor < SVGElement
107
- end
108
- class SolidcolorCollection < ElementCollection
109
- end
110
-
111
- class Marker < SVGElement
112
- attribute(Integer, :refx, :refX)
113
- attribute(Integer, :refy, :refY)
114
- attribute(String, :markerunits, :markerUnits)
115
- attribute(Integer, :markerwidth, :markerWidth)
116
- attribute(Integer, :markerheight, :markerHeight)
117
- attribute(String, :orienttype, :orientType)
118
- attribute(String, :orientangle, :orientAngle)
119
- attribute(String, :orient, :orient)
120
- attribute(String, :viewbox, :viewBox)
121
- attribute(String, :preserveaspectratio, :preserveAspectRatio)
122
- end
123
- class MarkerCollection < ElementCollection
124
- end
125
-
126
- class Metadata < SVGElement
127
- end
128
- class MetadataCollection < ElementCollection
129
- end
130
-
131
- class Desc < SVGElement
132
- end
133
- class DescCollection < ElementCollection
134
- end
135
-
136
- class Graphics < SVGElement
137
- attribute(String, :transform, :transform)
138
- attribute(String, :requiredextensions, :requiredExtensions)
139
- attribute(String, :systemlanguage, :systemLanguage)
140
- end
141
- class GraphicsCollection < ElementCollection
142
- end
143
-
144
- class ForeignObject < Graphics
145
- attribute(Integer, :x, :x)
146
- attribute(Integer, :y, :y)
147
- attribute(Integer, :width, :width)
148
- attribute(Integer, :height, :height)
149
- end
150
- class ForeignObjectCollection < ElementCollection
151
- end
152
-
153
- class TextContent < Graphics
154
- attribute(Integer, :textlength, :textLength)
155
- attribute(String, :lengthadjust, :lengthAdjust)
156
- end
157
- class TextContentCollection < ElementCollection
158
- end
159
-
160
- class TextPath < TextContent
161
- attribute(Integer, :startoffset, :startOffset)
162
- attribute(String, :method, :method)
163
- attribute(String, :spacing, :spacing)
164
- attribute(String, :href, :href)
165
- end
166
- class TextPathCollection < ElementCollection
167
- end
168
-
169
- class TextPositioning < TextContent
170
- attribute(String, :x, :x)
171
- attribute(String, :y, :y)
172
- attribute(String, :dx, :dx)
173
- attribute(String, :dy, :dy)
174
- attribute(String, :rotate, :rotate)
175
- end
176
- class TextPositioningCollection < ElementCollection
177
- end
178
-
179
- class TSpan < TextPositioning
180
- end
181
- class TSpanCollection < ElementCollection
182
- end
183
-
184
- class Switch < Graphics
185
- end
186
- class SwitchCollection < ElementCollection
187
- end
188
-
189
- class Use < Graphics
190
- attribute(Integer, :x, :x)
191
- attribute(Integer, :y, :y)
192
- attribute(Integer, :width, :width)
193
- attribute(Integer, :height, :height)
194
- attribute(String, :instanceroot, :instanceRoot)
195
- attribute(String, :animatedinstanceroot, :animatedInstanceRoot)
196
- attribute(String, :href, :href)
197
- end
198
- class UseCollection < ElementCollection
199
- end
200
-
201
- class Symbol < Graphics
202
- attribute(String, :viewbox, :viewBox)
203
- attribute(String, :preserveaspectratio, :preserveAspectRatio)
204
- end
205
- class SymbolCollection < ElementCollection
206
- end
207
-
208
- class Defs < Graphics
209
- end
210
- class DefsCollection < ElementCollection
211
- end
212
-
213
- class G < Graphics
214
- end
215
- class GCollection < ElementCollection
216
- end
217
-
218
- class SVG < Graphics
219
- attribute(Integer, :x, :x)
220
- attribute(Integer, :y, :y)
221
- attribute(Integer, :width, :width)
222
- attribute(Integer, :height, :height)
223
- attribute(Float, :currentscale, :currentScale)
224
- attribute(String, :currenttranslate, :currentTranslate)
225
- attribute(String, :viewbox, :viewBox)
226
- attribute(String, :preserveaspectratio, :preserveAspectRatio)
227
- attribute(Integer, :zoomandpan, :zoomAndPan)
228
- end
229
- class SVGCollection < ElementCollection
230
- end
231
-
232
- class Geometry < Graphics
233
- attribute(String, :pathlength, :pathLength)
234
- end
235
- class GeometryCollection < ElementCollection
236
- end
237
-
238
- class Polygon < Geometry
239
- attribute(String, :points, :points)
240
- attribute(String, :animatedpoints, :animatedPoints)
241
- end
242
- class PolygonCollection < ElementCollection
243
- end
244
-
245
- class Polyline < Geometry
246
- attribute(String, :points, :points)
247
- attribute(String, :animatedpoints, :animatedPoints)
248
- end
249
- class PolylineCollection < ElementCollection
250
- end
251
-
252
- class Mesh < Geometry
253
- attribute(String, :href, :href)
254
- end
255
- class MeshCollection < ElementCollection
256
- end
257
-
258
- class Line < Geometry
259
- attribute(Integer, :x1, :x1)
260
- attribute(Integer, :y1, :y1)
261
- attribute(Integer, :x2, :x2)
262
- attribute(Integer, :y2, :y2)
263
- end
264
- class LineCollection < ElementCollection
265
- end
266
-
267
- class Ellipse < Geometry
268
- attribute(Integer, :cx, :cx)
269
- attribute(Integer, :cy, :cy)
270
- attribute(Integer, :rx, :rx)
271
- attribute(Integer, :ry, :ry)
272
- end
273
- class EllipseCollection < ElementCollection
274
- end
275
-
276
- class Circle < Geometry
277
- attribute(Integer, :cx, :cx)
278
- attribute(Integer, :cy, :cy)
279
- attribute(Integer, :r, :r)
280
- end
281
- class CircleCollection < ElementCollection
282
- end
283
-
284
- class Rect < Geometry
285
- attribute(Integer, :x, :x)
286
- attribute(Integer, :y, :y)
287
- attribute(Integer, :width, :width)
288
- attribute(Integer, :height, :height)
289
- attribute(Integer, :rx, :rx)
290
- attribute(Integer, :ry, :ry)
291
- end
292
- class RectCollection < ElementCollection
293
- end
294
-
295
- class Path < Geometry
296
- end
297
- class PathCollection < ElementCollection
298
- end
299
-
300
-
301
- module Container
302
-
303
- # @return [Circle]
304
- def circle(*args)
305
- Circle.new(self, extract_selector(args).merge(tag_name: "circle"))
306
- end
307
- # @return [CircleCollection]
308
- def circles(*args)
309
- CircleCollection.new(self, extract_selector(args).merge(tag_name: "circle"))
310
- end
311
- Watir.tag_to_class[:circle] = Circle
312
-
313
- # @return [Cursor]
314
- def cursor(*args)
315
- Cursor.new(self, extract_selector(args).merge(tag_name: "cursor"))
316
- end
317
- # @return [CursorCollection]
318
- def cursors(*args)
319
- CursorCollection.new(self, extract_selector(args).merge(tag_name: "cursor"))
320
- end
321
- Watir.tag_to_class[:cursor] = Cursor
322
-
323
- # @return [Defs]
324
- def defs(*args)
325
- Defs.new(self, extract_selector(args).merge(tag_name: "defs"))
326
- end
327
- # @return [DefsCollection]
328
- def defss(*args)
329
- DefsCollection.new(self, extract_selector(args).merge(tag_name: "defs"))
330
- end
331
- Watir.tag_to_class[:defs] = Defs
332
-
333
- # @return [Desc]
334
- def desc(*args)
335
- Desc.new(self, extract_selector(args).merge(tag_name: "desc"))
336
- end
337
- # @return [DescCollection]
338
- def descs(*args)
339
- DescCollection.new(self, extract_selector(args).merge(tag_name: "desc"))
340
- end
341
- Watir.tag_to_class[:desc] = Desc
342
-
343
- # @return [Ellipse]
344
- def ellipse(*args)
345
- Ellipse.new(self, extract_selector(args).merge(tag_name: "ellipse"))
346
- end
347
- # @return [EllipseCollection]
348
- def ellipses(*args)
349
- EllipseCollection.new(self, extract_selector(args).merge(tag_name: "ellipse"))
350
- end
351
- Watir.tag_to_class[:ellipse] = Ellipse
352
-
353
- # @return [ForeignObject]
354
- def foreign_object(*args)
355
- ForeignObject.new(self, extract_selector(args).merge(tag_name: "foreignObject"))
356
- end
357
- # @return [ForeignObjectCollection]
358
- def foreign_objects(*args)
359
- ForeignObjectCollection.new(self, extract_selector(args).merge(tag_name: "foreignObject"))
360
- end
361
- Watir.tag_to_class[:foreignObject] = ForeignObject
362
-
363
- # @return [G]
364
- def g(*args)
365
- G.new(self, extract_selector(args).merge(tag_name: "g"))
366
- end
367
- # @return [GCollection]
368
- def gs(*args)
369
- GCollection.new(self, extract_selector(args).merge(tag_name: "g"))
370
- end
371
- Watir.tag_to_class[:g] = G
372
-
373
- # @return [Hatchpath]
374
- def hatchpath(*args)
375
- Hatchpath.new(self, extract_selector(args).merge(tag_name: "hatchpath"))
376
- end
377
- # @return [HatchpathCollection]
378
- def hatchpaths(*args)
379
- HatchpathCollection.new(self, extract_selector(args).merge(tag_name: "hatchpath"))
380
- end
381
- Watir.tag_to_class[:hatchpath] = Hatchpath
382
-
383
- # @return [Line]
384
- def line(*args)
385
- Line.new(self, extract_selector(args).merge(tag_name: "line"))
386
- end
387
- # @return [LineCollection]
388
- def lines(*args)
389
- LineCollection.new(self, extract_selector(args).merge(tag_name: "line"))
390
- end
391
- Watir.tag_to_class[:line] = Line
392
-
393
- # @return [LinearGradient]
394
- def linear_gradient(*args)
395
- LinearGradient.new(self, extract_selector(args).merge(tag_name: "linearGradient"))
396
- end
397
- # @return [LinearGradientCollection]
398
- def linear_gradients(*args)
399
- LinearGradientCollection.new(self, extract_selector(args).merge(tag_name: "linearGradient"))
400
- end
401
- Watir.tag_to_class[:linearGradient] = LinearGradient
402
-
403
- # @return [Marker]
404
- def marker(*args)
405
- Marker.new(self, extract_selector(args).merge(tag_name: "marker"))
406
- end
407
- # @return [MarkerCollection]
408
- def markers(*args)
409
- MarkerCollection.new(self, extract_selector(args).merge(tag_name: "marker"))
410
- end
411
- Watir.tag_to_class[:marker] = Marker
412
-
413
- # @return [Mesh]
414
- def mesh(*args)
415
- Mesh.new(self, extract_selector(args).merge(tag_name: "mesh"))
416
- end
417
- # @return [MeshCollection]
418
- def meshes(*args)
419
- MeshCollection.new(self, extract_selector(args).merge(tag_name: "mesh"))
420
- end
421
- Watir.tag_to_class[:mesh] = Mesh
422
-
423
- # @return [MeshGradient]
424
- def meshgradient(*args)
425
- MeshGradient.new(self, extract_selector(args).merge(tag_name: "meshgradient"))
426
- end
427
- # @return [MeshGradientCollection]
428
- def meshgradients(*args)
429
- MeshGradientCollection.new(self, extract_selector(args).merge(tag_name: "meshgradient"))
430
- end
431
- Watir.tag_to_class[:meshgradient] = MeshGradient
432
-
433
- # @return [Meshpatch]
434
- def meshpatch(*args)
435
- Meshpatch.new(self, extract_selector(args).merge(tag_name: "meshpatch"))
436
- end
437
- # @return [MeshpatchCollection]
438
- def meshpatches(*args)
439
- MeshpatchCollection.new(self, extract_selector(args).merge(tag_name: "meshpatch"))
440
- end
441
- Watir.tag_to_class[:meshpatch] = Meshpatch
442
-
443
- # @return [Meshrow]
444
- def meshrow(*args)
445
- Meshrow.new(self, extract_selector(args).merge(tag_name: "meshrow"))
446
- end
447
- # @return [MeshrowCollection]
448
- def meshrows(*args)
449
- MeshrowCollection.new(self, extract_selector(args).merge(tag_name: "meshrow"))
450
- end
451
- Watir.tag_to_class[:meshrow] = Meshrow
452
-
453
- # @return [Metadata]
454
- def metadata(*args)
455
- Metadata.new(self, extract_selector(args).merge(tag_name: "metadata"))
456
- end
457
- # @return [MetadataCollection]
458
- def metadatas(*args)
459
- MetadataCollection.new(self, extract_selector(args).merge(tag_name: "metadata"))
460
- end
461
- Watir.tag_to_class[:metadata] = Metadata
462
-
463
- # @return [Path]
464
- def path(*args)
465
- Path.new(self, extract_selector(args).merge(tag_name: "path"))
466
- end
467
- # @return [PathCollection]
468
- def paths(*args)
469
- PathCollection.new(self, extract_selector(args).merge(tag_name: "path"))
470
- end
471
- Watir.tag_to_class[:path] = Path
472
-
473
- # @return [Pattern]
474
- def pattern(*args)
475
- Pattern.new(self, extract_selector(args).merge(tag_name: "pattern"))
476
- end
477
- # @return [PatternCollection]
478
- def patterns(*args)
479
- PatternCollection.new(self, extract_selector(args).merge(tag_name: "pattern"))
480
- end
481
- Watir.tag_to_class[:pattern] = Pattern
482
-
483
- # @return [Polygon]
484
- def polygon(*args)
485
- Polygon.new(self, extract_selector(args).merge(tag_name: "polygon"))
486
- end
487
- # @return [PolygonCollection]
488
- def polygons(*args)
489
- PolygonCollection.new(self, extract_selector(args).merge(tag_name: "polygon"))
490
- end
491
- Watir.tag_to_class[:polygon] = Polygon
492
-
493
- # @return [Polyline]
494
- def polyline(*args)
495
- Polyline.new(self, extract_selector(args).merge(tag_name: "polyline"))
496
- end
497
- # @return [PolylineCollection]
498
- def polylines(*args)
499
- PolylineCollection.new(self, extract_selector(args).merge(tag_name: "polyline"))
500
- end
501
- Watir.tag_to_class[:polyline] = Polyline
502
-
503
- # @return [RadialGradient]
504
- def radial_gradient(*args)
505
- RadialGradient.new(self, extract_selector(args).merge(tag_name: "radialGradient"))
506
- end
507
- # @return [RadialGradientCollection]
508
- def radial_gradients(*args)
509
- RadialGradientCollection.new(self, extract_selector(args).merge(tag_name: "radialGradient"))
510
- end
511
- Watir.tag_to_class[:radialGradient] = RadialGradient
512
-
513
- # @return [Rect]
514
- def rect(*args)
515
- Rect.new(self, extract_selector(args).merge(tag_name: "rect"))
516
- end
517
- # @return [RectCollection]
518
- def rects(*args)
519
- RectCollection.new(self, extract_selector(args).merge(tag_name: "rect"))
520
- end
521
- Watir.tag_to_class[:rect] = Rect
522
-
523
- # @return [Solidcolor]
524
- def solidcolor(*args)
525
- Solidcolor.new(self, extract_selector(args).merge(tag_name: "solidcolor"))
526
- end
527
- # @return [SolidcolorCollection]
528
- def solidcolors(*args)
529
- SolidcolorCollection.new(self, extract_selector(args).merge(tag_name: "solidcolor"))
530
- end
531
- Watir.tag_to_class[:solidcolor] = Solidcolor
532
-
533
- # @return [Stop]
534
- def stop(*args)
535
- Stop.new(self, extract_selector(args).merge(tag_name: "stop"))
536
- end
537
- # @return [StopCollection]
538
- def stops(*args)
539
- StopCollection.new(self, extract_selector(args).merge(tag_name: "stop"))
540
- end
541
- Watir.tag_to_class[:stop] = Stop
542
-
543
- # @return [SVG]
544
- def svg(*args)
545
- SVG.new(self, extract_selector(args).merge(tag_name: "svg"))
546
- end
547
- # @return [SVGCollection]
548
- def svgs(*args)
549
- SVGCollection.new(self, extract_selector(args).merge(tag_name: "svg"))
550
- end
551
- Watir.tag_to_class[:svg] = SVG
552
-
553
- # @return [Switch]
554
- def switch(*args)
555
- Switch.new(self, extract_selector(args).merge(tag_name: "switch"))
556
- end
557
- # @return [SwitchCollection]
558
- def switches(*args)
559
- SwitchCollection.new(self, extract_selector(args).merge(tag_name: "switch"))
560
- end
561
- Watir.tag_to_class[:switch] = Switch
562
-
563
- # @return [Symbol]
564
- def symbol(*args)
565
- Symbol.new(self, extract_selector(args).merge(tag_name: "symbol"))
566
- end
567
- # @return [SymbolCollection]
568
- def symbols(*args)
569
- SymbolCollection.new(self, extract_selector(args).merge(tag_name: "symbol"))
570
- end
571
- Watir.tag_to_class[:symbol] = Symbol
572
-
573
- # @return [TextPath]
574
- def text_path(*args)
575
- TextPath.new(self, extract_selector(args).merge(tag_name: "textPath"))
576
- end
577
- # @return [TextPathCollection]
578
- def text_paths(*args)
579
- TextPathCollection.new(self, extract_selector(args).merge(tag_name: "textPath"))
580
- end
581
- Watir.tag_to_class[:textPath] = TextPath
582
-
583
- # @return [TSpan]
584
- def tspan(*args)
585
- TSpan.new(self, extract_selector(args).merge(tag_name: "tspan"))
586
- end
587
- # @return [TSpanCollection]
588
- def tspans(*args)
589
- TSpanCollection.new(self, extract_selector(args).merge(tag_name: "tspan"))
590
- end
591
- Watir.tag_to_class[:tspan] = TSpan
592
-
593
- # @return [Use]
594
- def use(*args)
595
- Use.new(self, extract_selector(args).merge(tag_name: "use"))
596
- end
597
- # @return [UseCollection]
598
- def uses(*args)
599
- UseCollection.new(self, extract_selector(args).merge(tag_name: "use"))
600
- end
601
- Watir.tag_to_class[:use] = Use
602
-
603
- # @return [View]
604
- def view(*args)
605
- View.new(self, extract_selector(args).merge(tag_name: "view"))
606
- end
607
- # @return [ViewCollection]
608
- def views(*args)
609
- ViewCollection.new(self, extract_selector(args).merge(tag_name: "view"))
610
- end
611
- Watir.tag_to_class[:view] = View
612
- end # Container
613
- end # Watir
1
+ # Autogenerated from SVG specification. Edits may be lost.
2
+ module Watir
3
+ class SVGElement < HTMLElement
4
+ attribute(String, :classname, :className)
5
+ attribute(String, :dataset, :dataset)
6
+ attribute(String, :ownersvgelement, :ownerSVGElement)
7
+ attribute(String, :viewportelement, :viewportElement)
8
+ attribute(Integer, :tabindex, :tabIndex)
9
+ attribute(String, :correspondingelement, :correspondingElement)
10
+ attribute(String, :correspondinguseelement, :correspondingUseElement)
11
+ end
12
+ class SVGElementCollection < ElementCollection
13
+ end
14
+
15
+ class View < SVGElement
16
+ attribute(String, :viewbox, :viewBox)
17
+ attribute(String, :preserveaspectratio, :preserveAspectRatio)
18
+ attribute(Integer, :zoomandpan, :zoomAndPan)
19
+ end
20
+ class ViewCollection < ElementCollection
21
+ end
22
+
23
+ class Cursor < SVGElement
24
+ attribute(Integer, :x, :x)
25
+ attribute(Integer, :y, :y)
26
+ attribute(String, :href, :href)
27
+ end
28
+ class CursorCollection < ElementCollection
29
+ end
30
+
31
+ class Hatchpath < SVGElement
32
+ end
33
+ class HatchpathCollection < ElementCollection
34
+ end
35
+
36
+ class Hatch < SVGElement
37
+ end
38
+ class HatchCollection < ElementCollection
39
+ end
40
+
41
+ class Pattern < SVGElement
42
+ attribute(String, :patternunits, :patternUnits)
43
+ attribute(String, :patterncontentunits, :patternContentUnits)
44
+ attribute(String, :patterntransform, :patternTransform)
45
+ attribute(Integer, :x, :x)
46
+ attribute(Integer, :y, :y)
47
+ attribute(Integer, :width, :width)
48
+ attribute(Integer, :height, :height)
49
+ attribute(String, :viewbox, :viewBox)
50
+ attribute(String, :preserveaspectratio, :preserveAspectRatio)
51
+ attribute(String, :href, :href)
52
+ end
53
+ class PatternCollection < ElementCollection
54
+ end
55
+
56
+ class Stop < SVGElement
57
+ attribute(String, :offset, :offset)
58
+ end
59
+ class StopCollection < ElementCollection
60
+ end
61
+
62
+ class Meshpatch < SVGElement
63
+ end
64
+ class MeshpatchCollection < ElementCollection
65
+ end
66
+
67
+ class Meshrow < SVGElement
68
+ end
69
+ class MeshrowCollection < ElementCollection
70
+ end
71
+
72
+ class Gradient < SVGElement
73
+ attribute(String, :gradientunits, :gradientUnits)
74
+ attribute(String, :gradienttransform, :gradientTransform)
75
+ attribute(String, :spreadmethod, :spreadMethod)
76
+ attribute(String, :href, :href)
77
+ end
78
+ class GradientCollection < ElementCollection
79
+ end
80
+
81
+ class MeshGradient < Gradient
82
+ end
83
+ class MeshGradientCollection < ElementCollection
84
+ end
85
+
86
+ class RadialGradient < Gradient
87
+ attribute(Integer, :cx, :cx)
88
+ attribute(Integer, :cy, :cy)
89
+ attribute(Integer, :r, :r)
90
+ attribute(Integer, :fx, :fx)
91
+ attribute(Integer, :fy, :fy)
92
+ attribute(Integer, :fr, :fr)
93
+ end
94
+ class RadialGradientCollection < ElementCollection
95
+ end
96
+
97
+ class LinearGradient < Gradient
98
+ attribute(Integer, :x1, :x1)
99
+ attribute(Integer, :y1, :y1)
100
+ attribute(Integer, :x2, :x2)
101
+ attribute(Integer, :y2, :y2)
102
+ end
103
+ class LinearGradientCollection < ElementCollection
104
+ end
105
+
106
+ class Solidcolor < SVGElement
107
+ end
108
+ class SolidcolorCollection < ElementCollection
109
+ end
110
+
111
+ class Marker < SVGElement
112
+ attribute(Integer, :refx, :refX)
113
+ attribute(Integer, :refy, :refY)
114
+ attribute(String, :markerunits, :markerUnits)
115
+ attribute(Integer, :markerwidth, :markerWidth)
116
+ attribute(Integer, :markerheight, :markerHeight)
117
+ attribute(String, :orienttype, :orientType)
118
+ attribute(String, :orientangle, :orientAngle)
119
+ attribute(String, :orient, :orient)
120
+ attribute(String, :viewbox, :viewBox)
121
+ attribute(String, :preserveaspectratio, :preserveAspectRatio)
122
+ end
123
+ class MarkerCollection < ElementCollection
124
+ end
125
+
126
+ class Metadata < SVGElement
127
+ end
128
+ class MetadataCollection < ElementCollection
129
+ end
130
+
131
+ class Desc < SVGElement
132
+ end
133
+ class DescCollection < ElementCollection
134
+ end
135
+
136
+ class Graphics < SVGElement
137
+ attribute(String, :transform, :transform)
138
+ attribute(String, :requiredextensions, :requiredExtensions)
139
+ attribute(String, :systemlanguage, :systemLanguage)
140
+ end
141
+ class GraphicsCollection < ElementCollection
142
+ end
143
+
144
+ class ForeignObject < Graphics
145
+ attribute(Integer, :x, :x)
146
+ attribute(Integer, :y, :y)
147
+ attribute(Integer, :width, :width)
148
+ attribute(Integer, :height, :height)
149
+ end
150
+ class ForeignObjectCollection < ElementCollection
151
+ end
152
+
153
+ class TextContent < Graphics
154
+ attribute(Integer, :textlength, :textLength)
155
+ attribute(String, :lengthadjust, :lengthAdjust)
156
+ end
157
+ class TextContentCollection < ElementCollection
158
+ end
159
+
160
+ class TextPath < TextContent
161
+ attribute(Integer, :startoffset, :startOffset)
162
+ attribute(String, :method, :method)
163
+ attribute(String, :spacing, :spacing)
164
+ attribute(String, :href, :href)
165
+ end
166
+ class TextPathCollection < ElementCollection
167
+ end
168
+
169
+ class TextPositioning < TextContent
170
+ attribute(String, :x, :x)
171
+ attribute(String, :y, :y)
172
+ attribute(String, :dx, :dx)
173
+ attribute(String, :dy, :dy)
174
+ attribute(String, :rotate, :rotate)
175
+ end
176
+ class TextPositioningCollection < ElementCollection
177
+ end
178
+
179
+ class TSpan < TextPositioning
180
+ end
181
+ class TSpanCollection < ElementCollection
182
+ end
183
+
184
+ class Switch < Graphics
185
+ end
186
+ class SwitchCollection < ElementCollection
187
+ end
188
+
189
+ class Use < Graphics
190
+ attribute(Integer, :x, :x)
191
+ attribute(Integer, :y, :y)
192
+ attribute(Integer, :width, :width)
193
+ attribute(Integer, :height, :height)
194
+ attribute(String, :instanceroot, :instanceRoot)
195
+ attribute(String, :animatedinstanceroot, :animatedInstanceRoot)
196
+ attribute(String, :href, :href)
197
+ end
198
+ class UseCollection < ElementCollection
199
+ end
200
+
201
+ class Symbol < Graphics
202
+ attribute(String, :viewbox, :viewBox)
203
+ attribute(String, :preserveaspectratio, :preserveAspectRatio)
204
+ end
205
+ class SymbolCollection < ElementCollection
206
+ end
207
+
208
+ class Defs < Graphics
209
+ end
210
+ class DefsCollection < ElementCollection
211
+ end
212
+
213
+ class G < Graphics
214
+ end
215
+ class GCollection < ElementCollection
216
+ end
217
+
218
+ class SVG < Graphics
219
+ attribute(Integer, :x, :x)
220
+ attribute(Integer, :y, :y)
221
+ attribute(Integer, :width, :width)
222
+ attribute(Integer, :height, :height)
223
+ attribute(Float, :currentscale, :currentScale)
224
+ attribute(String, :currenttranslate, :currentTranslate)
225
+ attribute(String, :viewbox, :viewBox)
226
+ attribute(String, :preserveaspectratio, :preserveAspectRatio)
227
+ attribute(Integer, :zoomandpan, :zoomAndPan)
228
+ end
229
+ class SVGCollection < ElementCollection
230
+ end
231
+
232
+ class Geometry < Graphics
233
+ attribute(String, :pathlength, :pathLength)
234
+ end
235
+ class GeometryCollection < ElementCollection
236
+ end
237
+
238
+ class Polygon < Geometry
239
+ attribute(String, :points, :points)
240
+ attribute(String, :animatedpoints, :animatedPoints)
241
+ end
242
+ class PolygonCollection < ElementCollection
243
+ end
244
+
245
+ class Polyline < Geometry
246
+ attribute(String, :points, :points)
247
+ attribute(String, :animatedpoints, :animatedPoints)
248
+ end
249
+ class PolylineCollection < ElementCollection
250
+ end
251
+
252
+ class Mesh < Geometry
253
+ attribute(String, :href, :href)
254
+ end
255
+ class MeshCollection < ElementCollection
256
+ end
257
+
258
+ class Line < Geometry
259
+ attribute(Integer, :x1, :x1)
260
+ attribute(Integer, :y1, :y1)
261
+ attribute(Integer, :x2, :x2)
262
+ attribute(Integer, :y2, :y2)
263
+ end
264
+ class LineCollection < ElementCollection
265
+ end
266
+
267
+ class Ellipse < Geometry
268
+ attribute(Integer, :cx, :cx)
269
+ attribute(Integer, :cy, :cy)
270
+ attribute(Integer, :rx, :rx)
271
+ attribute(Integer, :ry, :ry)
272
+ end
273
+ class EllipseCollection < ElementCollection
274
+ end
275
+
276
+ class Circle < Geometry
277
+ attribute(Integer, :cx, :cx)
278
+ attribute(Integer, :cy, :cy)
279
+ attribute(Integer, :r, :r)
280
+ end
281
+ class CircleCollection < ElementCollection
282
+ end
283
+
284
+ class Rect < Geometry
285
+ attribute(Integer, :x, :x)
286
+ attribute(Integer, :y, :y)
287
+ attribute(Integer, :width, :width)
288
+ attribute(Integer, :height, :height)
289
+ attribute(Integer, :rx, :rx)
290
+ attribute(Integer, :ry, :ry)
291
+ end
292
+ class RectCollection < ElementCollection
293
+ end
294
+
295
+ class Path < Geometry
296
+ end
297
+ class PathCollection < ElementCollection
298
+ end
299
+
300
+
301
+ module Container
302
+
303
+ # @return [Circle]
304
+ def circle(*args)
305
+ Circle.new(self, extract_selector(args).merge(tag_name: "circle"))
306
+ end
307
+ # @return [CircleCollection]
308
+ def circles(*args)
309
+ CircleCollection.new(self, extract_selector(args).merge(tag_name: "circle"))
310
+ end
311
+ Watir.tag_to_class[:circle] = Circle
312
+
313
+ # @return [Cursor]
314
+ def cursor(*args)
315
+ Cursor.new(self, extract_selector(args).merge(tag_name: "cursor"))
316
+ end
317
+ # @return [CursorCollection]
318
+ def cursors(*args)
319
+ CursorCollection.new(self, extract_selector(args).merge(tag_name: "cursor"))
320
+ end
321
+ Watir.tag_to_class[:cursor] = Cursor
322
+
323
+ # @return [Defs]
324
+ def defs(*args)
325
+ Defs.new(self, extract_selector(args).merge(tag_name: "defs"))
326
+ end
327
+ # @return [DefsCollection]
328
+ def defss(*args)
329
+ DefsCollection.new(self, extract_selector(args).merge(tag_name: "defs"))
330
+ end
331
+ Watir.tag_to_class[:defs] = Defs
332
+
333
+ # @return [Desc]
334
+ def desc(*args)
335
+ Desc.new(self, extract_selector(args).merge(tag_name: "desc"))
336
+ end
337
+ # @return [DescCollection]
338
+ def descs(*args)
339
+ DescCollection.new(self, extract_selector(args).merge(tag_name: "desc"))
340
+ end
341
+ Watir.tag_to_class[:desc] = Desc
342
+
343
+ # @return [Ellipse]
344
+ def ellipse(*args)
345
+ Ellipse.new(self, extract_selector(args).merge(tag_name: "ellipse"))
346
+ end
347
+ # @return [EllipseCollection]
348
+ def ellipses(*args)
349
+ EllipseCollection.new(self, extract_selector(args).merge(tag_name: "ellipse"))
350
+ end
351
+ Watir.tag_to_class[:ellipse] = Ellipse
352
+
353
+ # @return [ForeignObject]
354
+ def foreign_object(*args)
355
+ ForeignObject.new(self, extract_selector(args).merge(tag_name: "foreignObject"))
356
+ end
357
+ # @return [ForeignObjectCollection]
358
+ def foreign_objects(*args)
359
+ ForeignObjectCollection.new(self, extract_selector(args).merge(tag_name: "foreignObject"))
360
+ end
361
+ Watir.tag_to_class[:foreignObject] = ForeignObject
362
+
363
+ # @return [G]
364
+ def g(*args)
365
+ G.new(self, extract_selector(args).merge(tag_name: "g"))
366
+ end
367
+ # @return [GCollection]
368
+ def gs(*args)
369
+ GCollection.new(self, extract_selector(args).merge(tag_name: "g"))
370
+ end
371
+ Watir.tag_to_class[:g] = G
372
+
373
+ # @return [Hatchpath]
374
+ def hatchpath(*args)
375
+ Hatchpath.new(self, extract_selector(args).merge(tag_name: "hatchpath"))
376
+ end
377
+ # @return [HatchpathCollection]
378
+ def hatchpaths(*args)
379
+ HatchpathCollection.new(self, extract_selector(args).merge(tag_name: "hatchpath"))
380
+ end
381
+ Watir.tag_to_class[:hatchpath] = Hatchpath
382
+
383
+ # @return [Line]
384
+ def line(*args)
385
+ Line.new(self, extract_selector(args).merge(tag_name: "line"))
386
+ end
387
+ # @return [LineCollection]
388
+ def lines(*args)
389
+ LineCollection.new(self, extract_selector(args).merge(tag_name: "line"))
390
+ end
391
+ Watir.tag_to_class[:line] = Line
392
+
393
+ # @return [LinearGradient]
394
+ def linear_gradient(*args)
395
+ LinearGradient.new(self, extract_selector(args).merge(tag_name: "linearGradient"))
396
+ end
397
+ # @return [LinearGradientCollection]
398
+ def linear_gradients(*args)
399
+ LinearGradientCollection.new(self, extract_selector(args).merge(tag_name: "linearGradient"))
400
+ end
401
+ Watir.tag_to_class[:linearGradient] = LinearGradient
402
+
403
+ # @return [Marker]
404
+ def marker(*args)
405
+ Marker.new(self, extract_selector(args).merge(tag_name: "marker"))
406
+ end
407
+ # @return [MarkerCollection]
408
+ def markers(*args)
409
+ MarkerCollection.new(self, extract_selector(args).merge(tag_name: "marker"))
410
+ end
411
+ Watir.tag_to_class[:marker] = Marker
412
+
413
+ # @return [Mesh]
414
+ def mesh(*args)
415
+ Mesh.new(self, extract_selector(args).merge(tag_name: "mesh"))
416
+ end
417
+ # @return [MeshCollection]
418
+ def meshes(*args)
419
+ MeshCollection.new(self, extract_selector(args).merge(tag_name: "mesh"))
420
+ end
421
+ Watir.tag_to_class[:mesh] = Mesh
422
+
423
+ # @return [MeshGradient]
424
+ def meshgradient(*args)
425
+ MeshGradient.new(self, extract_selector(args).merge(tag_name: "meshgradient"))
426
+ end
427
+ # @return [MeshGradientCollection]
428
+ def meshgradients(*args)
429
+ MeshGradientCollection.new(self, extract_selector(args).merge(tag_name: "meshgradient"))
430
+ end
431
+ Watir.tag_to_class[:meshgradient] = MeshGradient
432
+
433
+ # @return [Meshpatch]
434
+ def meshpatch(*args)
435
+ Meshpatch.new(self, extract_selector(args).merge(tag_name: "meshpatch"))
436
+ end
437
+ # @return [MeshpatchCollection]
438
+ def meshpatches(*args)
439
+ MeshpatchCollection.new(self, extract_selector(args).merge(tag_name: "meshpatch"))
440
+ end
441
+ Watir.tag_to_class[:meshpatch] = Meshpatch
442
+
443
+ # @return [Meshrow]
444
+ def meshrow(*args)
445
+ Meshrow.new(self, extract_selector(args).merge(tag_name: "meshrow"))
446
+ end
447
+ # @return [MeshrowCollection]
448
+ def meshrows(*args)
449
+ MeshrowCollection.new(self, extract_selector(args).merge(tag_name: "meshrow"))
450
+ end
451
+ Watir.tag_to_class[:meshrow] = Meshrow
452
+
453
+ # @return [Metadata]
454
+ def metadata(*args)
455
+ Metadata.new(self, extract_selector(args).merge(tag_name: "metadata"))
456
+ end
457
+ # @return [MetadataCollection]
458
+ def metadatas(*args)
459
+ MetadataCollection.new(self, extract_selector(args).merge(tag_name: "metadata"))
460
+ end
461
+ Watir.tag_to_class[:metadata] = Metadata
462
+
463
+ # @return [Path]
464
+ def path(*args)
465
+ Path.new(self, extract_selector(args).merge(tag_name: "path"))
466
+ end
467
+ # @return [PathCollection]
468
+ def paths(*args)
469
+ PathCollection.new(self, extract_selector(args).merge(tag_name: "path"))
470
+ end
471
+ Watir.tag_to_class[:path] = Path
472
+
473
+ # @return [Pattern]
474
+ def pattern(*args)
475
+ Pattern.new(self, extract_selector(args).merge(tag_name: "pattern"))
476
+ end
477
+ # @return [PatternCollection]
478
+ def patterns(*args)
479
+ PatternCollection.new(self, extract_selector(args).merge(tag_name: "pattern"))
480
+ end
481
+ Watir.tag_to_class[:pattern] = Pattern
482
+
483
+ # @return [Polygon]
484
+ def polygon(*args)
485
+ Polygon.new(self, extract_selector(args).merge(tag_name: "polygon"))
486
+ end
487
+ # @return [PolygonCollection]
488
+ def polygons(*args)
489
+ PolygonCollection.new(self, extract_selector(args).merge(tag_name: "polygon"))
490
+ end
491
+ Watir.tag_to_class[:polygon] = Polygon
492
+
493
+ # @return [Polyline]
494
+ def polyline(*args)
495
+ Polyline.new(self, extract_selector(args).merge(tag_name: "polyline"))
496
+ end
497
+ # @return [PolylineCollection]
498
+ def polylines(*args)
499
+ PolylineCollection.new(self, extract_selector(args).merge(tag_name: "polyline"))
500
+ end
501
+ Watir.tag_to_class[:polyline] = Polyline
502
+
503
+ # @return [RadialGradient]
504
+ def radial_gradient(*args)
505
+ RadialGradient.new(self, extract_selector(args).merge(tag_name: "radialGradient"))
506
+ end
507
+ # @return [RadialGradientCollection]
508
+ def radial_gradients(*args)
509
+ RadialGradientCollection.new(self, extract_selector(args).merge(tag_name: "radialGradient"))
510
+ end
511
+ Watir.tag_to_class[:radialGradient] = RadialGradient
512
+
513
+ # @return [Rect]
514
+ def rect(*args)
515
+ Rect.new(self, extract_selector(args).merge(tag_name: "rect"))
516
+ end
517
+ # @return [RectCollection]
518
+ def rects(*args)
519
+ RectCollection.new(self, extract_selector(args).merge(tag_name: "rect"))
520
+ end
521
+ Watir.tag_to_class[:rect] = Rect
522
+
523
+ # @return [Solidcolor]
524
+ def solidcolor(*args)
525
+ Solidcolor.new(self, extract_selector(args).merge(tag_name: "solidcolor"))
526
+ end
527
+ # @return [SolidcolorCollection]
528
+ def solidcolors(*args)
529
+ SolidcolorCollection.new(self, extract_selector(args).merge(tag_name: "solidcolor"))
530
+ end
531
+ Watir.tag_to_class[:solidcolor] = Solidcolor
532
+
533
+ # @return [Stop]
534
+ def stop(*args)
535
+ Stop.new(self, extract_selector(args).merge(tag_name: "stop"))
536
+ end
537
+ # @return [StopCollection]
538
+ def stops(*args)
539
+ StopCollection.new(self, extract_selector(args).merge(tag_name: "stop"))
540
+ end
541
+ Watir.tag_to_class[:stop] = Stop
542
+
543
+ # @return [SVG]
544
+ def svg(*args)
545
+ SVG.new(self, extract_selector(args).merge(tag_name: "svg"))
546
+ end
547
+ # @return [SVGCollection]
548
+ def svgs(*args)
549
+ SVGCollection.new(self, extract_selector(args).merge(tag_name: "svg"))
550
+ end
551
+ Watir.tag_to_class[:svg] = SVG
552
+
553
+ # @return [Switch]
554
+ def switch(*args)
555
+ Switch.new(self, extract_selector(args).merge(tag_name: "switch"))
556
+ end
557
+ # @return [SwitchCollection]
558
+ def switches(*args)
559
+ SwitchCollection.new(self, extract_selector(args).merge(tag_name: "switch"))
560
+ end
561
+ Watir.tag_to_class[:switch] = Switch
562
+
563
+ # @return [Symbol]
564
+ def symbol(*args)
565
+ Symbol.new(self, extract_selector(args).merge(tag_name: "symbol"))
566
+ end
567
+ # @return [SymbolCollection]
568
+ def symbols(*args)
569
+ SymbolCollection.new(self, extract_selector(args).merge(tag_name: "symbol"))
570
+ end
571
+ Watir.tag_to_class[:symbol] = Symbol
572
+
573
+ # @return [TextPath]
574
+ def text_path(*args)
575
+ TextPath.new(self, extract_selector(args).merge(tag_name: "textPath"))
576
+ end
577
+ # @return [TextPathCollection]
578
+ def text_paths(*args)
579
+ TextPathCollection.new(self, extract_selector(args).merge(tag_name: "textPath"))
580
+ end
581
+ Watir.tag_to_class[:textPath] = TextPath
582
+
583
+ # @return [TSpan]
584
+ def tspan(*args)
585
+ TSpan.new(self, extract_selector(args).merge(tag_name: "tspan"))
586
+ end
587
+ # @return [TSpanCollection]
588
+ def tspans(*args)
589
+ TSpanCollection.new(self, extract_selector(args).merge(tag_name: "tspan"))
590
+ end
591
+ Watir.tag_to_class[:tspan] = TSpan
592
+
593
+ # @return [Use]
594
+ def use(*args)
595
+ Use.new(self, extract_selector(args).merge(tag_name: "use"))
596
+ end
597
+ # @return [UseCollection]
598
+ def uses(*args)
599
+ UseCollection.new(self, extract_selector(args).merge(tag_name: "use"))
600
+ end
601
+ Watir.tag_to_class[:use] = Use
602
+
603
+ # @return [View]
604
+ def view(*args)
605
+ View.new(self, extract_selector(args).merge(tag_name: "view"))
606
+ end
607
+ # @return [ViewCollection]
608
+ def views(*args)
609
+ ViewCollection.new(self, extract_selector(args).merge(tag_name: "view"))
610
+ end
611
+ Watir.tag_to_class[:view] = View
612
+ end # Container
613
+ end # Watir