如何在 Ionic App 中使用 cypress、scrollTo?

pri*_*per 1 scroll ionic-framework angular cypress

对于Cypress中的测试,我想向下滚动到使用Ionic创建的页面底部。

我尝试在窗口上使用scrollTo:

cy.scrollTo('bottom')
Run Code Online (Sandbox Code Playgroud)

但出现错误: 4000ms 后超时重试:cy.scrollTo() 失败,因为此元素不可滚动: <window>

在元素本身上使用scrollIntoView也没有帮助。

还滚动主离子容器:

cy.get('ion-content').scrollTo('bottom')
Run Code Online (Sandbox Code Playgroud)

导致了同样的错误。

有人有想法吗?

pri*_*per 5

在离子内容容器内的 Shadow root 中使用主 div 对我来说是成功的:

cy.get('ion-content').shadow().find('main').scrollTo('bottom')
Run Code Online (Sandbox Code Playgroud)

它似乎是实际上可滚动的容器