Exception: Capybara::Poltergeist::MouseEventFailed
Instance Attribute Summary
Attributes inherited from NodeError
#node
Attributes inherited from ClientError
#response
Instance Method Summary
collapse
Methods inherited from NodeError
#initialize
Methods inherited from ClientError
#initialize
Instance Method Details
#message ⇒ Object
151
152
153
154
155
156
|
# File 'lib/capybara/poltergeist/errors.rb', line 151
def message
"Firing a #{name} at co-ordinates [#{position.join(', ')}] failed. Poltergeist detected " \
"another element with CSS selector '#{selector}' at this position. " \
"It may be overlapping the element you are trying to interact with. " \
"If you don't care about overlapping elements, try using node.trigger('#{name}')."
end
|
#name ⇒ Object
139
140
141
|
# File 'lib/capybara/poltergeist/errors.rb', line 139
def name
response['args'][0]
end
|
#position ⇒ Object
147
148
149
|
# File 'lib/capybara/poltergeist/errors.rb', line 147
def position
[response['args'][2]['x'], response['args'][2]['y']]
end
|
#selector ⇒ Object
143
144
145
|
# File 'lib/capybara/poltergeist/errors.rb', line 143
def selector
response['args'][1]
end
|