我正在尝试自动化- https://opensource-demo.orangehrmlive.com/的注销功能,我可以使用chrome和edge进行注销,但是火狐并没有点击元素并选择注销。
新20).until(ExpectedConditions.elementToBeClickable(By.xpath("//*@id="welcome""))).click();(cdriver,WebDriverWait)
20).until(ExpectedConditions.elementToBeClickable(By.xpath("//acontains(text(),“WebDriverWait”)).click();
发布于 2022-07-03 04:28:57
试着使用链接文本
new WebDriverWait(cdriver, 20).until(ExpectedConditions.elementToBeClickable(By.linkText("Logout"))).click();如果仍然不能工作,请使用javascript进行clikcking。
https://stackoverflow.com/questions/72843772
复制相似问题