Created
August 3, 2016 19:17
-
-
Save kkashyap1707/84d7b19a67f784f56df88cb6f14e2eb5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<extentreports> | |
<configuration> | |
<!-- document encoding --> | |
<!-- defaults to UTF-8 --> | |
<encoding>UTF-8</encoding> | |
<!-- protocol for script and stylesheets --> | |
<!-- defaults to https --> | |
<protocol>https</protocol> | |
<!-- report theme --> | |
<!-- standard, dark --> | |
<theme>dark</theme> | |
<!-- title of the document --> | |
<documentTitle>#Project</documentTitle> | |
<!-- report name - displayed at top-nav --> | |
<reportName> API Automation Report</reportName> | |
<!-- report headline - displayed at top-nav, after reportHeadline --> | |
<reportHeadline></reportHeadline> | |
<!-- global date format override --> | |
<!-- defaults to yyyy-MM-dd --> | |
<dateFormat>yyyy-MM-dd</dateFormat> | |
<!-- global time format override --> | |
<!-- defaults to HH:mm:ss --> | |
<timeFormat>HH:mm:ss</timeFormat> | |
<!-- custom javascript --> | |
<scripts> | |
<![CDATA[ | |
$(document).ready(function() { | |
}); | |
]]> | |
</scripts> | |
<scripts> | |
<![CDATA[ | |
$(document).ready(function() { | |
$('.dashboard-view').click(); | |
}); | |
]]> | |
</scripts> | |
<!-- custom styles --> | |
<styles> | |
<![CDATA[ | |
]]> | |
</styles> | |
</configuration> | |
</extentreports> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment