Added webdriverio
only things needed to run it:
npm i --save-dev @wdio/cli
having google chrome installed
&
npm run testwdio
Few tests I wrote are in basic.js
Syntax and clean code can be optimized as stuff moves on, since this doesn't look the nicest.
What I like is wdio.conf.js where you can setup multiple browser running, e.g. mozzilla, and chrome. I've been using the takescreenshot on failure there too which then put the screenshot with what info what tests failed on slack.
Added webdriverio only things needed to run it:
npm i --save-dev @wdio/cli
having google chrome installed &npm run testwdio
Few tests I wrote are in
basic.js
Syntax and clean code can be optimized as stuff moves on, since this doesn't look the nicest.What I like is
wdio.conf.js
where you can setup multiple browser running, e.g. mozzilla, and chrome. I've been using the takescreenshot on failure there too which then put the screenshot with what info what tests failed on slack.