We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Since autosuggest is rendering input field and for the result "ul" list with "li" this is not going to work
const options = wrapper.find('#product').findAll('option') await options.at(1).setSelected()
I tried to simulate the click on input filed and after that to click on "li" element
await wrapper.find("#product").trigger("click"); await wrapper.findAll(".autosuggest__results-item").at(1).trigger("selected");
but it doesn't triggers @selected="onSelected"
Can anyone help?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Since autosuggest is rendering input field and for the result "ul" list with "li" this is not going to work
I tried to simulate the click on input filed and after that to click on "li" element
but it doesn't triggers @selected="onSelected"
Can anyone help?
The text was updated successfully, but these errors were encountered: