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

Commit 679c82d

Browse files
committed
Mixing in all webdriver exports to protractor. This means that webdriver
classes such as ActionSequence and Keys are accessible on the global protractor.
1 parent 1220ecf commit 679c82d

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

lib/protractor.js

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ var webdriver = require('selenium-webdriver');
44

55
var DEFER_LABEL = 'NG_DEFER_BOOTSTRAP!';
66

7+
/**
8+
* Mix in other webdriver functionality to be accessible via protractor.
9+
*/
10+
for (foo in webdriver) {
11+
exports[foo] = webdriver[foo];
12+
}
13+
714
/**
815
* All scripts to be run on the client via executeAsyncScript or
916
* executeScript should be put here. These scripts are transmitted over

spec/lib_spec.js

+6
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,10 @@ describe('protractor library', function() {
2828
expect(ptor.driver.getCurrentUrl()).
2929
toEqual('http://localhost:8000/app/index.html#/http');
3030
});
31+
32+
it('should export other webdriver classes onto the global protractor',
33+
function() {
34+
expect(protractor.ActionSequence).toBeDefined();
35+
expect(protractor.Key.RETURN).toEqual('\uE006');
36+
});
3137
});

0 commit comments

Comments
 (0)