https://github.com/reinskywalker/superjest-boilerplate
This repository is designed to facilitate comprehensive training for employees who want to enhance their skills in automated testing using WebDriverIO.
https://github.com/reinskywalker/superjest-boilerplate
Last synced: about 1 year ago
JSON representation
This repository is designed to facilitate comprehensive training for employees who want to enhance their skills in automated testing using WebDriverIO.
- Host: GitHub
- URL: https://github.com/reinskywalker/superjest-boilerplate
- Owner: reinskywalker
- Created: 2023-11-14T19:10:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-04T05:23:51.000Z (over 1 year ago)
- Last Synced: 2025-04-09T19:55:47.542Z (about 1 year ago)
- Language: TypeScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WebDriverIO Setup Guide
## 1. Prerequisites
Before you begin, ensure you have the following prerequisites installed on your machine:
- Node.js: [Download and Install Node.js](https://nodejs.org/)
- npm (Node Package Manager): Included with Node.js installation
## 2. Initialize Your Project
Open a terminal and navigate to your project directory. Run the following commands to initialize a new Node.js project:
```bash
npm init -y
## 3. Install WebDriverIO
Install WebDriverIO and its dependencies using npm:
```bash
npm install webdriverio @wdio/cli --save-dev
```
## 3. Create a directory structure for your test files. For example:
```
project-root
|-- test
| |-- specs
| |-- yourTestFile.js
```