[Vuejs]-Setvalue() on v-text-field with nightwacth e2e

0👍

You need to identify the actual <input> element in the html. Vuetify generates an id for each so use that:

.setValue('#input-312', 'huxy')

Leave a comment