Method: Capybara::Node::Matchers#assert_no_text

Defined in:
lib/capybara/node/matchers.rb

#assert_no_text(type, text, options = {}) ⇒ true #assert_no_text(text, options = {}) ⇒ true

Asserts that the page or current node doesn’t have the given text content, ignoring any HTML tags.

Overloads:

  • #assert_no_text(type, text, options = {}) ⇒ true

    Parameters:

    • type (:all, :visible)

      Whether to check for only visible or all text

    • text (String, Regexp)

      The string/regexp to check for. If it’s a string, text is expected to include it. If it’s a regexp, text is expected to match it.

    Options Hash (options):

    • :count (Integer) — default: nil

      Number of times the text is expected to occur

    • :minimum (Integer) — default: nil

      Minimum number of times the text is expected to occur

    • :maximum (Integer) — default: nil

      Maximum number of times the text is expected to occur

    • :between (Range) — default: nil

      Range of times that is expected to contain number of times text occurs

    • :wait (Numeric) — default: Capybara.default_max_wait_time

      Maximum time that Capybara will wait for text to eq/match given string/regexp argument

  • #assert_no_text(text, options = {}) ⇒ true

    Parameters:

    • text (String, Regexp)

      The string/regexp to check for. If it’s a string, text is expected to include it. If it’s a regexp, text is expected to match it.

    Options Hash (options):

    • :count (Integer) — default: nil

      Number of times the text is expected to occur

    • :minimum (Integer) — default: nil

      Minimum number of times the text is expected to occur

    • :maximum (Integer) — default: nil

      Maximum number of times the text is expected to occur

    • :between (Range) — default: nil

      Range of times that is expected to contain number of times text occurs

    • :wait (Numeric) — default: Capybara.default_max_wait_time

      Maximum time that Capybara will wait for text to eq/match given string/regexp argument

Returns:

  • (true)

Raises:



541
542
543
544
545
546
547
548
549
550
551
# File 'lib/capybara/node/matchers.rb', line 541

def assert_no_text(*args)
  query = Capybara::Queries::TextQuery.new(*args)
  synchronize(query.wait) do
    count = query.resolve_for(self)
    matches_count = Capybara::Helpers.matches_count?(count, query.options)
    if matches_count && ((count > 0) || Capybara::Helpers.expects_none?(query.options))
      raise Capybara::ExpectationNotMet, query.negative_failure_message
    end
  end
  return true
end