I'm trying to click a checkbox using Karate UI, but that checkbox isn't rendered in the DOM until I hover over its parent element (which has a mouseenter
event listener). I've tried a few methods to trigger the hover state, but nothing seems to work. These are what I've tried:
* mouse().move("element")
* waitFor("element").script("_.dispatchEvent(new Event('mouseenter'))")