An open API service indexing awesome lists of open source software.

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.

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
```