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
729bc7b5
...
729bc7b5ea669f62fd09769646e1dffe13cba54f
authored
2012-05-28 12:17:16 +0200
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixed incomplete error message logged when passed an erroneous selector
1 parent
6c7ae14c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
CHANGELOG.md
modules/clientutils.js
CHANGELOG.md
View file @
729bc7b
...
...
@@ -8,6 +8,7 @@ XXXX-XX-XX, v0.6.9
-
fixed
[
#117
](
https://github.com/n1k0/casperjs/issues/117
)
-
`fill()`
coulnd't
`submit()`
a form with a submit input named
*submit*
-
merged
[
#122
](
https://github.com/n1k0/casperjs/pull/122
)
- allow downloads to be triggered by more than just
`GET`
requests
-
fixed loaded resources array is now reset adequately
[
reference discussion
](
https://groups.google.com/forum/?hl=fr?fromgroups#!topic/casperjs/TCkNzrj1IoA
)
-
fixed incomplete error message logged when passed an erroneous selector (xpath and css)
2012-05-20, v0.6.8
------------------
...
...
modules/clientutils.js
View file @
729bc7b
...
...
@@ -420,7 +420,7 @@
this
.
processSelector
=
function
processSelector
(
selector
)
{
var
selectorObject
=
{
toString
:
function
toString
()
{
return
this
.
type
+
' selector: '
+
this
.
selector
;
return
this
.
type
+
' selector: '
+
this
.
path
;
}
};
if
(
typeof
selector
===
"string"
)
{
...
...
Please
register
or
sign in
to post a comment