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

Commit 346f4d0

Browse files
committed
Update lib_spec.js
1 parent f8e3672 commit 346f4d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spec/basic/lib_spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ describe('protractor library', function() {
110110

111111
it('should allow self-wrapped webdriver instances', function() {
112112
var driver = protractor.wrapDriver(browser.driver);
113-
driver.get('index.html');
113+
var url = browser.baseUrl + 'index.html';
114+
driver.get(url);
114115
});
115116

116117
describe('helper functions', function() {

0 commit comments

Comments
 (0)