Referring to the docs you might want to use the next_sibling
of your b_el
:
b_el.next_sibling # contains " Test title"
"Sibling" in this context is the next node, not the next element/tag. Your element's next node is a text node, so you get the text you want.