You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the ns|* selector unfortunately doesn't find any elements.
@Test
fun`Can find all ac namespace elements`() {
val html ="""<html><body><p>Hello, World!</p><ac:p>p in ac namespace</ac:p><ac:img>img in ac namespace</ac:img><ac:page>page in ac namespace</ac:page></body></html>"""val document =Jsoup.parse(html)
val namespaceElements = document.select("ac|*")
assertThat(namespaceElements.size).isEqualTo(3)
// expected: 3// but was: 0
}