cypress无法实现元素拖拽


describe(‘1’,function(){
before(function(){
cy.visit(‘testcode/drag.html’)
})
it(‘2’,function(){
cy.wait(200)
cy.get(‘span > :nth-child(1)’)
.trigger(‘mousedown’, { which : 1 })
.trigger(‘mouseover’, {clientX: 500, clientY: 300})
.trigger(‘mouseup’, { force: true} )
})
})

元素的拖拽功能无法实现 有大佬帮忙解答一下吗