This a bare minimum framework setup of WebdriverIO for QA Recruitment Workshop
- UI
- Webdriverio
- JS
- Page Object Model (POM)
- npm - 7.24.0
- node - 16.10.0
-
Clone GIT repository in named directory.
Run:
> cd ~/workspace/ > mkdir <wdio-js_directory_name> > cd <wdio-js_directory_name> > git clone https://github.com/tarunmaini16/wdio.git -
Install all dependencies -
Run:
> cd ~/workspace/<wdio-js_directory_name>/wdio > npm installNote:This will install all dependencies project will be using for executing.
-
To run test -
Run:
> cd ~/workspace/<wdio-js_directory_name>/wdio > npx wdio run wdio.conf.js- This will run all tests under wdio directory
- Tarun Maini