diff options
Diffstat (limited to 'src/app/test/test.component.html')
-rw-r--r-- | src/app/test/test.component.html | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/app/test/test.component.html b/src/app/test/test.component.html index 8147f05..26165d9 100644 --- a/src/app/test/test.component.html +++ b/src/app/test/test.component.html @@ -61,6 +61,13 @@ limitations under the License. </div> </div> + <div class="row" style="padding: 10px 15px"> + <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12"> + <label>Force Flag </label> + <input [(ngModel)]="force" name="Force Flag" type="checkbox"> + </div> + </div> + </div> </div> <br> @@ -119,7 +126,9 @@ limitations under the License. <div style="padding-left:60%;padding-bottom:0.5cm"> <button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" type="button" [disabled]="!enableDownload" (click)="download()">Download Raw Request/Response </button> - <button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" type="button" [disabled]="!enableAbort" (click)="abortTest()">Abandon Test</button> + <button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" type="button" [disabled]="!enableAbort" (click)="abortTest()">Abandon Test + </button> + </div> </div> <br> @@ -131,14 +140,15 @@ limitations under the License. <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label" style="margin-left: 25%"> <input placeholder="Request Id" [(ngModel)]="requestId" class="mdl-textfield__input" id="requestId" required name="requestId"> </div><br/> - <button style="margin-left: 30%" type="submit" [disabled]="!enablePollButton" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" (click)=pollTestStatus()>Poll Test Status + <button style="margin-left: 33%" type="submit" [disabled]="!enablePollButton" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" + (click)=pollTestStatus()>Poll Test Status </button> <br/><br/> <div class="col-md-12"> - <span style="margin-left: 18.5%"><b>POLL TEST STATUS RESPONSE</b></span> + <span style="margin-left: 11%"><b>POLL TEST STATUS RESPONSE</b></span> </div> - <div style="margin-left: 18.5%;height:130px;width:60%;border:solid 2px grey;overflow:scroll;overflow-x:hidden;overflow-y:hidden;"> + <div style="margin-left: 11%;height:150px;width:80%;border:solid 2px grey;overflow:scroll;overflow-x:hidden;overflow-y:hidden;"> <div *ngIf="showStatusResponseDiv"> <div *ngIf="enableCounterDiv"><b>Poll test no {{pollCounter}}</b></div> |