Odysseus14
Odysseus14
I’m also facing a similar issue to the above. When I am testing with no anchor passed to the options container the test works fine. When I add the anchor...
> Using `userEvent.selectOptions()` worked for me. Note that Headless UI uses [mousedown instead of click](https://github.com/tailwindlabs/headlessui/blob/main/packages/%40headlessui-react/src/components/combobox/combobox.tsx#L1871) to select options. > > ```ts > screen.getByRole("input").focus(); > const option = (await screen.getByRole("option", {...
> This should be fixed by #3357, and will be available in the next release. > > You can already try it using: > > * `npm install @headlessui/react@insiders`. This...