updated CHANGELOG
Showing
1 changed file
with
25 additions
and
0 deletions
1 | CasperJS Changelog | 1 | CasperJS Changelog |
2 | ================== | 2 | ================== |
3 | 3 | ||
4 | XXXX-XX-XX, v1.0.0 | ||
5 | ------------------ | ||
6 | |||
7 | ### Important Changes & Caveats | ||
8 | |||
9 | #### Added support for frames | ||
10 | |||
11 | Short excerpt of related tests: | ||
12 | |||
13 | ```js | ||
14 | casper.start('tests/site/frames.html'); | ||
15 | |||
16 | casper.waitForFrame('frame1', function() { | ||
17 | this.test.assertTitle('CasperJS test frames'); | ||
18 | }); | ||
19 | |||
20 | casper.withFrame('frame1', function() { | ||
21 | this.test.assertTitle('CasperJS frame 1'); | ||
22 | }); | ||
23 | ``` | ||
24 | |||
25 | ### Bugfixes & enhancements | ||
26 | |||
27 | - merged [#269](https://github.com/n1k0/casperjs/issues/269) - Windows Batch script: fixed unsupported spaces in path and argument splitting | ||
28 | |||
4 | 2012-12-10, v1.0.0-RC5 | 29 | 2012-12-10, v1.0.0-RC5 |
5 | ---------------------- | 30 | ---------------------- |
6 | 31 | ... | ... |
-
Please register or sign in to post a comment