我有一个svg元素,在对它执行双击操作时,它应该打开一个小部件框。在进行双击时,它不会抛出任何错误,但它不会打开小部件框。这是我的代码:
WebElement element = driver.findElement(By.xpath("//*[name()='svg'] /*[name()='g']"));
Actions builder2 = new Actions(driver);
Action a2 = builder2.doubleClick(element).build();
a2.perform();
WebDriverWait wait = new WebDriverWait(driver,120);
WebElement config = wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath(".//*[@id='xwt_widget_layout_Dialog_3']")));
无法获取小部件框。请帮帮我这个。