Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
3d17e643
...
3d17e64303830c1728dcd5924891cadf37a51448
authored
2012-12-14 12:00:00 +0100
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixed erroneous CHANGELOG example
1 parent
0995830a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
CHANGELOG.md
CHANGELOG.md
View file @
3d17e64
...
...
@@ -13,15 +13,17 @@ I'm still expecting a 1.0 stable for Christmas. Feedback: bring it on.
A minimal convenient API has been added to Casper in order to ease the switch of current page context:
```
js
casper
.
start
(
'tests/site/frames.html'
);
casper
.
waitForFrame
(
'frame1'
,
function
()
{
this
.
test
.
assertTitle
(
'CasperJS test frames'
);
casper
.
start
(
'tests/site/frames.html'
,
function
()
{
this
.
test
.
assertTitle
(
'CasperJS frameset'
);
});
casper
.
withFrame
(
'frame1'
,
function
()
{
this
.
test
.
assertTitle
(
'CasperJS frame 1'
);
});
casper
.
then
(
function
()
{
this
.
test
.
assertTitle
(
'CasperJS frameset'
);
});
```
#### Reverted to emulated mouse events
...
...
Please
register
or
sign in
to post a comment