Config file in Protractor
All the Protractor configuration we need to maintain in file named as config file or protractor.config file The configuration file tells Protractor how to set up the Selenium Server, which tests to run, how to set up the browsers, and which test framework to use. The configuration file can also include one or more global settings. The execution of protractor start form config file like below from command prompt. Example: C:\WINDOWS\system32>preotractor conf.js var Jasmine2HtmlReporter = require ( 'protractor-jasmine2-html-reporter' ); let SpecReporter = require ( 'jasmine-spec-reporter' ). SpecReporter ; exports . config = { // launch locally when fields directConnect and seleniumAddress are not provided // for testing directly against a browser without using a Selenium Server. applies only to chrome and firefox. directConnect: true , // Framework to use. Jasmine is recommended. framework: 'jasmin...