Skip to content

Commit

Permalink
Trim command names in new core runner
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Jul 26, 2016
1 parent c6e81e2 commit cdfe3a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private List<LoggableStep> findCommands(WebDriver driver) {
" continue;\n" +
" }\n" +
" var cells = tables[i].rows[rowCount].cells;\n" +
" toReturn.push([cells[0].textContent, cells[1].textContent, cells[2].textContent]);\n" +
" toReturn.push([cells[0].textContent.trim(), cells[1].textContent, cells[2].textContent]);\n" +
" }\n" +
"}\n" +
"return toReturn;");
Expand Down

0 comments on commit cdfe3a3

Please sign in to comment.