Feature that will point which element inside XPath selector has not found.
Actual behaviour points to entire selector (("My text" is not exist)
form.someClass >> .//select/option[contains(.,'My text')]
^
Element not found
Expected behaviour:
form.someClass >> .//select/option[contains(.,'My text')]
^ ^
| Not found 'option[contains(.,'My text')]'
<select><option>Option 1</select><...
Feature that will point which element inside XPath selector has not found.
Actual behaviour points to entire selector (("My text" is not exist)
Expected behaviour: