I know that Firefox has a way to simulate hover, active and focus filters.
Is there any way to simulate onmouseover
elevation?
I want to simulate this in two elements together, is this possible?
I didn't find any extension for this purpose. Thank you in advance.
Yes, as it is selected in your image you can use the dispatchEvent
method only you must previously create the event in the chrome console and execute it.
var event = new MouseEvent("mouseover");
$0
is the element that you have selected in the debugger of your browser (in your case a div with the class facebox)$0.dispatchEvent(event)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With