Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「アイテム1bla-bla-blaの詳細」というテキストのスパンがページにあります。このコードは正常に機能します:
IE.Span(Find.ByText(new Regex("Details for item 1"))).Click();
しかし、これ(大文字の「I」)-要素が見つかりません:
IE.Span(Find.ByText(new Regex("Details for Item 1"))).Click();
なんで?私は何か見落としてますか?
(?i)大文字と小文字を区別しないように追加
(?i)
new Regex("(?i)Details for Item 1 bla-bla-bla")