back to correct current stable version
Showing
3 changed files
with
7 additions
and
3 deletions
1 | CasperJS Changelog | 1 | CasperJS Changelog |
2 | ================== | 2 | ================== |
3 | 3 | ||
4 | XXXX-XX-XX, v1.0 | 4 | XXXX-XX-XX, v1.0.0-RC1 |
5 | ---------------- | 5 | ---------------------- |
6 | 6 | ||
7 | - fixed [#119](https://github.com/n1k0/casperjs/issues/119) - HTTP status wasn't properly caught | 7 | - fixed [#119](https://github.com/n1k0/casperjs/issues/119) - HTTP status wasn't properly caught |
8 | - fixed [#132](https://github.com/n1k0/casperjs/issues/132) - added ability to include js/coffee files using a dedicated option when using the [`casper test` command](http://casperjs.org/testing.html) | 8 | - fixed [#132](https://github.com/n1k0/casperjs/issues/132) - added ability to include js/coffee files using a dedicated option when using the [`casper test` command](http://casperjs.org/testing.html) | ... | ... |
... | @@ -1637,6 +1637,10 @@ function createPage(casper) { | ... | @@ -1637,6 +1637,10 @@ function createPage(casper) { |
1637 | casper.options.onResourceRequested.call(casper, casper, request); | 1637 | casper.options.onResourceRequested.call(casper, casper, request); |
1638 | } | 1638 | } |
1639 | }; | 1639 | }; |
1640 | page.onUrlChanged = function onUrlChanged(url) { | ||
1641 | casper.log(f('url changed to "%s"', url), "debug"); | ||
1642 | casper.emit('url.changed', url); | ||
1643 | }; | ||
1640 | casper.emit('page.created', page); | 1644 | casper.emit('page.created', page); |
1641 | return page; | 1645 | return page; |
1642 | } | 1646 | } | ... | ... |
-
Please register or sign in to post a comment