2 tests to run in 1 groups
------------------------------------------------------------
GROUP "robot" has 2 tests to run
Error: robot not available; skipping test.
ERROR IN:
function(){
var d = new doh.Deferred();
robot.mouseMove(30, 30, 500);
robot.mouseClick({left: true}, 500);
robot.typeKeys(" again", 500, 2500);
robot.sequence(d.getTestCallback(function(){
doh.is("hi again", document.getElementById('textbox').value);
}), 900);
return d;
}
FAILED test: dojorobot1 1 ms
Error: robot not available; skipping test.
ERROR IN:
function(){
var d = new doh.Deferred();
robot.keyPress(END,500);
// test shift+arrow with keyPress
for(var i=0; i<3; i++){
robot.keyPress(LEFT_ARROW, 500, {shift: true});
}
// test shift+arrow with keyDown then keyUp
robot.keyDown(SHIFT,500);
for(var i=0; i<3; i++){
robot.keyDown(LEFT_ARROW,500);
robot.keyUp(LEFT_ARROW,20);
}
robot.keyUp(SHIFT,500);
robot.keyPress(BACKSPACE,500);
robot.sequence(d.getTestCallback(function(){
doh.is("hi", textbox.value);
}), 900);
return d;
}
FAILED test: shiftarrow 1 ms
Total time for GROUP " robot " is 2ms
Total time for GROUP " robot " is 2ms
WOOHOO!!
------------------------------------------------------------
| TEST SUMMARY:
------------------------------------------------------------
2 tests in 1 groups
2 errors
0 failures
Hover over HTML elements in the main page. Click to hold selection.