Instead of starting the Webdriver manually, You can configure the selenium stand alone server in Protractor configuration file
So it will automatically start the selenium server once you start running the test suite.
- Selenium Standalone server can be downloaded from this site.
exports.config = { seleniumServerJar: './seleniumJar/selenium-server-standalone-3.141.5.jar',
So it will automatically start the selenium server once you start running the test suite.
Comments
Post a Comment