1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Merge pull request #2608 from luke-hill/patch-1

Update minor text/link issue in warning for FirefoxNode
This commit is contained in:
Thomas Walpole 2022-11-03 21:38:24 -07:00 committed by GitHub
commit c58bc3b6fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ class Capybara::Selenium::FirefoxNode < Capybara::Selenium::Node
rescue ::Selenium::WebDriver::Error::ElementNotInteractableError rescue ::Selenium::WebDriver::Error::ElementNotInteractableError
if tag_name == 'tr' if tag_name == 'tr'
warn 'You are attempting to click a table row which has issues in geckodriver/marionette - ' \ warn 'You are attempting to click a table row which has issues in geckodriver/marionette - ' \
'see https://github.com/mozilla/geckodriver/issues/1228. Your test should probably be ' \ 'see https://github.com/mozilla/geckodriver/issues/1228 - Your test should probably be ' \
'clicking on a table cell like a user would. Clicking the first cell in the row instead.' 'clicking on a table cell like a user would. Clicking the first cell in the row instead.'
return find_css('th:first-child,td:first-child')[0].click(keys, **options) return find_css('th:first-child,td:first-child')[0].click(keys, **options)
end end