我有一个块,“类别”。此块有一个不可见的配置链接(配置链接:)<a class="contextual-links-trigger" href="#">Configure</a>
当我手动将鼠标移动到此块时,配置链接变为<a class="contextual-links-trigger contextual-links-trigger-active" href="#">Configure</a>
并显示配置图标(基于新类“contextual-links-trigger-active”)。当我单击配置图标时,将显示链接“编辑视图”。(见图)
我想单击链接“编辑视图”使用 java web 驱动程序。我使用下面的代码显示配置图标但不成功:
Actions builder = new Actions(driver);
builder.moveToElement(driver.findElement(By.xpath(xpath))).perform();
请给我一些想法。谢谢!