Class: Capybara::RackTest::Node
Direct Known Subclasses
Form
Constant Summary
collapse
- BLOCK_ELEMENTS =
%w[p h1 h2 h3 h4 h5 h6 ol ul pre address blockquote dl div fieldset form hr noscript table].freeze
Instance Attribute Summary
Attributes inherited from Driver::Node
#driver, #native
Instance Method Summary
collapse
#double_click, #drag_to, #hover, #initialize, #inspect, #multiple?, #readonly?, #right_click, #send_keys, #trigger
Instance Method Details
#==(other) ⇒ Object
111
112
113
|
# File 'lib/capybara/rack_test/node.rb', line 111
def ==(other)
native == other.native
end
|
#[](name) ⇒ Object
23
24
25
|
# File 'lib/capybara/rack_test/node.rb', line 23
def [](name)
string_node[name]
end
|
#all_text ⇒ Object
6
7
8
9
10
11
12
13
|
# File 'lib/capybara/rack_test/node.rb', line 6
def all_text
native.text
.gsub(/[\u200b\u200e\u200f]/, '')
.gsub(/[\ \n\f\t\v\u2028\u2029]+/, ' ')
.gsub(/\A[[:space:]&&[^\u00a0]]+/, "")
.gsub(/[[:space:]&&[^\u00a0]]+\z/, "")
.tr("\u00a0", ' ')
end
|
#checked? ⇒ Boolean
81
82
83
|
# File 'lib/capybara/rack_test/node.rb', line 81
def checked?
string_node.checked?
end
|
#click(keys = [], **offset) ⇒ Object
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# File 'lib/capybara/rack_test/node.rb', line 58
def click(keys = [], **offset)
raise ArgumentError, "The RackTest driver does not support click options" unless keys.empty? && offset.empty?
if link?
follow_link
elsif submits?
associated_form = form
Capybara::RackTest::Form.new(driver, associated_form).submit(self) if associated_form
elsif checkable?
set(!checked?)
elsif tag_name == 'label'
click_label
end
end
|
#disabled? ⇒ Boolean
89
90
91
92
93
94
95
96
97
|
# File 'lib/capybara/rack_test/node.rb', line 89
def disabled?
return true if string_node.disabled?
if %w[option optgroup].include? tag_name
find_xpath("parent::*[self::optgroup or self::select or self::datalist]")[0].disabled?
else
!find_xpath("parent::fieldset[@disabled] | ancestor::*[not(self::legend) or preceding-sibling::legend][parent::fieldset[@disabled]]").empty?
end
end
|
#find_css(locator) ⇒ Object
107
108
109
|
# File 'lib/capybara/rack_test/node.rb', line 107
def find_css(locator)
native.css(locator, Capybara::RackTest::CSSHandlers.new).map { |n| self.class.new(driver, n) }
end
|
#find_xpath(locator) ⇒ Object
103
104
105
|
# File 'lib/capybara/rack_test/node.rb', line 103
def find_xpath(locator)
native.xpath(locator).map { |n| self.class.new(driver, n) }
end
|
#path ⇒ Object
99
100
101
|
# File 'lib/capybara/rack_test/node.rb', line 99
def path
native.path
end
|
#select_option ⇒ Object
47
48
49
50
51
|
# File 'lib/capybara/rack_test/node.rb', line 47
def select_option
return if disabled?
deselect_options unless select_node.multiple?
native["selected"] = 'selected'
end
|
#selected? ⇒ Boolean
85
86
87
|
# File 'lib/capybara/rack_test/node.rb', line 85
def selected?
string_node.selected?
end
|
#set(value, **options) ⇒ Object
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# File 'lib/capybara/rack_test/node.rb', line 31
def set(value, **options)
return if disabled? || readonly?
warn "Options passed to Node#set but the RackTest driver doesn't support any - ignoring" unless options.empty?
if value.is_a?(Array) && !multiple?
raise TypeError, "Value cannot be an Array when 'multiple' attribute is not present. Not a #{value.class}"
end
if radio? then set_radio(value)
elsif checkbox? then set_checkbox(value)
elsif input_field? then set_input(value)
elsif textarea? then native['_capybara_raw_value'] = value.to_s
end
end
|
#tag_name ⇒ Object
73
74
75
|
# File 'lib/capybara/rack_test/node.rb', line 73
def tag_name
native.node_name
end
|
#unselect_option ⇒ Object
53
54
55
56
|
# File 'lib/capybara/rack_test/node.rb', line 53
def unselect_option
raise Capybara::UnselectNotAllowed, "Cannot unselect option from single select box." unless select_node.multiple?
native.remove_attribute('selected')
end
|
#value ⇒ Object
27
28
29
|
# File 'lib/capybara/rack_test/node.rb', line 27
def value
string_node.value
end
|
#visible? ⇒ Boolean
77
78
79
|
# File 'lib/capybara/rack_test/node.rb', line 77
def visible?
string_node.visible?
end
|
#visible_text ⇒ Object
15
16
17
18
19
20
21
|
# File 'lib/capybara/rack_test/node.rb', line 15
def visible_text
displayed_text.gsub(/\ +/, ' ')
.gsub(/[\ \n]*\n[\ \n]*/, "\n")
.gsub(/\A[[:space:]&&[^\u00a0]]+/, "")
.gsub(/[[:space:]&&[^\u00a0]]+\z/, "")
.tr("\u00a0", ' ')
end
|