Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(debugger): breakpoint isn't set properly for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
hankduan committed Feb 25, 2015
1 parent 54163dc commit aabdd56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/debugger/clients/explorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ WdRepl.prototype.initClient_ = function() {

client.setBreakpoint({
type: 'scriptRegExp',
target: 'selenium-webdriver/executors.js',
target: '.*executors\.js',
line: 37
}, function() {});
});
Expand Down
2 changes: 1 addition & 1 deletion lib/debugger/clients/wddebugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ WdDebugger.prototype.initClient_ = function() {

client.setBreakpoint({
type: 'scriptRegExp',
target: 'selenium-webdriver/executors.js',
target: '.*executors\.js',
line: 37
}, function() {
console.log('press c to continue to the next webdriver command');
Expand Down

0 comments on commit aabdd56

Please sign in to comment.