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
d2d13c69
...
d2d13c69e2a454e385f81534388787909ac740ca
authored
2012-01-16 16:15:00 +0100
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
set correct log level for clientutils click()
1 parent
b33206f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
modules/clientutils.js
modules/clientutils.js
View file @
d2d13c6
...
...
@@ -59,7 +59,7 @@
fallbackToHref
=
typeof
fallbackToHref
===
"undefined"
?
true
:
!!
fallbackToHref
;
var
elem
=
this
.
findOne
(
selector
);
if
(
!
elem
)
{
this
.
log
(
"click(): Couldn't find any element matching '"
+
selector
+
"' selector"
);
this
.
log
(
"click(): Couldn't find any element matching '"
+
selector
+
"' selector"
,
"error"
);
return
false
;
}
var
evt
=
document
.
createEvent
(
"MouseEvents"
);
...
...
Please
register
or
sign in
to post a comment