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

Commit 830f511

Browse files
mikemilanojuliemr
authored andcommitted
feat(protractor): allow file:// baseUrls
Modified protractor to support testing node-webkit by using string concatenation vs url.resolve() when the baseUrl begins with file:// Closes #1266.
1 parent be16606 commit 830f511

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/protractor.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,8 @@ Protractor.prototype.get = function(destination, opt_timeout) {
10421042
var timeout = opt_timeout ? opt_timeout : this.getPageTimeout;
10431043
var self = this;
10441044

1045-
destination = url.resolve(this.baseUrl, destination);
1045+
destination = this.baseUrl.indexOf('file://') === 0 ?
1046+
this.baseUrl + destination : url.resolve(this.baseUrl, destination);
10461047

10471048
if (this.ignoreSynchronization) {
10481049
return this.driver.get(destination);

0 commit comments

Comments
 (0)