为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

哈士奇WWW 2021-08-04 09:46:28
我无法单击该元素。当我在计算机上执行我的测试时,它运行得很好,但是当我在笔记本电脑上执行我的测试时,它却失败了。获取错误元素不可点击。我也尝试使用不同的等待时间。不知道问题出在哪里。这就是我正在使用的: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();


查看完整回答
反对 回复 2021-08-04
  • 3 回答
  • 0 关注
  • 147 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信