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

Commit 9a202ab

Browse files
committed
chore(dependencies): update selenium-webdriver to 2.47.1
Along with it, update `jasminewd2` to avoid situations where the control flow gets locked up and hangs. Potential Breaking Change: This is passing all existing Protractor tests, but there is a possibility that the changes to the control flow will cause some test flows to hang. If this causes issues, please revisit your use of functions affecting the control flow, such as `flow.execute`.
1 parent 673d416 commit 9a202ab

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/debugger/debuggerCommons.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ exports.attachDebugger = function(pid, opt_port) {
1818
client.setBreakpoint({
1919
type: 'scriptRegExp',
2020
target: '.*executors\.js', //jshint ignore:line
21-
line: 37
21+
line: 40
2222
}, function() {
2323
process.send('ready');
2424
client.reqContinue(function() {

lib/driverProviders/direct.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ DirectDriverProvider.prototype.getNewDriver = function() {
6565
}
6666

6767
var service = new chrome.ServiceBuilder(chromeDriverFile).build();
68-
driver = chrome.createDriver(
68+
driver = new chrome.Driver(
6969
new webdriver.Capabilities(this.config_.capabilities), service);
7070
break;
7171
case 'firefox':

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"author": "Julie Ralph <[email protected]>",
1414
"dependencies": {
1515
"request": "~2.57.0",
16-
"selenium-webdriver": "2.45.1",
16+
"selenium-webdriver": "2.47.0",
1717
"minijasminenode": "1.1.1",
1818
"jasminewd": "1.1.0",
19-
"jasminewd2": "0.0.5",
19+
"jasminewd2": "0.0.6",
2020
"jasmine": "2.3.2",
2121
"saucelabs": "~1.0.1",
2222
"glob": "~3.2",

0 commit comments

Comments
 (0)