-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Protractor incorrectly assumes I have both capabilities & multi-capabilities #4520
Comments
Fwiw, in my case // protractor task
default: {
options: {
configFile: "test/protractor.conf.js",
args: {
baseUrl: grunt.option('baseUrl') || ("https://localhost:9000/" + contextRoot + "/"),
browser: grunt.option('browser') ?
grunt.option('browser') :
isMac ?
'chrome' :
'firefox'
}
}
}, It is not clear that |
When I look at your example test and also the version of Protractor in that project I see version When I run the example And I use OR 'capabilities' OR npm run test.example
> protractor@5.1.2 test.example /Users/wswebcreation/contributions/protractor
> node ./bin/protractor example/conf.js
[06:15:55] I/launcher - Running 1 instances of WebDriver
[06:15:55] I/hosted - Using the selenium server at http://localhost:4444/wd/hub
Started
...
3 specs, 0 failures
Finished in 8.641 seconds
[06:16:05] I/launcher - 0 instance(s) of WebDriver still running
[06:16:05] I/launcher - chrome #01 passed I think your issue has to do with the way you have set up the project with Grunt and you should look into that. Can you verify this also with the example project and if it works it's most likely an issue in the |
Yup! I'm working on a branch to bring the dependencies up to date. Our current |
Can you please verify the below
|
Agree with your assessment! opened issue with Thanks! |
tnx |
My
protractor.config.js
file is quite minimal:Output:
I don't have
capabilities
in my file nor are they defined in myGruntfile
.Bug report
v6.10.2
5.1.1
1.5.11
Chrome
OSX El Capitan v10.11.6
Thanks!
The text was updated successfully, but these errors were encountered: