openmct/protractor/common/Launch.js

9 lines
211 B
JavaScript
Raw Normal View History

/*global module,browser*/
module.exports = function launch() {
'use strict';
browser.ignoreSynchronization = true;
browser.get('https://localhost:1984/');
browser.sleep(2000); // 20 seconds
};