validation.js 319 B

12345678910111213
  1. casper.test.begin('Validation', 2, function (test) {
  2. casper
  3. .start('./fixtures/validation.html', function () {
  4. test.assertElementCount('.valid', 0)
  5. this.sendKeys('input', '@hello.com')
  6. test.assertElementCount('.valid', 1)
  7. })
  8. .run(function () {
  9. test.done()
  10. })
  11. })