Read about this and more on the ThousandEyes blog. http://blog.thousandeyes.com/tips-for-a-front-end-test-friendly-web-application-targeting/
Last active
December 19, 2015 02:28
-
-
Save chrisirhc/5882715 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<pre id="result"></pre> | |
<div class="widget-processor"></div> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<script src="script.js"></script> | |
</body> | |
</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
/* global $ */ | |
var BOXES = 3, | |
BOX_SIZE = 80, | |
boxReady = [], | |
boxCount = 0; | |
function loadBoxes() { | |
for (var i = 0; i < BOXES; i++) { | |
setTimeout(addBox, Math.random()*100, i); | |
} | |
} | |
function addBox(i) { | |
var $box = $('<div></div>') | |
.addClass('box') | |
.append(i+1) | |
.appendTo('.widget-processor'); | |
var $button = $('<button></button>') | |
.text('GO') | |
.appendTo($box); | |
$button | |
.addClass('el-step-' + i) | |
.on('click', function () { | |
if (i === 0 || boxReady[i - 1]) { | |
boxReady[i] = true; | |
$box.css('background', 'lightgreen'); | |
if (i === BOXES - 1) { | |
$('#result').append('Horray!!\n'); | |
} | |
} else { | |
$box.css('background', 'lightpink'); | |
$('#result').append('Fail :(\n'); | |
} | |
}); | |
boxCount++; | |
} | |
loadBoxes(); |
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
.box { | |
display: inline-block; | |
border: 1px solid grey; | |
margin: 1px; | |
width: 80px; | |
height: 80px; | |
} | |
button { | |
display: block | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment