UNPKG

722 BJavaScriptView Raw
1// An example configuration file.
2// https://raw.github.com/angular/protractor/master/example/conf.js
3exports.config = {
4
5 directConnect: true,
6
7 // The address of a running selenium server.
8 // Make sure you check the version in the folder
9 // seleniumServerJar: './selenium-server-standalone-3.2.0.jar',
10
11 // webdriver-start can start on default port 4444
12 //seleniumAddress: 'http://localhost:4444/wd/hub',
13
14 // Capabilities to be passed to the webdriver instance.
15 capabilities: {
16 'browserName': 'chrome'
17 },
18
19 specs: ['example-spec.js'],
20
21 allScriptsTimeout: 60000,
22
23 // Options to be passed to Jasmine-node.
24 jasmineNodeOpts: {
25 showColors: true,
26 defaultTimeoutInterval: 30000
27 }
28};