【发布时间】:2020-04-30 06:07:00
【问题描述】:
以下解决方案一直工作到 chrome 版本 70,现在 70+ 我收到错误
CypressError: Timed out retrying: Expected to find element: 'p:eq(0)', but never found it. Queried from element: <body.cke_editable.cke_editable_themed.cke_contents_ltr>
现在停止工作的解决方案:
.then(function ($iframe) {
const $body = $iframe.contents().find('body')
cy
.wrap($body)
.find('p:eq(0)').type( "test", { force: true })
})
【问题讨论】:
标签: automation cypress