-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1003 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Pruebas</title>
</head>
<body>
<h1>Interfaz para llamar a las pruebas</h1>
<form name="llamar_test" action="test.html" method="get">
<strong>Url JSON pruebas:</strong>
<input id="dataUrl" required placeholder="Url del JSON de los datos de las pruebas" type="text" name="dataUrl" value="">
<a href="#" onclick="usarJSONPruebas('ejemplos/pruebas.json')">Usar ejemplo</a>
<br>
<strong>Url de envío de resultados (opcional):</strong>
<input placeholder="Url de envío de pruebas (opcional)" type="text" name="dataUrl" value="">
Si se introduce una URL en este campo se enviarán los resultados de las pruebas a esa url via POST, en formato JSON.
<br>
<button type="submit">Enviar</button>
</form>
<script type="text/javascript">
function usarJSONPruebas(url){
document.getElementById("dataUrl").value = url;
}
</script>
</body>
</html>