Getting Text from Parent element while Text in Child exists

I’ve only just started trying out browser library if I was to be honest from moving from seleniumlibrary, but from what I understand there’s no way of getting the text without that second span text value in this instance with Get Text and it’s acting as it should (could be wrong), it was pretty fun to play around with the Get Text and Get Property.

But what you could do in the mean time is:
${el} Get Element "insert_your_selector"
${value} Evaluate JavaScript ${el} (elem) => elem.firstChild.textContent
or
${value} Evaluate JavaScript ${el} (elem) => elem.firstChild.nextSibling.textContent

Your example “something like that” :wink: