Created
April 12, 2013 06:43
-
-
Save EndangeredMassa/5369966 to your computer and use it in GitHub Desktop.
CasperJS and Infinite Redirects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<meta http-equiv="refresh" content="0" /> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
casper.start() | |
casper.open('http://localhost:8080/index.html') | |
casper.then -> | |
@test.assert true | |
casper.run -> | |
@test.done() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ casperjs test test.coffee | |
Test file: test.coffee | |
Waiting on loadInProgress navigationRequested | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress navigationRequested | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress | |
Waiting on loadInProgress navigationRequested | |
Processing next step! | |
PASS Subject is strictly true | |
Waiting on loadInProgress navigationRequested | |
Waiting on loadInProgress navigationRequested | |
Waiting on loadInProgress navigationRequested | |
Waiting on loadInProgress navigationRequested | |
Waiting on loadInProgress navigationRequested | |
Waiting on loadInProgress navigationRequested | |
Waiting on navigationRequested | |
Waiting on loadInProgress | |
Processing next step! | |
PASS 1 tests executed in 2.639s, 1 passed, 0 failed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run with
casperjs test test.coffee
.