insite 0.0.2 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/insite.rb +13 -7
- data/lib/insite/component/component.rb +454 -0
- data/lib/insite/component/component_collection.rb +112 -0
- data/lib/insite/component/component_instance_methods.rb +4 -0
- data/lib/insite/component/component_methods.rb +4 -0
- data/lib/insite/constants.rb +323 -31
- data/lib/insite/element/element.rb +147 -0
- data/lib/insite/element/element_collection.rb +102 -0
- data/lib/insite/element/generated/class_map.rb +244 -0
- data/lib/insite/element/generated/element_classes.rb +721 -0
- data/lib/insite/element/generated/element_instance_methods.rb +1594 -0
- data/lib/insite/errors.rb +2 -0
- data/lib/insite/examples/material_angular_io/components/angular_material_component.rb +13 -0
- data/lib/insite/examples/material_angular_io/components/example_viewer.rb +5 -0
- data/lib/insite/examples/material_angular_io/components/mat_chip.rb +29 -0
- data/lib/insite/examples/material_angular_io/components/mat_chip_list.rb +21 -0
- data/lib/insite/examples/material_angular_io/components/mat_form_field.rb +5 -0
- data/lib/insite/examples/material_angular_io/components/mat_icon.rb +5 -0
- data/lib/insite/examples/material_angular_io/components/mat_input.rb +5 -0
- data/lib/insite/examples/material_angular_io/components/mat_option.rb +3 -0
- data/lib/insite/examples/material_angular_io/components/mat_select.rb +15 -0
- data/lib/insite/examples/material_angular_io/components/mat_select_content.rb +13 -0
- data/lib/insite/examples/material_angular_io/components/no_selector.rb +3 -0
- data/lib/insite/examples/material_angular_io/pages.rb +20 -0
- data/lib/insite/examples/material_angular_io/site.rb +5 -0
- data/lib/insite/examples/material_angular_io/utils.rb +6 -0
- data/lib/insite/examples/material_angular_io/watir_mods.rb +54 -0
- data/lib/insite/examples/material_angular_io_site.rb +54 -0
- data/lib/insite/insite.rb +96 -11
- data/lib/insite/methods/common_methods.rb +26 -37
- data/lib/insite/methods/dom_methods.rb +73 -46
- data/lib/insite/page/defined_page.rb +37 -50
- data/lib/insite/page/undefined_page.rb +12 -1
- data/lib/insite/version.rb +1 -1
- metadata +69 -29
- data/lib/insite/element_container/element_container.rb +0 -42
- data/lib/insite/feature/feature.rb +0 -30
- data/lib/insite/widget/widget.rb +0 -346
- data/lib/insite/widget/widget_methods.rb +0 -4
@@ -0,0 +1,147 @@
|
|
1
|
+
require_relative '../component/component_methods.rb'
|
2
|
+
require_relative '../component/component_instance_methods.rb'
|
3
|
+
|
4
|
+
module Insite
|
5
|
+
class Element
|
6
|
+
attr_reader :target, :site
|
7
|
+
|
8
|
+
class << self
|
9
|
+
attr_reader :predefined_selector
|
10
|
+
end
|
11
|
+
|
12
|
+
include Insite::CommonMethods
|
13
|
+
extend Insite::DOMMethods
|
14
|
+
include Insite::ElementInstanceMethods
|
15
|
+
extend Insite::ComponentMethods
|
16
|
+
include Insite::ComponentInstanceMethods
|
17
|
+
extend Forwardable
|
18
|
+
|
19
|
+
def self.collection?
|
20
|
+
false
|
21
|
+
end
|
22
|
+
|
23
|
+
def attributes
|
24
|
+
nokogiri.xpath("//#{selector[:tag_name]}")[0].attributes.values.map do |x|
|
25
|
+
[x.name, x.value]
|
26
|
+
end.to_h
|
27
|
+
end
|
28
|
+
|
29
|
+
def classes
|
30
|
+
attribute('class').split
|
31
|
+
end
|
32
|
+
|
33
|
+
def collection?
|
34
|
+
false
|
35
|
+
end
|
36
|
+
|
37
|
+
def initialize(parent, *args)
|
38
|
+
parent.respond_to?(:target) ? obj = parent : obj = parent.site
|
39
|
+
@parent = obj
|
40
|
+
|
41
|
+
@site = parent.class.ancestors.include?(Insite) ? parent : parent.site
|
42
|
+
@browser = @site.browser
|
43
|
+
|
44
|
+
if args[0].is_a?(Insite::Element) || args[0].is_a?(Insite::ElementCollection)
|
45
|
+
@target = args[0].target
|
46
|
+
@selector = @target.selector.dup
|
47
|
+
@args = @selector
|
48
|
+
elsif args[0].is_a?(Watir::Element) || args[0].is_a?(Watir::ElementCollection)
|
49
|
+
@args = nil
|
50
|
+
@selector = @target.instance_variable_get(:@selector).dup
|
51
|
+
@args = @selector
|
52
|
+
else
|
53
|
+
if [Insite::Element, Insite::HTMLElement].include?(self.class)
|
54
|
+
@args = parse_args(args.dup)
|
55
|
+
elsif tag = parse_args(args)[:tag_name]
|
56
|
+
@args = parse_args(args.dup)
|
57
|
+
elsif Insite.class_to_tag(self.class)
|
58
|
+
@args = parse_args(args.dup).merge(
|
59
|
+
tag_name: Insite.class_to_tag(self.class)
|
60
|
+
)
|
61
|
+
else
|
62
|
+
@args = parse_args(args.dup)
|
63
|
+
end
|
64
|
+
@selector = @args
|
65
|
+
|
66
|
+
if watir_class = Insite::CLASS_MAP.key(self.class)
|
67
|
+
@target = watir_class.new(@parent.target, @args)
|
68
|
+
else
|
69
|
+
@target = Watir::HTMLElement.new(@parent.target, @args)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
# def initialize(site, element)
|
75
|
+
# @site = site
|
76
|
+
# @browser = @site.browser
|
77
|
+
# @target = element
|
78
|
+
#
|
79
|
+
# # Temporary replacement for custom wait_until.
|
80
|
+
# # TODO: Continue looking at scolling solutions.
|
81
|
+
# if @target.present? && @target.respond_to?(:scroll)
|
82
|
+
# @target.scroll.to
|
83
|
+
# t = ::Time.now + 2
|
84
|
+
# while ::Time.now <= t do
|
85
|
+
# break if @target.present?
|
86
|
+
# sleep 0.1
|
87
|
+
# end
|
88
|
+
# end
|
89
|
+
#
|
90
|
+
# @target
|
91
|
+
# end
|
92
|
+
|
93
|
+
def inspect
|
94
|
+
if @target.selector.present?
|
95
|
+
s = @selector.to_s
|
96
|
+
else
|
97
|
+
s = '{element: (selenium element)}'
|
98
|
+
end
|
99
|
+
"#<#{self.class}: located: #{!!@target.element}; @selector=#{s}>"
|
100
|
+
end
|
101
|
+
|
102
|
+
# For page component code.
|
103
|
+
def method_missing(mth, *args, &block)
|
104
|
+
if @target.respond_to? mth
|
105
|
+
out = @target.send(mth, *args, &block)
|
106
|
+
elsif @target.class.descendants.any? { |x| x.instance_methods.include? mth }
|
107
|
+
out = @target.to_subtype.send(mth, *args, &block)
|
108
|
+
else
|
109
|
+
super
|
110
|
+
end
|
111
|
+
|
112
|
+
if out == @target
|
113
|
+
self
|
114
|
+
elsif out.is_a?(Watir::Element) || out.is_a?(Watir::ElementCollection)
|
115
|
+
Insite::CLASS_MAP[out.class].new(@parent, out)
|
116
|
+
else
|
117
|
+
out
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
def present?
|
122
|
+
sleep 0.1
|
123
|
+
begin
|
124
|
+
if @parent
|
125
|
+
if @parent.respond_to?(:present?) && @parent.present? && @target.present?
|
126
|
+
true
|
127
|
+
else
|
128
|
+
false
|
129
|
+
end
|
130
|
+
else
|
131
|
+
if @target.present?
|
132
|
+
true
|
133
|
+
else
|
134
|
+
false
|
135
|
+
end
|
136
|
+
end
|
137
|
+
rescue => e
|
138
|
+
false
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
def respond_to_missing?(mth, include_priv = false)
|
143
|
+
@target.respond_to?(mth, include_priv) || super
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
module Insite
|
2
|
+
class ElementCollection < Element
|
3
|
+
attr_accessor :browser
|
4
|
+
attr_reader :selector
|
5
|
+
|
6
|
+
def self.collection?
|
7
|
+
true
|
8
|
+
end
|
9
|
+
|
10
|
+
def ==(other)
|
11
|
+
to_a == other.to_a
|
12
|
+
end
|
13
|
+
alias eql? ==
|
14
|
+
|
15
|
+
def[](idx)
|
16
|
+
to_a[idx]
|
17
|
+
end
|
18
|
+
|
19
|
+
def collection?
|
20
|
+
true
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.collection_member_type
|
24
|
+
if Insite::CLASS_MAP.values.include?(self)
|
25
|
+
@collection_member_type = self.to_s.gsub('Collection', '').constantize
|
26
|
+
elsif Insite::CLASS_MAP.values.include?(self.superclass)
|
27
|
+
@collection_member_type = self.superclass.to_s.gsub('Collection', '').constantize
|
28
|
+
else
|
29
|
+
raise "Unable to determine collection member type for #{self}."
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def initialize(parent, *args)
|
34
|
+
@collection_member_type = self.class.collection_member_type
|
35
|
+
|
36
|
+
# Figure out the correct query scope.
|
37
|
+
parent.respond_to?(:target) ? obj = parent : obj = parent.site
|
38
|
+
@parent = obj
|
39
|
+
@site = parent.class.ancestors.include?(Insite) ? parent : parent.site
|
40
|
+
@browser = @site.browser
|
41
|
+
if args[0].is_a?(Insite::Element) || args[0].is_a?(Insite::ElementCollection)
|
42
|
+
@target = args[0].target
|
43
|
+
@args = @target.selector.dup
|
44
|
+
@selector = @args
|
45
|
+
elsif args[0].is_a?(Watir::Element) || args[0].is_a?(Watir::ElementCollection)
|
46
|
+
@target = args[0]
|
47
|
+
@args = @target.instance_variable_get(:@selector).dup
|
48
|
+
@selector = @args
|
49
|
+
else
|
50
|
+
if @collection_member_type == Insite::HTMLElement
|
51
|
+
@args = parse_args(args)
|
52
|
+
@selector = @args
|
53
|
+
@target = Watir::HTMLElementCollection.new(@parent.target, @args)
|
54
|
+
else
|
55
|
+
@args = parse_args(args).merge(
|
56
|
+
tag_name: Insite.class_to_tag(@collection_member_type)
|
57
|
+
)
|
58
|
+
@selector = @args
|
59
|
+
@target = Insite::CLASS_MAP.key(self.class).new(@parent.target, @args)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
def first
|
65
|
+
to_a[0]
|
66
|
+
end
|
67
|
+
|
68
|
+
def each(&block)
|
69
|
+
to_a.each(&block)
|
70
|
+
end
|
71
|
+
|
72
|
+
def empty?
|
73
|
+
length == 0
|
74
|
+
end
|
75
|
+
|
76
|
+
def inspect
|
77
|
+
@selector.empty? ? s = '{element: (selenium element)}' : s = @selector.to_s
|
78
|
+
"#<#{self.class}: @parent: #{@parent}; @selector=#{s}>"
|
79
|
+
end
|
80
|
+
|
81
|
+
def last
|
82
|
+
to_a[-1]
|
83
|
+
end
|
84
|
+
|
85
|
+
def length
|
86
|
+
to_a.length
|
87
|
+
end
|
88
|
+
alias count length
|
89
|
+
alias size length
|
90
|
+
|
91
|
+
def to_a
|
92
|
+
out = []
|
93
|
+
@target.to_a.each_with_index do |elem, idx|
|
94
|
+
out << @collection_member_type.new(
|
95
|
+
@parent,
|
96
|
+
@args.merge(index: idx)
|
97
|
+
)
|
98
|
+
end
|
99
|
+
out
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,244 @@
|
|
1
|
+
module Insite
|
2
|
+
CLASS_MAP = {
|
3
|
+
Watir::Anchor => Insite::Anchor,
|
4
|
+
Watir::AnchorCollection => Insite::AnchorCollection,
|
5
|
+
Watir::Applet => Insite::Applet,
|
6
|
+
Watir::AppletCollection => Insite::AppletCollection,
|
7
|
+
Watir::Area => Insite::Area,
|
8
|
+
Watir::AreaCollection => Insite::AreaCollection,
|
9
|
+
Watir::Audio => Insite::Audio,
|
10
|
+
Watir::AudioCollection => Insite::AudioCollection,
|
11
|
+
Watir::BR => Insite::BR,
|
12
|
+
Watir::BRCollection => Insite::BRCollection,
|
13
|
+
Watir::Base => Insite::Base,
|
14
|
+
Watir::BaseCollection => Insite::BaseCollection,
|
15
|
+
Watir::Body => Insite::Body,
|
16
|
+
Watir::BodyCollection => Insite::BodyCollection,
|
17
|
+
Watir::Button => Insite::Button,
|
18
|
+
Watir::ButtonCollection => Insite::ButtonCollection,
|
19
|
+
Watir::Canvas => Insite::Canvas,
|
20
|
+
Watir::CanvasCollection => Insite::CanvasCollection,
|
21
|
+
Watir::Cell => Insite::Cell,
|
22
|
+
Watir::CellCollection => Insite::CellCollection,
|
23
|
+
Watir::CheckBox => Insite::CheckBox,
|
24
|
+
Watir::CheckBoxCollection => Insite::CheckBoxCollection,
|
25
|
+
Watir::Circle => Insite::Circle,
|
26
|
+
Watir::CircleCollection => Insite::CircleCollection,
|
27
|
+
Watir::Cursor => Insite::Cursor,
|
28
|
+
Watir::CursorCollection => Insite::CursorCollection,
|
29
|
+
Watir::DList => Insite::DList,
|
30
|
+
Watir::DListCollection => Insite::DListCollection,
|
31
|
+
Watir::Data => Insite::Data,
|
32
|
+
Watir::DataCollection => Insite::DataCollection,
|
33
|
+
Watir::DataList => Insite::DataList,
|
34
|
+
Watir::DataListCollection => Insite::DataListCollection,
|
35
|
+
Watir::DateField => Insite::DateField,
|
36
|
+
Watir::DateFieldCollection => Insite::DateFieldCollection,
|
37
|
+
Watir::DateTimeField => Insite::DateTimeField,
|
38
|
+
Watir::DateTimeFieldCollection => Insite::DateTimeFieldCollection,
|
39
|
+
Watir::Defs => Insite::Defs,
|
40
|
+
Watir::DefsCollection => Insite::DefsCollection,
|
41
|
+
Watir::Desc => Insite::Desc,
|
42
|
+
Watir::DescCollection => Insite::DescCollection,
|
43
|
+
Watir::Details => Insite::Details,
|
44
|
+
Watir::DetailsCollection => Insite::DetailsCollection,
|
45
|
+
Watir::Directory => Insite::Directory,
|
46
|
+
Watir::DirectoryCollection => Insite::DirectoryCollection,
|
47
|
+
Watir::Div => Insite::Div,
|
48
|
+
Watir::DivCollection => Insite::DivCollection,
|
49
|
+
Watir::Ellipse => Insite::Ellipse,
|
50
|
+
Watir::EllipseCollection => Insite::EllipseCollection,
|
51
|
+
Watir::Embed => Insite::Embed,
|
52
|
+
Watir::EmbedCollection => Insite::EmbedCollection,
|
53
|
+
Watir::FieldSet => Insite::FieldSet,
|
54
|
+
Watir::FieldSetCollection => Insite::FieldSetCollection,
|
55
|
+
Watir::FileField => Insite::FileField,
|
56
|
+
Watir::FileFieldCollection => Insite::FileFieldCollection,
|
57
|
+
Watir::Font => Insite::Font,
|
58
|
+
Watir::FontCollection => Insite::FontCollection,
|
59
|
+
Watir::ForeignObject => Insite::ForeignObject,
|
60
|
+
Watir::ForeignObjectCollection => Insite::ForeignObjectCollection,
|
61
|
+
Watir::Form => Insite::Form,
|
62
|
+
Watir::FormCollection => Insite::FormCollection,
|
63
|
+
Watir::Frame => Insite::Frame,
|
64
|
+
Watir::FrameCollection => Insite::FrameCollection,
|
65
|
+
Watir::FrameSet => Insite::FrameSet,
|
66
|
+
Watir::FrameSetCollection => Insite::FrameSetCollection,
|
67
|
+
Watir::G => Insite::G,
|
68
|
+
Watir::GCollection => Insite::GCollection,
|
69
|
+
Watir::Geometry => Insite::Geometry,
|
70
|
+
Watir::GeometryCollection => Insite::GeometryCollection,
|
71
|
+
Watir::Gradient => Insite::Gradient,
|
72
|
+
Watir::GradientCollection => Insite::GradientCollection,
|
73
|
+
Watir::Graphics => Insite::Graphics,
|
74
|
+
Watir::GraphicsCollection => Insite::GraphicsCollection,
|
75
|
+
Watir::HR => Insite::HR,
|
76
|
+
Watir::HRCollection => Insite::HRCollection,
|
77
|
+
Watir::HTMLElement => Insite::HTMLElement,
|
78
|
+
Watir::HTMLElementCollection => Insite::HTMLElementCollection,
|
79
|
+
Watir::Hatch => Insite::Hatch,
|
80
|
+
Watir::HatchCollection => Insite::HatchCollection,
|
81
|
+
Watir::Hatchpath => Insite::Hatchpath,
|
82
|
+
Watir::HatchpathCollection => Insite::HatchpathCollection,
|
83
|
+
Watir::Head => Insite::Head,
|
84
|
+
Watir::HeadCollection => Insite::HeadCollection,
|
85
|
+
Watir::Heading => Insite::Heading,
|
86
|
+
Watir::HeadingCollection => Insite::HeadingCollection,
|
87
|
+
Watir::Hidden => Insite::Hidden,
|
88
|
+
Watir::HiddenCollection => Insite::HiddenCollection,
|
89
|
+
Watir::Html => Insite::Html,
|
90
|
+
Watir::HtmlCollection => Insite::HtmlCollection,
|
91
|
+
Watir::IFrame => Insite::IFrame,
|
92
|
+
Watir::IFrameCollection => Insite::IFrameCollection,
|
93
|
+
Watir::Image => Insite::Image,
|
94
|
+
Watir::ImageCollection => Insite::ImageCollection,
|
95
|
+
Watir::Input => Insite::Input,
|
96
|
+
Watir::InputCollection => Insite::InputCollection,
|
97
|
+
Watir::Keygen => Insite::Keygen,
|
98
|
+
Watir::KeygenCollection => Insite::KeygenCollection,
|
99
|
+
Watir::LI => Insite::LI,
|
100
|
+
Watir::LICollection => Insite::LICollection,
|
101
|
+
Watir::Label => Insite::Label,
|
102
|
+
Watir::LabelCollection => Insite::LabelCollection,
|
103
|
+
Watir::Legend => Insite::Legend,
|
104
|
+
Watir::LegendCollection => Insite::LegendCollection,
|
105
|
+
Watir::Line => Insite::Line,
|
106
|
+
Watir::LineCollection => Insite::LineCollection,
|
107
|
+
Watir::LinearGradient => Insite::LinearGradient,
|
108
|
+
Watir::LinearGradientCollection => Insite::LinearGradientCollection,
|
109
|
+
Watir::Map => Insite::Map,
|
110
|
+
Watir::MapCollection => Insite::MapCollection,
|
111
|
+
Watir::Marker => Insite::Marker,
|
112
|
+
Watir::MarkerCollection => Insite::MarkerCollection,
|
113
|
+
Watir::Marquee => Insite::Marquee,
|
114
|
+
Watir::MarqueeCollection => Insite::MarqueeCollection,
|
115
|
+
Watir::Media => Insite::Media,
|
116
|
+
Watir::MediaCollection => Insite::MediaCollection,
|
117
|
+
Watir::Menu => Insite::Menu,
|
118
|
+
Watir::MenuCollection => Insite::MenuCollection,
|
119
|
+
Watir::MenuItem => Insite::MenuItem,
|
120
|
+
Watir::MenuItemCollection => Insite::MenuItemCollection,
|
121
|
+
Watir::Mesh => Insite::Mesh,
|
122
|
+
Watir::MeshCollection => Insite::MeshCollection,
|
123
|
+
Watir::MeshGradient => Insite::MeshGradient,
|
124
|
+
Watir::MeshGradientCollection => Insite::MeshGradientCollection,
|
125
|
+
Watir::Meshpatch => Insite::Meshpatch,
|
126
|
+
Watir::MeshpatchCollection => Insite::MeshpatchCollection,
|
127
|
+
Watir::Meshrow => Insite::Meshrow,
|
128
|
+
Watir::MeshrowCollection => Insite::MeshrowCollection,
|
129
|
+
Watir::Meta => Insite::Meta,
|
130
|
+
Watir::MetaCollection => Insite::MetaCollection,
|
131
|
+
Watir::Metadata => Insite::Metadata,
|
132
|
+
Watir::MetadataCollection => Insite::MetadataCollection,
|
133
|
+
Watir::Meter => Insite::Meter,
|
134
|
+
Watir::MeterCollection => Insite::MeterCollection,
|
135
|
+
Watir::Mod => Insite::Mod,
|
136
|
+
Watir::ModCollection => Insite::ModCollection,
|
137
|
+
Watir::OList => Insite::OList,
|
138
|
+
Watir::OListCollection => Insite::OListCollection,
|
139
|
+
Watir::Object => Insite::Object,
|
140
|
+
Watir::ObjectCollection => Insite::ObjectCollection,
|
141
|
+
Watir::OptGroup => Insite::OptGroup,
|
142
|
+
Watir::OptGroupCollection => Insite::OptGroupCollection,
|
143
|
+
Watir::Option => Insite::Option,
|
144
|
+
Watir::OptionCollection => Insite::OptionCollection,
|
145
|
+
Watir::Output => Insite::Output,
|
146
|
+
Watir::OutputCollection => Insite::OutputCollection,
|
147
|
+
Watir::Paragraph => Insite::Paragraph,
|
148
|
+
Watir::ParagraphCollection => Insite::ParagraphCollection,
|
149
|
+
Watir::Param => Insite::Param,
|
150
|
+
Watir::ParamCollection => Insite::ParamCollection,
|
151
|
+
Watir::Path => Insite::Path,
|
152
|
+
Watir::PathCollection => Insite::PathCollection,
|
153
|
+
Watir::Pattern => Insite::Pattern,
|
154
|
+
Watir::PatternCollection => Insite::PatternCollection,
|
155
|
+
Watir::Picture => Insite::Picture,
|
156
|
+
Watir::PictureCollection => Insite::PictureCollection,
|
157
|
+
Watir::Polygon => Insite::Polygon,
|
158
|
+
Watir::PolygonCollection => Insite::PolygonCollection,
|
159
|
+
Watir::Polyline => Insite::Polyline,
|
160
|
+
Watir::PolylineCollection => Insite::PolylineCollection,
|
161
|
+
Watir::Pre => Insite::Pre,
|
162
|
+
Watir::PreCollection => Insite::PreCollection,
|
163
|
+
Watir::Progress => Insite::Progress,
|
164
|
+
Watir::ProgressCollection => Insite::ProgressCollection,
|
165
|
+
Watir::Quote => Insite::Quote,
|
166
|
+
Watir::QuoteCollection => Insite::QuoteCollection,
|
167
|
+
Watir::RadialGradient => Insite::RadialGradient,
|
168
|
+
Watir::RadialGradientCollection => Insite::RadialGradientCollection,
|
169
|
+
Watir::Radio => Insite::Radio,
|
170
|
+
Watir::RadioCollection => Insite::RadioCollection,
|
171
|
+
Watir::Rect => Insite::Rect,
|
172
|
+
Watir::RectCollection => Insite::RectCollection,
|
173
|
+
Watir::Row => Insite::Row,
|
174
|
+
Watir::RowCollection => Insite::RowCollection,
|
175
|
+
Watir::SVG => Insite::SVG,
|
176
|
+
Watir::SVGCollection => Insite::SVGCollection,
|
177
|
+
Watir::SVGElement => Insite::SVGElement,
|
178
|
+
Watir::SVGElementCollection => Insite::SVGElementCollection,
|
179
|
+
Watir::Script => Insite::Script,
|
180
|
+
Watir::ScriptCollection => Insite::ScriptCollection,
|
181
|
+
Watir::Select => Insite::Select,
|
182
|
+
Watir::SelectCollection => Insite::SelectCollection,
|
183
|
+
Watir::Solidcolor => Insite::Solidcolor,
|
184
|
+
Watir::SolidcolorCollection => Insite::SolidcolorCollection,
|
185
|
+
Watir::Source => Insite::Source,
|
186
|
+
Watir::SourceCollection => Insite::SourceCollection,
|
187
|
+
Watir::Span => Insite::Span,
|
188
|
+
Watir::SpanCollection => Insite::SpanCollection,
|
189
|
+
Watir::Stop => Insite::Stop,
|
190
|
+
Watir::StopCollection => Insite::StopCollection,
|
191
|
+
Watir::Style => Insite::Style,
|
192
|
+
Watir::StyleCollection => Insite::StyleCollection,
|
193
|
+
Watir::Switch => Insite::Switch,
|
194
|
+
Watir::SwitchCollection => Insite::SwitchCollection,
|
195
|
+
Watir::Symbol => Insite::Symbol,
|
196
|
+
Watir::SymbolCollection => Insite::SymbolCollection,
|
197
|
+
Watir::TSpan => Insite::TSpan,
|
198
|
+
Watir::TSpanCollection => Insite::TSpanCollection,
|
199
|
+
Watir::Table => Insite::Table,
|
200
|
+
Watir::TableCaption => Insite::TableCaption,
|
201
|
+
Watir::TableCaptionCollection => Insite::TableCaptionCollection,
|
202
|
+
Watir::TableCell => Insite::TableCell,
|
203
|
+
Watir::TableCellCollection => Insite::TableCellCollection,
|
204
|
+
Watir::TableCol => Insite::TableCol,
|
205
|
+
Watir::TableColCollection => Insite::TableColCollection,
|
206
|
+
Watir::TableCollection => Insite::TableCollection,
|
207
|
+
Watir::TableDataCell => Insite::TableDataCell,
|
208
|
+
Watir::TableDataCellCollection => Insite::TableDataCellCollection,
|
209
|
+
Watir::TableHeaderCell => Insite::TableHeaderCell,
|
210
|
+
Watir::TableHeaderCellCollection => Insite::TableHeaderCellCollection,
|
211
|
+
Watir::TableRow => Insite::TableRow,
|
212
|
+
Watir::TableRowCollection => Insite::TableRowCollection,
|
213
|
+
Watir::TableSection => Insite::TableSection,
|
214
|
+
Watir::TableSectionCollection => Insite::TableSectionCollection,
|
215
|
+
Watir::Template => Insite::Template,
|
216
|
+
Watir::TemplateCollection => Insite::TemplateCollection,
|
217
|
+
Watir::TextArea => Insite::TextArea,
|
218
|
+
Watir::TextAreaCollection => Insite::TextAreaCollection,
|
219
|
+
Watir::TextContent => Insite::TextContent,
|
220
|
+
Watir::TextContentCollection => Insite::TextContentCollection,
|
221
|
+
Watir::TextField => Insite::TextField,
|
222
|
+
Watir::TextFieldCollection => Insite::TextFieldCollection,
|
223
|
+
Watir::TextPath => Insite::TextPath,
|
224
|
+
Watir::TextPathCollection => Insite::TextPathCollection,
|
225
|
+
Watir::TextPositioning => Insite::TextPositioning,
|
226
|
+
Watir::TextPositioningCollection => Insite::TextPositioningCollection,
|
227
|
+
Watir::Time => Insite::Time,
|
228
|
+
Watir::TimeCollection => Insite::TimeCollection,
|
229
|
+
Watir::Title => Insite::Title,
|
230
|
+
Watir::TitleCollection => Insite::TitleCollection,
|
231
|
+
Watir::Track => Insite::Track,
|
232
|
+
Watir::TrackCollection => Insite::TrackCollection,
|
233
|
+
Watir::UList => Insite::UList,
|
234
|
+
Watir::UListCollection => Insite::UListCollection,
|
235
|
+
Watir::Unknown => Insite::Unknown,
|
236
|
+
Watir::UnknownCollection => Insite::UnknownCollection,
|
237
|
+
Watir::Use => Insite::Use,
|
238
|
+
Watir::UseCollection => Insite::UseCollection,
|
239
|
+
Watir::Video => Insite::Video,
|
240
|
+
Watir::VideoCollection => Insite::VideoCollection,
|
241
|
+
Watir::View => Insite::View,
|
242
|
+
Watir::ViewCollection => Insite::ViewCollection,
|
243
|
+
}.freeze
|
244
|
+
end
|