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.
リンク <> リンクテキスト <> があります
Find.BySelector を使用し、セレンで行うようにリンクのテキストを使用して識別する方法....
//a [contains (text (),'linktext')]
正確なテキストでリンクを検索するには:
myIE.Link(Find.ByText("my literal link text")).Click();
「含む」テキストでリンクを見つける方法の 1 つは、上記と同じことを行いますが、Find.ByText(new Regex......());
Find.ByText(new Regex......());