16 Jun 2026 08:23 AM
Hi , I have a use case where I want to monitor two urls in a single browser clickpath monitor.
Scenario:
navigate to Application URL 1 --> Login --> perform few task (fill form) --> Submit --> capture unique ID -->
navigate to Application URL 2 --> login --> fill form (with unique ID from URL1) -->upload file --> submit
Is it even possible to do ?
Solved! Go to Solution.
16 Jun 2026 08:46 AM
@Sahil23 yes, actually, it's not difficult. You need to use JavaScript clickpath events and use the API https://docs.dynatrace.com/docs/shortlink/id-brower-clickpath-events#javascript-event-api in them.
In the first one, you will get the value in the JavaScript code (document.getElementById) and you will save the data using api.setValue(key, value). In the second one, you need to retrieve the value using api.getValue(key) and use the document.getElementById to set the value.
Featured Posts