Module: Capybara::Node::Matchers

Included in:
Capybara::Node
Defined in:
lib/capybara/node/matchers.rb

Instance Method Summary collapse

Instance Method Details

#has_button?(locator) ⇒ Boolean

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

Parameters:

  • locator (String)

    The text, value or id of a button to check for

Returns:

  • (Boolean)

    Whether it exists



213
214
215
# File 'lib/capybara/node/matchers.rb', line 213

def has_button?(locator)
  has_xpath?(XPath::HTML.button(locator))
end

#has_checked_field?(locator) ⇒ Boolean

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

Parameters:

  • locator (String)

    The label, name or id of a checked field

Returns:

  • (Boolean)

    Whether it exists



270
271
272
# File 'lib/capybara/node/matchers.rb', line 270

def has_checked_field?(locator)
  has_xpath?(XPath::HTML.field(locator, :checked => true))
end

#has_content?(content) ⇒ Boolean

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

Parameters:

  • content (String)

    The text to check for

Returns:

  • (Boolean)

    Whether it exists



165
166
167
# File 'lib/capybara/node/matchers.rb', line 165

def has_content?(content)
  has_xpath?(XPath::HTML.content(content))
end

#has_css?(path, options = {}) ⇒ Boolean

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 Finders#all accepts, such as :text and :visible.

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

Parameters:

  • path (String)

    A CSS selector

  • options (Hash{Symbol => Object}) (defaults to: {})

    Additional options

Options Hash (options):

  • :count (Integer) — default: nil

    Number of times the selector should occur

Returns:

  • (Boolean)

    If the selector exists



141
142
143
# File 'lib/capybara/node/matchers.rb', line 141

def has_css?(path, options={})
  has_xpath?(XPath.css(path), options)
end

#has_field?(locator, options = {}) ⇒ Boolean

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')

Parameters:

  • locator (String)

    The label, name or id of a field to check for

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :with (String)

    The text content of the field

Returns:

  • (Boolean)

    Whether it exists



244
245
246
# File 'lib/capybara/node/matchers.rb', line 244

def has_field?(locator, options={})
  has_xpath?(XPath::HTML.field(locator, options))
end

#has_link?(locator) ⇒ Boolean

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

Parameters:

  • locator (String)

    The text or id of a link to check for

Returns:

  • (Boolean)

    Whether it exists



189
190
191
# File 'lib/capybara/node/matchers.rb', line 189

def has_link?(locator)
  has_xpath?(XPath::HTML.link(locator))
end

#has_no_button?(locator) ⇒ Boolean

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

Parameters:

  • locator (String)

    The text, value or id of a button to check for

Returns:

  • (Boolean)

    Whether it doesn’t exist



225
226
227
# File 'lib/capybara/node/matchers.rb', line 225

def has_no_button?(locator)
  has_no_xpath?(XPath::HTML.button(locator))
end

#has_no_content?(content) ⇒ Boolean

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

Parameters:

  • content (String)

    The text to check for

Returns:

  • (Boolean)

    Whether it exists



177
178
179
# File 'lib/capybara/node/matchers.rb', line 177

def has_no_content?(content)
  has_no_xpath?(XPath::HTML.content(content))
end

#has_no_css?(path, options = {}) ⇒ Boolean

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

Returns:

  • (Boolean)


153
154
155
# File 'lib/capybara/node/matchers.rb', line 153

def has_no_css?(path, options={})
  has_no_xpath?(XPath.css(path), options)
end

#has_no_field?(locator, options = {}) ⇒ Boolean

Checks if the page or current node has no form field with the given label, name or id. See #has_field?.

Parameters:

  • locator (String)

    The label, name or id of a field to check for

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :with (String)

    The text content of the field

Returns:

  • (Boolean)

    Whether it doesn’t exist



257
258
259
# File 'lib/capybara/node/matchers.rb', line 257

def has_no_field?(locator, options={})
  has_no_xpath?(XPath::HTML.field(locator, options))
end

#has_no_link?(locator) ⇒ Boolean

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

Parameters:

  • locator (String)

    The text or id of a link to check for

Returns:

  • (Boolean)

    Whether it doesn’t exist



201
202
203
# File 'lib/capybara/node/matchers.rb', line 201

def has_no_link?(locator)
  has_no_xpath?(XPath::HTML.link(locator))
end

#has_no_select?(locator, options = {}) ⇒ Boolean

