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
120
121
122
123
124
125
|
# File 'lib/capybara/poltergeist/errors.rb', line 120
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
108
109
110
|
# File 'lib/capybara/poltergeist/errors.rb', line 108
def name
response['args'][0]
end
|
#position ⇒ Object
116
117
118
|
# File 'lib/capybara/poltergeist/errors.rb', line 116
def position
[response['args'][2]['x'], response['args'][2]['y']]
end
|
#selector ⇒ Object
112
113
114
|
# File 'lib/capybara/poltergeist/errors.rb', line 112
def selector
response['args'][1]
end
|