I am trying to write a test that enters some text into a Froala JS editor instance, in Selenium IDE 2.9.1 (Firefox 45). I'm not able to determine any way to specify the clientX
and clientY
parameters to this event, which apparently Froala code is relying on to make the editor function properly.
If I use Selenium IDE's mouseOver
command, there is no ability to specify these coordinates (it does not have a corresponding mouseOverAt
command, as some other mouse events do). Using simply fireEvent
command, with mouseover
as the value, I cannot specify any parameters to that native JS event.
How can I send a mouseOver
event to a particular element, with these coordinates, in Selenium IDE?