Commit 8f4ec7b 1 parent 35af475 commit 8f4ec7b Copy full SHA for 8f4ec7b
File tree 1 file changed +43
-0
lines changed
1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ # webdriverio-web
2
+
3
+ The project is using webdriverio framewrork to explore automation testing for Trello.com page
4
+
5
+ ### 1. How to install webdriverio:
6
+ - Check out this page: https://webdriver.io/docs/gettingstarted.html
7
+
8
+ ### 2. Overview what existing on the package.json:
9
+ - Webdriverio framework:
10
+
11
+ - Test runner: mocha
12
+
13
+ - Report: spec
14
+
15
+ - services: selenium-standalone, with 2 types of browsers: firefox and chrome.
16
+
17
+ - Eslint:
18
+ <pre ><code >
19
+
20
+ {
21
+ "env": {
22
+ "es6": true,
23
+ "node": true,
24
+ "mocha": true
25
+ },
26
+ "globals": {
27
+ "Atomics": "readonly",
28
+ "SharedArrayBuffer": "readonly"
29
+ },
30
+ "parserOptions": {
31
+ "ecmaVersion": 2018,
32
+ "sourceType": "module"
33
+ },
34
+ "rules": {},
35
+ "plugins": [
36
+ "wdio"
37
+ ],
38
+ "extends": [
39
+ "plugin:wdio/recommended",
40
+ "eslint:recommended"
41
+ ]
42
+ }
43
+ </pre ></code >
You can’t perform that action at this time.
0 commit comments