# implicitly selects from the document_root_elementcss_select '.hello'# => Nokogiri::XML::NodeSet of elements with hello class# select from a supplied node. assert_select asserts elements exist.assert_select document_root_element.at('.hello'),'.goodbye'# elements in CDATA encoded sections can also be selectedassert_select_encoded '#out-of-your-element'# assert elements within an html email existsassert_select_email '#you-got-mail'