我无法单击该元素。当我在计算机上执行我的测试时,它运行得很好,但是当我在笔记本电脑上执行我的测试时,它却失败了。获取错误元素不可点击。我也尝试使用不同的等待时间。不知道问题出在哪里。这就是我正在使用的:WebDriverWait wait=new WebDriverWait(driver,30);wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//button[@ng-click='startExam()']"))).click;Action action=new Actions(driver);actions.moveToElement(ele).perform();action.movetoElemet(ele).click().perform.这是我在检查控制台中所拥有的:<button class="btn btn-primary ng-scope" ng-if="!proctoredSession" ng-click="startExam()" ng-dissabled="!isExamContentLoaded">Start Exam</button>==$0
3 回答
qq_笑_17
TA贡献1818条经验 获得超7个赞
您可以按如下方式更新现有代码:
WebDriverWait wait=new WebDriverWait(driver,30);
Action action=new Actions(driver);
WebElement temp = wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//button[@ng-click='startExam()']")));
action.moveToElement(temp).click().perform();
添加回答
举报
0/150
提交
取消