我如何获取.trigger('drop')进行注册

时间:2019-05-21 22:56:34

标签: cypress

问题

当我执行下面提供的代码时,更改实际上并没有保留。当我使用.trigger('drop')时,它在快照中显示了将手柄/按钮移动到应有的位置。但是,它实际上并没有删除它,因为当测试完成时,它位于原始起始位置,而不是测试应该移至的位置。

代码示例

我在NDA之下,但是我提供了一个类似的示例代码:

//this is for the accordion
cy.get('[data-cy=drop-down-arrow]') 
 .eq(0)
 .click();
// this is the the slider handle/button you grab on
cy.get('.slider-handle')
 .eq(1)
 .trigger('dragstart');
// this is the actual slider bar the handle/button slides on
cy.get('.slider-step')
 .eq(1)
 .trigger('drop');

让我知道您是否需要查看代码的任何其他部分或其他内容,以更好地解决这个问题。

0 个答案:

没有答案