Is there a way to match an attribute in case-insensitive fashion in XPath 1.0?
For example if I have this
<input type="submit"></input>
<input type="Submit"></input>
<input type="SUBMIT"></input>
I can use //input[@type='submit']
but it will match only the first element.
Is there a way to match all of the elements regardless case?