This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Can I use WPM in combination with a report to display a screenshot?

I am interested in logging into a website, clicking on a specific link getting a pop-up and getting screenshot of that pop-up.

The next piece is, I don't want that screenshot emailed (since this would be a daily thing that takes up too much space in email), I would like to have it displayed with a report, or even better as a widget on a custom page with other SLA/Bandwidth related widgets.

Any help along these lines is greatly appreciated.

Dirk

  • Given that you already have a transaction with a step that captures the desired screenshot ("Current Screenshot" widget on "Transaction Step Details" page), you could add a "Custom HTML" widget on the selected view and "Edit" it with a code like:

    <img src="/Orion/SEUM/Controls/ScreenshotImage.ashx?entity=Orion.SEUM.TransactionSteps&entityId=TRANSACTION_STEP_ID" width="100%" height="100%">

    Replacing "TRANSACTION_STEP_ID" string with chosen transaction step ID, that you could for example take from the URL of "Transaction Step Details" page for e.g "Orion/SEUM/TransactionStepDetails.aspx?NetObject=TS:2", the ID is the number after "TS:". You can also adjust "width" and "height" properties to your liking. This will result in the widget that will be displaying the current transaction step screenshot for selected step ID. Similar thing should be possible for reports.