Checks if the page or current node has no select field with the given label, name or id. See #has_select?.

Parameters:

  • locator (String)

    The label, name or id of a select box

  • options (Hash) (defaults to: {})

    a customizable set of options

Returns:

  • (Boolean)

    Whether it doesn’t exist



322
323
324
# File 'lib/capybara/node/matchers.rb', line 322

def has_no_select?(locator, options={})
  has_no_xpath?(XPath::HTML.select(locator, options))
end

#has_no_selector?(*args) ⇒ Boolean

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

Returns:

  • (Boolean)


58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/capybara/node/matchers.rb', line 58

def has_no_selector?(*args)
  options = if args.last.is_a?(Hash) then args.last else {} end
  wait_conditionally_until do
    results = all(*args)

    if options[:count]
      results.size != options[:count]
    else
      results.empty?
    end
  end
rescue Capybara::TimeoutError
  return false
end

#has_no_table?(locator, options = {}) ⇒ Boolean

Checks if the page or current node has no table with the given id or caption. See #has_table?.

Parameters:

  • locator (String)

    The id or caption of a table

  • options (Hash) (defaults to: {})

    a customizable set of options

Returns:

  • (Boolean)

    Whether it doesn’t exist



355
356
357
# File 'lib/capybara/node/matchers.rb', line 355

def has_no_table?(locator, options={})
  has_no_xpath?(XPath::HTML.table(locator, options))
end

#has_no_xpath?(path, options = {}) ⇒ Boolean

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

Returns:

  • (Boolean)


114
115
116
# File 'lib/capybara/node/matchers.rb', line 114

def has_no_xpath?(path, options={})
  has_no_selector?(:xpath, path, options)
end

#has_select?(locator, options = {}) ⇒ 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 a given set of options exists for this select box:

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

Parameters:

  • locator (String)

    The label, name or id of a select box

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :options (Array)

    Options which should be contained in this select box

  • :selected (String, Array)

    Options which should be selected

Returns:

  • (Boolean)

    Whether it exists



310
311
312
# File 'lib/capybara/node/matchers.rb', line 310

def has_select?(locator, options={})
  has_xpath?(XPath::HTML.select(locator, options))
end

#has_selector?(*args) ⇒ Boolean

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 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:

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

Parameters:

  • kind_or_locator (:css, :xpath, String)

    Either the kind of selector or the selector itself

  • locator (String)

    The selector

  • options (Hash{Symbol => Object})

    Additional options

Returns:

  • (Boolean)

    If the expression exists



35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/capybara/node/matchers.rb', line 35

def has_selector?(*args)
  options = if args.last.is_a?(Hash) then args.last else {} end
  wait_conditionally_until do
    results = all(*args)

    if options[:count]
      results.size == options[:count]
    else
      results.size > 0
    end
  end
rescue Capybara::TimeoutError
  return false
end

#has_table?(locator, options = {}) ⇒ Boolean

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

If the options :rows is given, it will check that the table contains the rows and columns given:

page.has_table?('People', :rows => [['Jonas', '24'], ['Peter', '32']])

Note that this option is quite strict, the order needs to be correct and the text needs to match exactly.

Parameters:

  • locator (String)

    The id or caption of a table

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :rows (Array[Array[String]])

    A set of rows the table should contain

Returns:

  • (Boolean)

    Whether it exist



343
344
345
# File 'lib/capybara/node/matchers.rb', line 343

def has_table?(locator, options={})
  has_xpath?(XPath::HTML.table(locator, options))
end

#has_unchecked_field?(locator) ⇒ Boolean

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

Parameters:

  • locator (String)

    The label, name or id of an unchecked field

Returns:

  • (Boolean)

    Whether it exists



283
284
285
# File 'lib/capybara/node/matchers.rb', line 283

def has_unchecked_field?(locator)
  has_xpath?(XPath::HTML.field(locator, :unchecked => true))
end

#has_xpath?(path, options = {}) ⇒ Boolean

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 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)

Parameters:

  • path (String)

    An XPath expression

  • options (Hash{Symbol => Object}) (defaults to: {})

    Additional options

Options Hash (options):

  • :count (Integer) — default: nil

    Number of times the expression should occur

Returns:

  • (Boolean)

    If the expression exists



102
103
104
# File 'lib/capybara/node/matchers.rb', line 102

def has_xpath?(path, options={})
  has_selector?(:xpath, path, options)
end