Skip to content

Instantly share code, notes, and snippets.

View maxbaluev's full-sized avatar
😀
awesome AI

Max Baluev maxbaluev

😀
awesome AI
View GitHub Profile
@maxbaluev
maxbaluev / wdio.conf.js
Created May 17, 2018 10:34 — forked from disintegrator/wdio.conf.js
Run Chrome Headless with WebdriverIO and selenium-standalone
exports.config = {
capabilities: [
{
browserName: 'chrome',
chromeOptions: {
args: ['headless', 'disable-gpu'],
},
},
],
services: ['selenium-standalone'],