Skip to content

Commit

Permalink
Added Run button after the list of execution in RunTestCase Page.
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Sep 10, 2017
1 parent bce48f0 commit 864e009
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions source/src/main/webapp/RunTests.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,9 @@
<ul class="list-group" id="queue" style="max-height: 500px; min-height: 100px; overflow: hidden; overflow-y: scroll;border: 1px solid #CCC; border-radius: 4px;"></ul>
</div>
</div>
<div style="padding-bottom: 25px;">
<button type="button" class="btn btn-primary btn-lg btn-block" id="runList">Run</button>
</div>
</div>

</div>
Expand Down
2 changes: 1 addition & 1 deletion source/src/main/webapp/js/pages/RunTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ $.when($.getScript("js/global/global.js")).then(function () {
$("[name='typeSelect']").on("change", typeSelectHandler);

$("#run").click(sendForm);
$("#runList").click(sendForm);

$("#loadFiltersBtn").click(function () {
loadTestCaseFromFilter(null, null);
Expand Down Expand Up @@ -463,7 +464,6 @@ function sendForm() {
}
}


if (checkForms()) {
var data = {};
var executionList = $("#queue li");
Expand Down

0 comments on commit 864e009

Please sign in to comment.