Protractor stale element reference when using the each() method(使用 each() 方法时的量角器过时元素引用)
问题描述
由于在量角器中使用 each() 方法,我收到以下错误.过去它运行良好,但现在一直因此错误而失败.
I am getting the error below as a result of using the each() method in protractor. It has worked fine in the past but is now consistently failing with this error.
失败:过时的元素引用:元素未附加到页面文档
Failed: stale element reference: element is not attached to the page document
element.all(bars).each((element) => element.getCssValue('width'))
是否有替代方案或原因?
Is there an alternative or a reason why this might be?
(为了清楚起见,我要做的就是获取一组称为条形图的 web 元素中每个元素的宽度.)
(For clarity, all I want to do is to get the width of each element in a set of web elements called bars.)
谢谢!
推荐答案
感谢所有帮助过的人.如果导致错误,解决方案将重试.由于元素的实时性,元素引用在获得 css 宽度之前就发生了变化.
Thanks to everyone who helped. The solution was retry again if it resulted in error. Due to the realtime nature of the element, the element reference was changing before it had got the css width.
这篇关于使用 each() 方法时的量角器过时元素引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 each() 方法时的量角器过时元素引用
基础教程推荐
- 检查 HTML5 拖放文件类型 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
