plain-potato-68806
05/18/2023, 10:04 AMjavascript
cy.get('#sliderButton > button')
.trigger('mousedown', { button: 0, position: 'center' })
.trigger('mousemove', { clientX: 1000, clientY: 0 })
.trigger('mouseup', { force: true });
https://cdn.discordapp.com/attachments/1108696607832158329/1108696608012505088/Screenshot_2023-05-18_at_10.59.40.png▾
adventurous-whale-33899
05/19/2023, 3:32 PMcy.get("sliderLocator").invoke('val', maxvalue).trigger('change')plain-potato-68806
05/19/2023, 7:50 PMadventurous-whale-33899
05/20/2023, 4:04 AMadventurous-whale-33899
05/20/2023, 4:07 AMcy.get("#confirm").invoke('val', 100).trigger('change').then(() => {
cy.get('.delete-notice').should('be.visible')
})
https://cdn.discordapp.com/attachments/1108696607832158329/1109331472550207538/image.png▾
gray-kilobyte-89541
05/20/2023, 11:02 AMplain-potato-68806
05/20/2023, 8:27 PM<input id="confirm") whereas in my case it's a divplain-potato-68806
05/20/2023, 8:27 PMgray-kilobyte-89541
05/20/2023, 9:15 PMplain-potato-68806
05/20/2023, 9:26 PMdiv and I have a button which we need to drag to the rightplain-potato-68806
05/20/2023, 9:39 PMmoveright etc and it didn't help