From ea014024678be28278e0189fd8fe9d9b1ea1355c Mon Sep 17 00:00:00 2001 From: YusukeIwaki Date: Mon, 13 Nov 2023 00:35:50 +0900 Subject: [PATCH] add pending for Firefox --- spec/capybara/playwright_spec.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spec/capybara/playwright_spec.rb b/spec/capybara/playwright_spec.rb index 848b131..85346ed 100644 --- a/spec/capybara/playwright_spec.rb +++ b/spec/capybara/playwright_spec.rb @@ -39,6 +39,9 @@ module TestSessions pending "WebKit opens an alert that can't be closed" if ENV['BROWSER'] == 'webkit' when /shadow_root should produce error messages when failing/ pending "Probably Capybara would assume only Selenium driver." + when /fill_in should handle carriage returns with line feeds in a textarea correctly/ + # https://github.com/teamcapybara/capybara/commit/a9dd889b640759925bd04c4991de086160242fae#diff-b62b86ae4de5582bd37146266622e3debbdcab6bab6e95f522185c6a4269067dR82 + pending "Not sure what firefox is doing here" if ENV['BROWSER'] == 'firefox' end Capybara::SpecHelper.reset!