Tag: microsoft edge

获取无法使用java / selenium将元素集中在chrome和edge中

我在chrome中运行我的测试时遇到无法聚焦元素错误,并且FF中的边缘工作正常。 我已尝试过发布的决议但无济于事。 我不知道该怎么做。 希望有人可以提供帮助。 提前致谢。 driver.findElement(By.linkText(“Add”)).click(); List groups = new Select(driver.findElement(By.xpath(“/html/body/div[1]/section/div/article/form/fieldset/div[3]/div[2]/div/div/div[1]/select”))).getOptions(); groups.get(3).click(); JavascriptExecutor js = (JavascriptExecutor)driver; WebElement groupRole = driver.findElement(By.xpath(“/html/body/div[1]/section/div/article/form/fieldset/div[3]/div[2]/div/div/div[2]/label[2]”)); js.executeScript(“arguments[0].click();”, groupRole); driver.findElement(By.xpath(“/html/body/div[1]/section/div/article/form/fieldset/div[3]/div[2]/div/div/div[2]/label[2]”)).sendKeys(” “); // Check to see if the user should be made active and set active checkbox to on if value in file is “active” if (activeFlag.equals(“active”)) { driver.findElement(By.xpath(“/html/body/div[1]/section/div/article/form/fieldset/div[3]/div[1]/div[1]/div/div/input”)).sendKeys(” “); } // If […]