@sap_oss/wdio-qmate-service
Version:
[](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[](http
82 lines (72 loc) • 2.88 kB
HTML
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="main.css">
<script language="JavaScript">
function showValue() {
document.getElementById('display1').innerHTML =
document.getElementById("ExampleValue1").value;
document.getElementById('display2').innerHTML =
document.getElementById("ExampleValue2").value;
}
</script>
</head>
<body>
<nav class="navbar navbar-light ">
<a class="navbar-brand" name="navbar" href="#">Non ui5 testing</a>
</nav>
<div class="container-fluid">
<div class="row content">
<div class="col-sm-3 sidenav hidden-xs">
<ul class="nav nav-pills nav-stacked">
<li><a href="buttons.html">Buttons</a></li>
<li><a href="Tables.html">Tables</a></li>
<li class="active"><a href="Forms.html">Forms</a></li>
<li><a href="Dropdown.html">Dropdown</a></li>
<li><a href="checkBox.html">checkBox</a></li>
<li><a href="waitForElements.html">WaitForElements</a></li>
<li><a href="scrollPage.html">ScrollPage</a></li>
<li><a href="hiddenAndVisible.html">Hidden elements</a></li>
</ul><br>
</div>
<br>
<div class="col-sm-5">
<div class="well">
<form>
<div class="form-group">
<label for="Value1">Input Value 1</label>
<input type="text" class="form-control" id="ExampleValue1" placeholder="Enter a Value">
</div>
<div class="form-group">
<label for="Value2">Input Value 2</label>
<input type="text" class="form-control" id="ExampleValue2" placeholder="Enter a Value">
</div>
<div class="form-group">
<label for="Value3">Input Value 3</label>
<textarea class="form-control" id="ExampleTextArea" placeholder="Enter a Value"></textarea>
</div>
<div class="form-check">
</div>
<button type="button" onclick="showValue();" class="btn btn-primary">Submit</button>
</form>
</div>
<div class="row">
<div class="col-sm-5">
<div class="well">
<label> your values are: </label>
<p><span id='display1'></span></p>
<p><span id='display2'></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>