WebdriverIO v5.7 Unable to run suites using Jasmine or MochaRunning a Jasmine test suite in Phantom.js without a serverHow/What is the best way to auto create/save text file version of automated test reporter logspause() - waitUntil/waitForXXX behaviourUsing jasmine-spec-reporter instead of wdio-spec-reporter with webdriverio?How to Stop Selenium Standalone Server from Running Mocha/Chai/WebdriverIO Tests Every Time I Save a Change?WebdriverIO: How to fix error “unknown error: cannot get automation extension”?How to debug webdriverio in standalone mode?How to run webdriverio tests on firefox using wdio testRunner and wdio-selenium-standalone-serviceGetting html output of selenium page with error while running wdio.conf.js with selenium standalone service and chrome
Can mxd files be under version control?
Minimizing medical costs with HSA
Is it possible to spoof an IP address to an exact number?
Could you sell yourself into slavery in the USA?
Is it possible that Curiosity measured its own methane or failed doing the spectrometry?
Does the Milky Way orbit around anything?
How can solar sailed ships be protected from space debris?
How frequently do Russian people still refer to others by their patronymic (отчество)?
Why would "dead languages" be the only languages that spells could be written in?
What is the fundamental difference between catching whales and hunting other animals?
How to travel between two stationary worlds in the least amount of time? (time dilation)
how can i make this execution plan more efficient?
What instances can be solved today by modern solvers (pure LP)?
Should I warn my boss I might take sick leave
Can a Time Lord survive with just one heart?
Has chattel slavery ever been used as a criminal punishment in the USA since the passage of the Thirteenth Amendment?
Was Wolfgang Unzicker the last Amateur GM?
Bypass with wrong cvv of debit card and getting OTP
Do I need to be legally qualified to install a Hive smart thermostat?
How to deal with administrative duties killing the research spirit?
What happens if the limit of 4 billion files was exceeded in an ext4 partition?
Did Snape really give Umbridge a fake Veritaserum potion that Harry later pretended to drink?
Has there ever been a cold war other than between the U.S. and the U.S.S.R.?
Machine Learning Golf: Multiplication
WebdriverIO v5.7 Unable to run suites using Jasmine or Mocha
Running a Jasmine test suite in Phantom.js without a serverHow/What is the best way to auto create/save text file version of automated test reporter logspause() - waitUntil/waitForXXX behaviourUsing jasmine-spec-reporter instead of wdio-spec-reporter with webdriverio?How to Stop Selenium Standalone Server from Running Mocha/Chai/WebdriverIO Tests Every Time I Save a Change?WebdriverIO: How to fix error “unknown error: cannot get automation extension”?How to debug webdriverio in standalone mode?How to run webdriverio tests on firefox using wdio testRunner and wdio-selenium-standalone-serviceGetting html output of selenium page with error while running wdio.conf.js with selenium standalone service and chrome
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
When running more than one spec / test file with WebdriverIO v5.7 the test runner never spins up a browser, and begins test execution. Just hangs until the timeout is met. No errors generated in any of the logs.
Tried using chromeDriver and selenium standalone.
Issues happens with both mocha and jasmine frameworks.
Attempted pegging @wdio dependencies to lower versions.
Package.json dependencies:
"@wdio/devtools-service": "^5.7.2",
"@wdio/jasmine-framework": "^5.7.6",
"@wdio/local-runner": "^5.7.6",
"@wdio/mocha-framework": "^5.7.6",
"@wdio/reporter": "^5.7.0",
"@wdio/runner": "^5.7.6",
"@wdio/selenium-standalone-service": "^5.7.2",
"@wdio/spec-reporter": "^5.7.2",
"@wdio/sync": "^5.7.6",
"webdriverio": "^5.7.6",
Config file:
/**
* server configurations for chromeDriver
*/
services: ['chromedriver', 'devtools'],
port: 9515,
path: '/',
chromeDriverArgs: ['--port=9515'],
chromeDriverLogs: './logs',
runner: 'local',
/**
* specify test files
*/
specs: [],
suites: ,
/**
* test configurations
* trace, debug, info, warn, error, silent
*/
logLevel: 'debug',
outputDir: './logs',
sync: true,
coloredLogs: true,
screenshotPath: './screenshots',
baseUrl: 'https://my.dev.nutrienagsolutions.com',
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
framework: 'jasmine',
deprecationWarnings: true,
jasmineNodeOpts:
defaultTimeoutInterval: 9999999,
grep: null,
invertGrep: null,
,
reporters: ['spec'],
// --inspect-brk to make selenium wait for user to open debug console in browser
debug: true,
execArgv: ['--inspect-brk=127.0.0.1:5859'],
};```
Should be able to run webdriverIO with --suite or --spec that references more than 1 test file.
jasmine mocha webdriver-io
add a comment |
When running more than one spec / test file with WebdriverIO v5.7 the test runner never spins up a browser, and begins test execution. Just hangs until the timeout is met. No errors generated in any of the logs.
Tried using chromeDriver and selenium standalone.
Issues happens with both mocha and jasmine frameworks.
Attempted pegging @wdio dependencies to lower versions.
Package.json dependencies:
"@wdio/devtools-service": "^5.7.2",
"@wdio/jasmine-framework": "^5.7.6",
"@wdio/local-runner": "^5.7.6",
"@wdio/mocha-framework": "^5.7.6",
"@wdio/reporter": "^5.7.0",
"@wdio/runner": "^5.7.6",
"@wdio/selenium-standalone-service": "^5.7.2",
"@wdio/spec-reporter": "^5.7.2",
"@wdio/sync": "^5.7.6",
"webdriverio": "^5.7.6",
Config file:
/**
* server configurations for chromeDriver
*/
services: ['chromedriver', 'devtools'],
port: 9515,
path: '/',
chromeDriverArgs: ['--port=9515'],
chromeDriverLogs: './logs',
runner: 'local',
/**
* specify test files
*/
specs: [],
suites: ,
/**
* test configurations
* trace, debug, info, warn, error, silent
*/
logLevel: 'debug',
outputDir: './logs',
sync: true,
coloredLogs: true,
screenshotPath: './screenshots',
baseUrl: 'https://my.dev.nutrienagsolutions.com',
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
framework: 'jasmine',
deprecationWarnings: true,
jasmineNodeOpts:
defaultTimeoutInterval: 9999999,
grep: null,
invertGrep: null,
,
reporters: ['spec'],
// --inspect-brk to make selenium wait for user to open debug console in browser
debug: true,
execArgv: ['--inspect-brk=127.0.0.1:5859'],
};```
Should be able to run webdriverIO with --suite or --spec that references more than 1 test file.
jasmine mocha webdriver-io
This file is ran and merged with another config file to get the test suites populated. There are custom services and reporter that I removed in the file but I have tested them with and without and there is no difference. Individual test files run and multiple files referenced to build a suite do not.
– jedlee2004
Mar 25 at 19:15
add a comment |
When running more than one spec / test file with WebdriverIO v5.7 the test runner never spins up a browser, and begins test execution. Just hangs until the timeout is met. No errors generated in any of the logs.
Tried using chromeDriver and selenium standalone.
Issues happens with both mocha and jasmine frameworks.
Attempted pegging @wdio dependencies to lower versions.
Package.json dependencies:
"@wdio/devtools-service": "^5.7.2",
"@wdio/jasmine-framework": "^5.7.6",
"@wdio/local-runner": "^5.7.6",
"@wdio/mocha-framework": "^5.7.6",
"@wdio/reporter": "^5.7.0",
"@wdio/runner": "^5.7.6",
"@wdio/selenium-standalone-service": "^5.7.2",
"@wdio/spec-reporter": "^5.7.2",
"@wdio/sync": "^5.7.6",
"webdriverio": "^5.7.6",
Config file:
/**
* server configurations for chromeDriver
*/
services: ['chromedriver', 'devtools'],
port: 9515,
path: '/',
chromeDriverArgs: ['--port=9515'],
chromeDriverLogs: './logs',
runner: 'local',
/**
* specify test files
*/
specs: [],
suites: ,
/**
* test configurations
* trace, debug, info, warn, error, silent
*/
logLevel: 'debug',
outputDir: './logs',
sync: true,
coloredLogs: true,
screenshotPath: './screenshots',
baseUrl: 'https://my.dev.nutrienagsolutions.com',
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
framework: 'jasmine',
deprecationWarnings: true,
jasmineNodeOpts:
defaultTimeoutInterval: 9999999,
grep: null,
invertGrep: null,
,
reporters: ['spec'],
// --inspect-brk to make selenium wait for user to open debug console in browser
debug: true,
execArgv: ['--inspect-brk=127.0.0.1:5859'],
};```
Should be able to run webdriverIO with --suite or --spec that references more than 1 test file.
jasmine mocha webdriver-io
When running more than one spec / test file with WebdriverIO v5.7 the test runner never spins up a browser, and begins test execution. Just hangs until the timeout is met. No errors generated in any of the logs.
Tried using chromeDriver and selenium standalone.
Issues happens with both mocha and jasmine frameworks.
Attempted pegging @wdio dependencies to lower versions.
Package.json dependencies:
"@wdio/devtools-service": "^5.7.2",
"@wdio/jasmine-framework": "^5.7.6",
"@wdio/local-runner": "^5.7.6",
"@wdio/mocha-framework": "^5.7.6",
"@wdio/reporter": "^5.7.0",
"@wdio/runner": "^5.7.6",
"@wdio/selenium-standalone-service": "^5.7.2",
"@wdio/spec-reporter": "^5.7.2",
"@wdio/sync": "^5.7.6",
"webdriverio": "^5.7.6",
Config file:
/**
* server configurations for chromeDriver
*/
services: ['chromedriver', 'devtools'],
port: 9515,
path: '/',
chromeDriverArgs: ['--port=9515'],
chromeDriverLogs: './logs',
runner: 'local',
/**
* specify test files
*/
specs: [],
suites: ,
/**
* test configurations
* trace, debug, info, warn, error, silent
*/
logLevel: 'debug',
outputDir: './logs',
sync: true,
coloredLogs: true,
screenshotPath: './screenshots',
baseUrl: 'https://my.dev.nutrienagsolutions.com',
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
framework: 'jasmine',
deprecationWarnings: true,
jasmineNodeOpts:
defaultTimeoutInterval: 9999999,
grep: null,
invertGrep: null,
,
reporters: ['spec'],
// --inspect-brk to make selenium wait for user to open debug console in browser
debug: true,
execArgv: ['--inspect-brk=127.0.0.1:5859'],
};```
Should be able to run webdriverIO with --suite or --spec that references more than 1 test file.
jasmine mocha webdriver-io
jasmine mocha webdriver-io
asked Mar 25 at 19:13
jedlee2004jedlee2004
1
1
This file is ran and merged with another config file to get the test suites populated. There are custom services and reporter that I removed in the file but I have tested them with and without and there is no difference. Individual test files run and multiple files referenced to build a suite do not.
– jedlee2004
Mar 25 at 19:15
add a comment |
This file is ran and merged with another config file to get the test suites populated. There are custom services and reporter that I removed in the file but I have tested them with and without and there is no difference. Individual test files run and multiple files referenced to build a suite do not.
– jedlee2004
Mar 25 at 19:15
This file is ran and merged with another config file to get the test suites populated. There are custom services and reporter that I removed in the file but I have tested them with and without and there is no difference. Individual test files run and multiple files referenced to build a suite do not.
– jedlee2004
Mar 25 at 19:15
This file is ran and merged with another config file to get the test suites populated. There are custom services and reporter that I removed in the file but I have tested them with and without and there is no difference. Individual test files run and multiple files referenced to build a suite do not.
– jedlee2004
Mar 25 at 19:15
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55344937%2fwebdriverio-v5-7-unable-to-run-suites-using-jasmine-or-mocha%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55344937%2fwebdriverio-v5-7-unable-to-run-suites-using-jasmine-or-mocha%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This file is ran and merged with another config file to get the test suites populated. There are custom services and reporter that I removed in the file but I have tested them with and without and there is no difference. Individual test files run and multiple files referenced to build a suite do not.
– jedlee2004
Mar 25 at 19:15