Module Capybara::Node::Matchers
In: lib/capybara/node/matchers.rb

Methods

Public Instance methods

Asserts that a given selector is not on the page or current node. Usage is identical to Capybara::Node::Matchers#assert_selector

@param (see Capybara::Node::Finders#assert_selector) @raise [Capybara::ExpectationNotMet] If the selector exists

Asserts that a given selector is on the page or current node.

    page.assert_selector('p#foo')
    page.assert_selector(:xpath, './/p[@id="foo"]')
    page.assert_selector(:foo)

By default it will check if the expression occurs at least once, but a different number can be specified.

    page.assert_selector('p#foo', :count => 4)

This will check if the expression occurs exactly 4 times.

It also accepts all options that {Capybara::Node::Finders#all} accepts, such as :text and :visible.

    page.assert_selector('li', :text => 'Horse', :visible => true)

{assert_selector} can also accept XPath expressions generated by the XPath gem:

    page.assert_selector(:xpath, XPath.descendant(:p))

@param (see Capybara::Node::Finders#all) @option options [Integer] :count (nil) Number of times the expression should occur @raise [Capybara::ExpectationNotMet] If the selector does not exist

Checks if the page or current node has a button with the given text, value or id.

@param [String] locator The text, value or id of a button to check for @return [Boolean] Whether it exists

Checks if the page or current node has a radio button or checkbox with the given label, value or id, that is currently checked.

@param [String] locator The label, name or id of a checked field @return [Boolean] Whether it exists

has_content?(content)

Alias for has_text?

Checks if a given CSS selector is on the page or current node.

    page.has_css?('p#foo')

By default it will check if the selector occurs at least once, but a different number can be specified.

    page.has_css?('p#foo', :count => 4)

This will check if the selector occurs exactly 4 times.

It also accepts all options that {Capybara::Node::Finders#all} accepts, such as :text and :visible.

    page.has_css?('li', :text => 'Horse', :visible => true)

@param [String] path A CSS selector @param options (see Capybara::Node::Finders#all) @option options [Integer] :count (nil) Number of times the selector should occur @return [Boolean] If the selector exists

Checks if the page or current node has a form field with the given label, name or id.

For text fields and other textual fields, such as textareas and HTML5 email/url/etc. fields, it‘s possible to specify a :with option to specify the text the field should contain:

    page.has_field?('Name', :with => 'Jonas')

It is also possible to filter by the field type attribute:

    page.has_field?('Email', :type => 'email')

@param [String] locator The label, name or id of a field to check for @option options [String] :with The text content of the field @option options [String] :type The type attribute of the field @return [Boolean] Whether it exists

Checks if the page or current node has a link with the given text or id.

@param [String] locator The text or id of a link to check for @param options @option options [String] :href The value the href attribute must be @return [Boolean] Whether it exists

Checks if the page or current node has no button with the given text, value or id.

@param [String] locator The text, value or id of a button to check for @return [Boolean] Whether it doesn‘t exist

Checks if the page or current node has no radio button or checkbox with the given label, value or id, that is currently checked.

@param [String] locator The label, name or id of a checked field @return [Boolean] Whether it doesn‘t exists

has_no_content?(content)

Alias for has_no_text?

Checks if a given CSS selector is not on the page or current node. Usage is identical to Capybara::Node::Matchers#has_css?

@param (see Capybara::Node::Finders#has_css?) @return [Boolean]

Checks if the page or current node has no form field with the given label, name or id. See {Capybara::Node::Matchers#has_field?}.

@param [String] locator The label, name or id of a field to check for @option options [String] :with The text content of the field @option options [String] :type The type attribute of the field @return [Boolean] Whether it doesn‘t exist

Checks if the page or current node has no link with the given text or id.

@param (see Capybara::Node::Finders#has_link?) @return [Boolean] Whether it doesn‘t exist

Checks if the page or current node has no select field with the given label, name or id. See {Capybara::Node::Matchers#has_select?}.

@param (see Capybara::Node::Matchers#has_select?) @return [Boolean] Whether it doesn‘t exist

Checks if a given selector is not on the page or current node. Usage is identical to Capybara::Node::Matchers#has_selector?

@param (see Capybara::Node::Finders#has_selector?) @return [Boolean]

Checks if the page or current node has no table with the given id or caption. See {Capybara::Node::Matchers#has_table?}.

@param (see Capybara::Node::Matchers#has_table?) @return [Boolean] Whether it doesn‘t exist

Checks if the page or current node does not have the given text content, ignoring any HTML tags and normalizing whitespace.

This only matches displayable text and specifically excludes text contained within non-display nodes such as script or head tags.

@param [String] content The text to check for @return [Boolean] Whether it doesn‘t exist

Checks if the page or current node has no radio button or checkbox with the given label, value or id, that is currently unchecked.

@param [String] locator The label, name or id of an unchecked field @return [Boolean] Whether it doesn‘t exists

Checks if a given XPath expression is not on the page or current node. Usage is identical to Capybara::Node::Matchers#has_xpath?

@param (see Capybara::Node::Finders#has_xpath?) @return [Boolean]

Checks if the page or current node has a select field with the given label, name or id.

It can be specified which option should currently be selected:

    page.has_select?('Language', :selected => 'German')

For multiple select boxes, several options may be specified:

    page.has_select?('Language', :selected => ['English', 'German'])

It‘s also possible to check if the exact set of options exists for this select box:

    page.has_select?('Language', :options => ['English', 'German', 'Spanish'])

You can also check for a partial set of options:

    page.has_select?('Language', :with_options => ['English', 'German'])

@param [String] locator The label, name or id of a select box @option options [Array] :options Options which should be contained in this select box @option options [Array] :with_options Partial set of options which should be contained in this select box @option options [String, Array] :selected Options which should be selected @return [Boolean] Whether it exists

Checks if a given selector is on the page or current node.

    page.has_selector?('p#foo')
    page.has_selector?(:xpath, './/p[@id="foo"]')
    page.has_selector?(:foo)

By default it will check if the expression occurs at least once, but a different number can be specified.

    page.has_selector?('p#foo', :count => 4)

This will check if the expression occurs exactly 4 times.

It also accepts all options that {Capybara::Node::Finders#all} accepts, such as :text and :visible.

    page.has_selector?('li', :text => 'Horse', :visible => true)

has_selector? can also accept XPath expressions generated by the XPath gem:

    page.has_selector?(:xpath, XPath.descendant(:p))

@param (see Capybara::Node::Finders#all) @option options [Integer] :count (nil) Number of times the expression should occur @return [Boolean] If the expression exists

Checks if the page or current node has a table with the given id or caption:

   page.has_table?('People')

@param [String] locator The id or caption of a table @return [Boolean] Whether it exist

Checks if the page or current node has the given text content, ignoring any HTML tags and normalizing whitespace.

This only matches displayable text and specifically excludes text contained within non-display nodes such as script or head tags.

@param [String] content The text to check for @return [Boolean] Whether it exists

Checks if the page or current node has a radio button or checkbox with the given label, value or id, that is currently unchecked.

@param [String] locator The label, name or id of an unchecked field @return [Boolean] Whether it exists

Checks if a given XPath expression is on the page or current node.

    page.has_xpath?('.//p[@id="foo"]')

By default it will check if the expression occurs at least once, but a different number can be specified.

    page.has_xpath?('.//p[@id="foo"]', :count => 4)

This will check if the expression occurs exactly 4 times.

It also accepts all options that {Capybara::Node::Finders#all} accepts, such as :text and :visible.

    page.has_xpath?('.//li', :text => 'Horse', :visible => true)

has_xpath? can also accept XPath expressions generate by the XPath gem:

    xpath = XPath.generate { |x| x.descendant(:p) }
    page.has_xpath?(xpath)

@param [String] path An XPath expression @param options (see Capybara::Node::Finders#all) @option options [Integer] :count (nil) Number of times the expression should occur @return [Boolean] If the expression exists

[Validate]