Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (19.7k points)

Checking the protractor documentation, I see there is an option to run protractor without using the Selenium server using directConnect: true flag.

What is the difference between running protractor tests with a selenium server and without a selenium server other than the fact that only Chrome, Firefox are supported for the latter case?

1 Answer

0 votes
by (62.9k points)

If directConnect flag returns true then it will execute the tests without using the selenium server. Where selenium server means a setup similar to Selenium Grid. Running tests using Selenium Server allows us to run tests on the remote machine or on the local machine and provides an option to distribute execution load among different nodes. It is also possible to run ta est on multiple browsers at the same time using the selenium server.

 

While directConnect false will run test only on your local installation of FireFox and Chrome. It will run the test on the same machine where test codebase exists.

Browse Categories

...