Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aniket-engg/selenium-with-nodejs
This is sample project of 'record n replay' using selenium in node.js
https://github.com/aniket-engg/selenium-with-nodejs
Last synced: 20 days ago
JSON representation
This is sample project of 'record n replay' using selenium in node.js
- Host: GitHub
- URL: https://github.com/aniket-engg/selenium-with-nodejs
- Owner: Aniket-Engg
- Created: 2018-08-11T19:21:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-14T20:36:52.000Z (over 6 years ago)
- Last Synced: 2024-10-28T16:37:22.043Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Sample Record and Replay
In this , we capture user click events along with the form data.## How to setup
Make sure you have [Node.js](https://nodejs.org/en/download/) installed on your system.
```
Clone project and move to project directory
npm install // to install all required dependencies
npm start // To start server
```
Server will be up.## Record
When server is up, a sample page will be displayed at [http://localhost:3000](http://localhost:3000)Any activity performed by user on this page will be recorded in a JSON file.
## Replay
By accessing the `record.json` file any number of user events can be replayed. See `replay.js`.Replay has been implemented using Selenium WebDriver.