Forum

Forum
How can I build a p...
 
Notifications
Clear all

[Solved] How can I build a pipeline for Imagium project on azure devops and display the reports and snapshorts

Harshitha Peddakurma
New Member
Joined: 12 months ago
Posts: 1
Topic starter  

How can I build a pipeline for Imagium project on azure devops and display the reports and snapshorts


   
Amrita Kaur
Member Admin
Joined: 3 years ago
Posts: 107
 

Displaying pipeline reports with Imagium is very simple. Out of many ways, the one that can be very straight forward is to embed the report iframe in your existing reports or a custom report.

Steps for custom template:

  • Place the html template in your root format (See the sample below)
  • Update the UID at runtime in the template (Use any programming language to do this)
  • Attach the the updated html file as required

Sample Template

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Full Page Iframe</title>
    <style>
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden; /* This will hide scrollbars */
        }
        iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none; /* Remove the default iframe border */
        }
    </style>
</head>
<body>
    <iframe src="http://192.168.2.13:90/Report.aspx?uid=756ef0a6-2718-4871-beea-d70c1fb02c7e" title="Full Page Iframe"></iframe>
</body>
</html>
This post was modified 9 months ago 2 times by admin