Asserts that there is a tag/node/element in the body of the response that
meets all of the given conditions. The conditions
parameter
must be a hash of any of the following keys (all are optional):
-
:tag
: the node type must match the corresponding value -
:attributes
: a hash. The node's attributes must match the corresponding values in the hash. -
:parent
: a hash. The node's parent must match the corresponding hash. -
:child
: a hash. At least one of the node's immediate children must meet the criteria described by the hash. -
:ancestor
: a hash. At least one of the node's ancestors must meet the criteria described by the hash. -
:descendant
: a hash. At least one of the node's descendants must meet the criteria described by the hash. -
:sibling
: a hash. At least one of the node's siblings must meet the criteria described by the hash. -
:after
: a hash. The node must be after any sibling meeting the criteria described by the hash, and at least one sibling must match. -
:before
: a hash. The node must be before any sibling meeting the criteria described by the hash, and at least one sibling must match. -
:children
: a hash, for counting children of a node. Accepts the keys:-
:count
: either a number or a range which must equal (or include) the number of children that match. -
:less_than
: the number of matching children must be less than this number. -
:greater_than
: the number of matching children must be greater than this number. -
:only
: another hash consisting of the keys to use to match on the children, and only matching children will be counted.
-
-
:content
: the textual content of the node must match the given value. This will not match HTML tags in the body of a tagâonly text.
Conditions are matched using the following algorithm:
-
if the condition is a string, it must be a substring of the value.
-
if the condition is a regexp, it must match the value.
-
if the condition is a number, the value must match number.to_s.
-
if the condition is
true
, the value must not benil
. -
if the condition is
false
ornil
, the value must benil
.# Assert that there is a âspanâ tag #assert_tag tag: âspanâ
# Assert that there is a âspanâ tag with id=âxâ #assert_tag tag: âspanâ, attributes: { id: âxâ }
# Assert that there is a âspanâ tag using the short-hand #assert_tag :span
# Assert that there is a âspanâ tag with id=âxâ using the short-hand #assert_tag :span, attributes: { id: âxâ }
# Assert that there is a âspanâ inside of a âdivâ #assert_tag tag: âspanâ, parent: { tag: âdivâ }
# Assert that there is a âspanâ somewhere inside a table #assert_tag tag: âspanâ, ancestor: { tag: âtableâ }
# Assert that there is a âspanâ with at least one âemâ child #assert_tag tag: âspanâ, child: { tag: âemâ }
# Assert that there is a âspanâ containing a (possibly nested) # âstrongâ tag. #assert_tag tag: âspanâ, descendant: { tag: âstrongâ }
# Assert that there is a âspanâ containing between 2 and 4 âemâ tags # as immediate children #assert_tag tag: âspanâ,
children: { count: 2..4, only: { tag: "em" } }
# Get funky: assert that there is a âdivâ, with an âulâ ancestor # and an âliâ parent (with âclassâ = âenumâ), and containing a # âspanâ descendant that contains text matching /hello world/ #assert_tag tag: âdivâ,
ancestor: { tag: "ul" }, parent: { tag: "li", attributes: { class: "enum" } }, descendant: { tag: "span", child: /hello world/ }
Please note: assert_tag
and
assert_no_tag
only work with well-formed XHTML. They recognize
a few tags as implicitly self-closing (like br and hr and such) but will
not work correctly with tags that allow optional closing tags (p, li, td).
You must explicitly close all of your tags to use these
assertions.
Please login to continue.