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
e3d116f6
...
e3d116f61b8049e2d38fffd98e26f022a7f93b20
authored
2013-11-14 15:14:10 +0100
by
Clochix
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add documentation for ClientUtils.log()
1 parent
68d40112
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
docs/modules/clientutils.rst
docs/modules/clientutils.rst
View file @
e3d116f
...
...
@@ -292,6 +292,19 @@ To get the form values::
__utils__.getFormValues('form#login'); // {username: 'foo', password: 'bar'}
.. index:: log
``log()``
-------------------------------------------------------------------------------
**Signature:** ``log(String message[, String level])``
Logs a message with an optional level. Will format the message a way CasperJS will be able to log phantomjs side. Default level is ``debug``.
casper.start('http://foo.ner/').thenEvaluate(function() {
__utils__.log("We've got a problem on client side", 'error');
});
``mouseEvent()``
-------------------------------------------------------------------------------
...
...
Please
register
or
sign in
to post a comment