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
func Test_MyTest(t *testing.T) {
assert := assert.New(t)
inputHtml := `
<a>
<b>hello</b>
my friend
</a>`
topNode, _ := xmlquery.Parse(strings.NewReader(inputHtml))
// `my friend` should be a sibling with <b> or a child of <a> but it is neither and unobtainable from the tree structure
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: