Lets say my website contains multiple svg elements and I want to find the following:
<svg id="some-svg-id" />
How can I find this svg via its id?
I aware that //*[local-name()='svg'] finds all svg elements but how can I narrow it further down to one specific via its id?