我无法单击该元素。当我在计算机上执行我的测试时,它运行得很好,但是当我在笔记本电脑上执行我的测试时,它却失败了。获取错误元素不可点击。我也尝试使用不同的等待时间。不知道问题出在哪里。这就是我正在使用的:
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
qq_笑_17
相关分类