Skip to content

Commit

Permalink
Fix css tag selector (#2772)
Browse files Browse the repository at this point in the history
The css selector for tags was falsely prefixed id selector.
  • Loading branch information
zipperle authored and lukeis committed Sep 14, 2016
1 parent 06affd8 commit 0b2ca93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public W3CHttpCommandCodec() {

case "tag name":
toReturn.put("using", "css selector");
toReturn.put("value", "#" + cssEscape(value));
toReturn.put("value", cssEscape(value));
break;

case "xpath":
Expand Down

0 comments on commit 0b2ca93

Please sign in to comment.