Skip to content

Commit

Permalink
Fixing is* commands in Webdriver playback in Selenium IDE
Browse files Browse the repository at this point in the history
  • Loading branch information
samitbadle committed Aug 13, 2013
1 parent a34758c commit ea10334
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ide/main/src/content/remote-selenium-commandhandlers.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ objectExtend(CommandHandlerFactory.prototype, {
accessorResult = accessBlock();
}
return accessorResult.pipe(function(accessorResult) {
if (accessorResult) {
return new PredicateResult(true, "true");
if (accessorResult == "true" ) {
return new PredicateResult(true, accessorResult);
}
return new PredicateResult(false, "false");
return new PredicateResult(false, accessorResult);
});
};
},
Expand Down

0 comments on commit ea10334

Please sign in to comment.