I'm testing how my app reacts to a user clicking on a specific spot on a basic Vuetify <v-slider>. What is the best way to simulate this in a Cypress integration test?
For example, I can click on the middle of the <v-slider> with:
cy.get(#sliderID).find('input[role="slider"]').click()
However, i would like to click on a different spot of the <v-slider>. For instance, for a <v-slider> with a min value of 0 and a max value of 100, I would like to simulate a click on 25. How can I do this?