Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sergiopvilar/jquery-events-recorder
Record your interactions on the page like Selenium
https://github.com/sergiopvilar/jquery-events-recorder
Last synced: about 2 months ago
JSON representation
Record your interactions on the page like Selenium
- Host: GitHub
- URL: https://github.com/sergiopvilar/jquery-events-recorder
- Owner: sergiopvilar
- Created: 2014-03-10T02:03:17.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-10T02:20:16.000Z (almost 11 years ago)
- Last Synced: 2024-04-17T03:50:45.437Z (9 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
jquery-events-recorder
======================Record your interactions on the page like Selenium
## How to use
Include jQuery and JQuery Events Recorder files into your webpage and follow the code bellow:
```javascript
var r = new Recorder();
r.start(); // Start recording your actions on page
var script = r.getScript(); // returns a string with a jQuery code of your actions on the page
```