Commit bf75fa1e bf75fa1ef4cb50aba7ddc77ef4dc0bcfc464c030 by Nicolas Perriault

fixed the fix -_-

1 parent 2118ecbb
1 /*jshint strict:false*/ 1 /*jshint strict:false*/
2 /*global CasperError, casper, console, phantom, require*/ 2 /*global CasperError, casper, console, phantom, require*/
3 var utils = require('utils');
4
3 casper.test.begin('sendKeys() tests', 3, function(test) { 5 casper.test.begin('sendKeys() tests', 3, function(test) {
4 casper.start('tests/site/form.html', function() { 6 casper.start('tests/site/form.html', function() {
5 this.sendKeys('input[name="email"]', 'duke@nuk.em'); 7 this.sendKeys('input[name="email"]', 'duke@nuk.em');
......