-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Started work on Testlink import feature.
- Loading branch information
Showing
5 changed files
with
101 additions
and
6 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
65 changes: 65 additions & 0 deletions
65
source/src/main/webapp/include/pages/testcaselist/importTestCaseFromTestLink.html
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,65 @@ | ||
<!--Mass Action on a Test Case List --> | ||
<div data-backdrop="static" class="modal fade center" id="importTestCaseFromTestLinkModal" role="dialog" aria-labelledby="importTestCaseFromTestLinkModalLabel" aria-hidden="true"> | ||
<div class="modal-dialog nomargintop nomarginbottom modal-lg"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> | ||
<h4 class="modal-title" id="importTestCaseFromTestLinkModalLabel" name="importTestCaseFromTestLinkField">Import test cases from Test Link</h4> | ||
</div> | ||
<div class="modal-body"> | ||
<!--edit form--> | ||
<form id="importTestCaseFromTestLinkModalForm" name="importTestCaseFromTestLinkModalForm" title="Import TestCase" role="form" enctype="multipart/form-data"> | ||
<div class="container-fluid center"> | ||
<!-- messages area--> | ||
<div id="DialogMessagesArea"> | ||
<div class="alert" id="DialogMessagesAlert" style="display:none;"> | ||
<strong><span class="alert-description" id="DialogAlertDescription"></span></strong> | ||
<button type="button" class="close" data-hide="alert" aria-hidden="true"> | ||
<span class="glyphicon glyphicon-remove alert-right alert-close pull-right"></span> | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-md-4 text-center" style="height: 100%"> | ||
<img height='100' src='./images/TestLink.png'> | ||
</div> | ||
<div class="col-md-8 marginLeft20"> | ||
<br> | ||
<label>Use the Form below in order to integrate your Test Link Test cases into Cerberus.</label> | ||
</div> | ||
</div> | ||
|
||
<div class="row marginTop20"> | ||
<div class="col-xs-6"> | ||
<div class="form-group"> | ||
<label for="test">Target Test Folder</label> | ||
<select class="form-control" type="text" name="test" id="targetTest"></select> | ||
</div> | ||
</div> | ||
<div class="col-xs-6"> | ||
<div class="form-group"> | ||
<label for="application">Application</label> | ||
<select class="form-control" type="text" name="application" id="targetApplication"></select> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row marginTop15"> | ||
<div class="form-group col-xs-12"> | ||
<label for="filesTestLink">Select the Test Link files to import (.xml format)</label> | ||
<input class="form-control-file" type="file" multiple="multiple" name="files[]" id="filesTestLink"> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</form> | ||
<div class="container-fluid center" id='filetestlink-list-display'></div> | ||
</div> | ||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-default" data-dismiss="modal" name="buttonClose">Close</button> | ||
<button type="button" id="importTestCaseFromTestLinkButton" class="btn btn-primary" name="buttonImport">Import</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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