cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Mareeswaran
Dynatrace Helper
Dynatrace Helper

Steps to follow to perform the DoubleClick event on browser click path synthetic monitor

  1. Go to the relevant page on Chrome browser

  2. Right click on the element which you want to interact with on the page-> Inspect the element which will open the developer tools

     

    image1.png

  3. Right click on the element on the Web developer tools - > Copy - > Copy JS path

     

    image2.png

  4. Paste the JS path on the below element value and add this JavaScript code into the JavaScript Event of your Browser click path monitor

    function triggerevent(element) {
    var evt = document.createEvent("MouseEvent");
    evt.initMouseEvent("dblclick",true, true);
    element.dispatchEvent(evt);
    }
    var element = document.querySelector('button[id="testid"]'); //Replace with the element which you want to perform the mouseover action.
    triggerevent(element);
    
     

    image3.png

 
Version history
Last update:
‎12 Apr 2023 09:10 AM
Updated by:
Comments
ChadTurner
DynaMight Legend
DynaMight Legend

Very useful tip!