Commit a0724c97 a0724c979574419978007c60247a1b0aea044494 by Nicolas Perriault

added CS test file

1 parent dd321f7e
1 # A small subset of the run.js written in coffeescript
2
3 do (casper) ->
4 steps = 0
5
6 casper.options.onStepComplete = -> steps++
7
8 casper.start "tests/site/index.html", ->
9 @test.assertTitle "CasperJS test index", "Casper.start() casper can start itself an open an url"
10 @test.assertEquals @fetchText("ul li"), "onetwothree", "Casper.fetchText() can retrieves text contents"
11 @click "a[href=\"test.html\"]"
12
13 casper.then ->
14 @test.assertTitle "CasperJS test target", "Casper.click() casper can click on a text link"
15 @click "a[href=\"form.html\"]"
16
17 casper.run ->
18 @test.assertEquals steps, 3, "Casper.options.onStepComplete() is called on step complete"
19 @options.onStepComplete = null
20 @test.done()
...\ No newline at end of file ...\ No newline at end of file