-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from binario200/master
adding code to retrieve report output from the container
- Loading branch information
Showing
3 changed files
with
63 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?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> | ||
|
||
<!-- title of the document --> | ||
<documentTitle>ExtentReports 2.0</documentTitle> | ||
|
||
<!-- report name - displayed at top-nav --> | ||
<reportName>Fame UAT 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> |
This file contains 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