I have a space on the page with the text "Details for item 1 bla-bla-bla". This code works fine:
IE.Span(Find.ByText(new Regex("Details for item 1"))).Click();
But this (βIβ in uppercase) - the element was not found:
IE.Span(Find.ByText(new Regex("Details for item 1"))).Click();
Why? Did I miss something?
source share