bigbluebutton-Github/bigbluebutton-html5/tests/webdriverio/wdio.conf.js
Maxim Khlobystov d69fc3bfaa Test both ways of joining HTML5 client from the landing page: clicking the Join button and pressing Enter
This commit improves the landing page test spec by introducing the way to enter the client by pressing Enter. We also temporarily switch to Chrome in the main config file due to the bug in Geckodriver that doesn't allow us to use keyboard keys.
2017-05-22 01:56:02 +00:00

15 lines
276 B
JavaScript

exports.config = {
specs: ['specs/**'],
capabilities: [
{
browserName: 'chrome'
}
],
baseUrl: 'http://localhost:8080',
framework: 'jasmine',
reporters: ['dot'],
screenshotPath: 'screenshots',
logLevel: 'verbose'
};