@@ -5,7 +5,7 @@ exports.config = {
5
5
// ====================
6
6
// WebdriverIO supports running e2e tests as well as unit and component tests.
7
7
runner : 'local' ,
8
-
8
+
9
9
//
10
10
// ==================
11
11
// Specify Test Files
@@ -23,7 +23,7 @@ exports.config = {
23
23
// will be called from there.
24
24
//
25
25
specs : [
26
- [ 'test/*.test.js' ] ,
26
+ [ 'test/*.test.js' ] ,
27
27
] ,
28
28
// Patterns to exclude.
29
29
exclude : [
@@ -51,8 +51,8 @@ exports.config = {
51
51
// Sauce Labs platform configurator - a great tool to configure your capabilities:
52
52
// https://saucelabs.com/platform/platform-configurator
53
53
//
54
- capabilities : [ {
55
-
54
+ capabilities : [ {
55
+
56
56
// maxInstances can get overwritten per capability. So if you have an in-house Selenium
57
57
// grid with only 5 firefox instances available you can make sure that not more than
58
58
// 5 instances get started at a time.
@@ -61,13 +61,13 @@ exports.config = {
61
61
browserName : 'chrome' ,
62
62
acceptInsecureCerts : true ,
63
63
'goog:chromeOptions' : {
64
- args : [ '--headless' , '--disable-gpu' ]
64
+ args : [ '--headless' , '--disable-gpu' ]
65
65
}
66
66
// If outputDir is provided WebdriverIO can capture driver session logs
67
67
// it is possible to configure which logTypes to include/exclude.
68
68
// excludeDriverLogs: ['*'], // pass '*' to exclude all driver session logs
69
69
// excludeDriverLogs: ['bugreport', 'server'],
70
- } ] ,
70
+ } ] ,
71
71
//
72
72
// ===================
73
73
// Test Configurations
@@ -99,7 +99,7 @@ exports.config = {
99
99
// with `/`, the base url gets prepended, not including the path portion of your baseUrl.
100
100
// If your `url` parameter starts without a scheme or `/` (like `some/path`), the base url
101
101
// gets prepended directly.
102
- baseUrl : 'https://demo .applitools.com' ,
102
+ baseUrl : 'https://sandbox .applitools.com/bank ' ,
103
103
//
104
104
// Default timeout for all waitFor* commands.
105
105
waitforTimeout : 10000 ,
@@ -115,8 +115,8 @@ exports.config = {
115
115
// Services take over a specific job you don't want to take care of. They enhance
116
116
// your test setup with almost no effort. Unlike plugins, they don't add new
117
117
// commands. Instead, they hook themselves up into the test process.
118
- services : [ 'chromedriver' ] ,
119
-
118
+ services : [ 'chromedriver' ] ,
119
+
120
120
// Framework you want to run your specs with.
121
121
// The following are supported: Mocha, Jasmine, and Cucumber
122
122
// see also: https://webdriver.io/docs/frameworks
@@ -137,10 +137,10 @@ exports.config = {
137
137
// Test reporter for stdout.
138
138
// The only one supported by default is 'dot'
139
139
// see also: https://webdriver.io/docs/dot-reporter
140
- reporters : [ 'spec' ] ,
140
+ reporters : [ 'spec' ] ,
141
+
141
142
142
143
143
-
144
144
//
145
145
// Options to be passed to Mocha.
146
146
// See the full list at http://mochajs.org/
0 commit comments