Skip to content

Commit

Permalink
Export logging API from main webdriver module.
Browse files Browse the repository at this point in the history
Fixes issue 7138.
  • Loading branch information
jleyba committed Mar 28, 2014
1 parent 35c2361 commit 0da05da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions javascript/node/selenium-webdriver/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## v2.41.0-dev

* FIXED: 7138: export logging API from webdriver module.
* FIXED: 7105: beforeEach/it/afterEach properly bind `this` for Mocha tests.

## v2.40.0
Expand Down
6 changes: 6 additions & 0 deletions javascript/node/selenium-webdriver/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,12 @@ exports.WebElement = base.require('webdriver.WebElement');
}));


/** @type {webdriver.logging.} */
(exports.__defineGetter__('logging', function() {
return base.exportPublicApi('webdriver.logging');
}));


/** @type {webdriver.promise.} */
(exports.__defineGetter__('promise', function() {
return base.exportPublicApi('webdriver.promise');
Expand Down

0 comments on commit 0da05da

Please sign in to comment.