tikiwiki/packages/tiki-pkg-casperjs/jerome-breton/casperjs/tests/suites/casper/flow.coffee

39 lines
1.1 KiB
CoffeeScript
Raw Normal View History

2023-11-20 21:52:04 +01:00
casper.test.begin 'handling waits and timeouts', 13, (test) ->
step = 0
casper.start "tests/site/resources.html", ->
test.assertEquals ++step, 1, "step 1"
@wait 400, ->
test.assertEquals ++step, 2, "step 1.1"
@wait 200, ->
test.assertEquals ++step, 3, "step 1.1.1"
@wait 200, ->
test.assertEquals ++step, 4, "step 1.1.1.1"
@then ->
test.assertEquals ++step, 5, "step 1.1.2.1"
@wait 400, ->
test.assertEquals ++step, 6, "step 1.2"
casper.wait 200, ->
test.assertEquals ++step, 7, "step 2"
casper.waitForSelector(
'#noneExistingSelector'
-> test.fail "should run into timeout"
-> test.assertEquals ++step, 8, "step 3 sucessfully timed out"
1000
)
casper.then ->
test.assertEquals ++step, 9, "step 4"
@wait 300, ->
test.assertEquals ++step, 10, "step 4.1"
@wait 300, ->
test.assertEquals ++step, 11, "step 4.1.1"
@wait 100, ->
test.assertEquals ++step, 12, "step 5.2"
casper.then ->
test.assertEquals ++step, 13, "last step"
casper.run(-> test.done())