mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00

This change turns quoted match to be case-sensitive (as before), but not strictly full-string for the whole element's text. This is a fix for a case where element contains text nodes and child elements: ```html <div>text1<span>child node</span>text2</div> ``` We now match this div by `text="text1"` and `text="text2"`.