Sha256: a1506bdac72b196a62a2b51f514acee25d9d17ae1a354afa48b39e5c5b4fd653
Contents?: true
Size: 631 Bytes
Versions: 28
Compression:
Stored size: 631 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module RSpec module Capybara # @!parse # # Checks if there is a more specific finder offered by Capybara. # # # # @example # # # bad # # find('#some-id') # # find('[visible][id=some-id]') # # # # # good # # find_by_id('some-id') # # find_by_id('some-id', visible: true) # # # class SpecificFinders < ::RuboCop::Cop::Base; end SpecificFinders = ::RuboCop::Cop::Capybara::SpecificFinders end end end end
Version data entries
28 entries across 28 versions & 4 rubygems