This repository was archived by the owner on Jul 29, 2024. It is now read-only.
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
protractor hangs indefinitely on "[launcher] Running 1 instances of WebDriver" #1764
Closed
Description
OSX Yosemite 10.10.1
Node 0.10.26
Protractor 1.6.1
Java 1.8.0_31
webdriver-manager is running and I can hit the server at http://localhost:4444/wd/hub and manually create a chrome session if i want. But when I run protractor it just hangs forever. If i switch my config file to use sauce labs instead of seleniumAddress
everything works fine.
Nothing is outputted in the webdriver-manager log or web gui at all. No chrome session starts. nothing...
-> protractor public/test/protractor.conf.js
Using the selenium server at http://localhost:4444/wd/hub
[launcher] Running 1 instances of WebDriver
Another weird thing is i cant pass any flags to protractor. It will just print the help if I try any of them.
config file:
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
capabilities: {
browserName: 'chrome'
},
suites: {
nuf: 'e2e/nuf.spec.js'
},
framework: 'mocha',
mochaOpts: {
reporter: "spec",
timeout: 30000,
slow: 3000
}
};