如何使用硒单击 href 链接
2022-09-01 16:51:17
我有一个网页链接href
<a href="/docs/configuration">App Configuration</a>
使用硒,我需要点击链接。目前,我正在使用以下代码 -
Driver.findElement(By.xpath("//a[text()='App Configuration']")).click();
但它没有重定向到页面。我也尝试了下面的代码 -
Driver.findElement(By.xpath(//a[@href ='/docs/configuration']")).click();
但这是抛出以下异常 -
org.openqa.selenium.ElementNotVisibleException: Element is not currently visible and so may not be interacted with
Command duration or timeout: 13 milliseconds
链接可见,页面已完全加载。我不知道我的代码有什么问题。