I am using WebdriverIO and all of my tests are getting failed on the platform. They run smoothly when executing on local. Please help me fix this.
exports.config = {
user: '*****',
key: '*******',
path: '/wd/hub',
hostname: 'hub.lambdatest.com',
port: 80,
specs: ['e2e/specs/**/*.js'],
],
specFileRetries: 0,
maxInstances: 10,
commonCapabilities: {
build: 'Test',
name: 'Demo Tests',
video: true,
network: false,
console: false,
visual: false,
tunnel: true
},
capabilities: [
{
browserName: 'chrome',
version: '86.0',
platform: 'Windows 10'
},
],
waitforTimeout: 1000,
}