I am testing my application and I'm trying to invoke button click with enter keyword:
<v-btn
class="submit-button"
block
color="primary"
@click="login"
>
Log In
</v-btn>
cy.get('.submit-button').type('{enter}');
Is there any alternative way, to click button on enter key press?
I'm using vuetify framework and v-btn component.
Thanks
