[ユーザーの表示] をクリックしようとしていますが、何らかの理由で Chrome では機能しますが、Firefox では機能しません。
//this clicks on the Admin tasks on the top.
driver.findElement(By.id("x-auto-34")).click();
//moves mouse over user profile management under the drop down menu for admin task
actions.moveToElement(driver.findElement(By.id("UserProfileManagement"))).build().perform();
//finds user configuration and clicks.
driver.findElement(By.id("ViewUsers")).click();
xpathでもこれを試しましたが、Firefoxでのみ同じ問題が発生しました。
私がそれを実行すると、noelement found例外などは発生しません。