自動化しようとしている Web サイトは、サイトマップ ツリーを使用してナビゲートできます。セレンから子ノードにアクセスするために、次のコードを記述しました。
IWebElement menu = driver.FindElement(By.LinkText("Setup"));
//Setup is the parent node
Actions mouseOver = new Actions(driver);
mouseOver.MoveToElement(menu).Build().Perform();
driver.FindElement(By.LinkText("Entities")).Click();
//Entities is the child node.
しかし、webdriver はElement not found例外をスローします。
テスト ケースの再生には Firefox を使用しています。