'How I can allow browser.pause? WDIO (wdio/no-pause) (plugin:wdio/recommended)
Solution 1:[1]
- create .eslintrc in the root of your project.
- Add some config as:
{
"plugins": [
"wdio"
],
"extends": [
"plugin:wdio/recommended",
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"env": {
"es6": true,
"mocha": true,
"node": true
},
"rules": {
"no-trailing-whitespace":false
}
}
for me this fixed the issue with browser.pause()
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |

