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
3cb87be4
...
3cb87be408ea0f04178efdfe79c08abb3b55b238
authored
2013-10-08 09:35:40 -0700
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge pull request #657 from mduvall/fix-forward-args
Fix forward args
2 parents
68df6a9b
683ea4d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
docs/modules/casper.rst
modules/casper.js
docs/modules/casper.rst
View file @
3cb87be
...
...
@@ -366,7 +366,7 @@ Moves back a step in browser's history::
console.log(this.getCurrentUrl()); // 'http://foo.bar/2'
});
Also have a look at `
`Casper.forward()``
.
Also have a look at `
forward()`_
.
.. _casper_base64encode:
...
...
modules/casper.js
View file @
3cb87be
...
...
@@ -885,7 +885,7 @@ Casper.prototype.fillXPath = function fillXPath(formSelector, vals, submit) {
*
* @return Casper
*/
Casper
.
prototype
.
forward
=
function
forward
(
then
)
{
Casper
.
prototype
.
forward
=
function
forward
()
{
"use strict"
;
this
.
checkStarted
();
return
this
.
then
(
function
_step
()
{
...
...
Please
register
or
sign in
to post a comment