Currently, I'm conducting testing on my application and attempting to trigger a button click using the Enter key:
<v-btn
class="submit-button"
block
color="primary"
@click="login"
>
Log In
</v-btn>
cy.get('.submit-button').type('{enter}');
Are there any alternative methods to perform a button click with the Enter key?
The framework I am using is vuetify and it involves the v-btn
component.
https://i.sstatic.net/iO5R9.png
Thank you