23 Apr 2025 11:21 AM
How to mimic double click in the browser monitoring
Solved! Go to Solution.
23 Apr 2025 12:14 PM
You must add a Synthetic event of type Javascript:
Then, use JavaScript like the example below, making sure the querySelector targets the specific HTML element you want to double click.
var event = new MouseEvent('dblclick', {
'view': window,
'bubbles': true,
'cancelable': true
});
document.querySelector('#CSSElement').dispatchEvent(event);
23 Apr 2025 02:07 PM
You can find this documented here: How to perform DoubleClick event on browser click path synthetic monitor.
There are lots of helpful guides here: Synthetic Troubleshooting Map