DEV: Raise exception when capybara finder times out ()

If a selenium finder takes the full wait duration to resolve, that means it has been written inefficiently. Most likely a matcher has been negated incorrectly.

This commit introduces a patch which will raise an error in this situation so that we can catch the issues while developing specs.

This commit also fixes chat's visit_thread helper. It was spinning on `has_css?(".chat-skeleton")` for the full selenium wait duration, and then returns false. That's because the thread is often already fully loaded before `has_css?` is even called. It's now updated to only look for the final expected state.
This commit is contained in:
David Taylor 2023-08-08 10:16:09 +01:00 committed by GitHub
parent 3eac47443f
commit edb276b9a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 2 deletions
plugins/chat/spec/system/page_objects/chat
spec

@ -50,8 +50,7 @@ module PageObjects
def visit_thread(thread)
visit(thread.url)
has_css?(".chat-skeleton")
has_no_css?(".chat-skeleton")
has_css?(".chat-thread:not(.loading)[data-id=\"#{thread.id}\"]")
end
def visit_channel_settings(channel)

@ -283,6 +283,33 @@ RSpec.configure do |config|
Capybara::Session.class_eval { prepend IgnoreUnicornCapturedErrors }
module CapybaraTimeoutExtension
class CapybaraTimedOut < StandardError
def initialize(wait_time)
super "Capybara waited for the full wait duration (#{wait_time}s). " +
"This will slow down the test suite. " +
"Beware of negating the result of selenium's RSpec matchers."
end
end
def synchronize(seconds = nil, errors: nil)
return super if session.synchronized # Nested synchronize. We only want our logic on the outermost call.
begin
super
rescue StandardError => e
seconds = session_options.default_max_wait_time if [nil, true].include? seconds
if catch_error?(e, errors) && seconds != 0
# This error will only have been raised if the timer expired. Raise our own error instead.
raise CapybaraTimedOut.new(seconds)
else
raise
end
end
end
end
Capybara::Node::Base.prepend(CapybaraTimeoutExtension)
# possible values: OFF, SEVERE, WARNING, INFO, DEBUG, ALL
browser_log_level = ENV["SELENIUM_BROWSER_LOG_LEVEL"] || "SEVERE"