猿问

获取硒“元素不可点击”问题

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


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


哈士奇WWW
浏览 148回答 3
3回答

qq_笑_17

您可以按如下方式更新现有代码: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();
随时随地看视频慕课网APP

相关分类

Java
我要回答