https://github.com/neurospeech/atoms-test.js
Atoms Test Framework
https://github.com/neurospeech/atoms-test.js
Last synced: 5 months ago
JSON representation
Atoms Test Framework
- Host: GitHub
- URL: https://github.com/neurospeech/atoms-test.js
- Owner: neurospeech
- License: mit
- Created: 2014-06-05T17:38:59.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-05T11:36:23.000Z (almost 11 years ago)
- Last Synced: 2024-12-27T04:42:56.540Z (7 months ago)
- Language: JavaScript
- Size: 1.15 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Atoms Test Framework
=============Small JavaScript library to record and simulate user input on web page. The library is under development.
How to record?
--------------Include "AtomRecorder.js" on the page you want to perform testing.
Invoke method "AtomRecorder.start()" to record testing on JavaScript console.
Invoke method "AtomRecorder.stop()" to stop recording on JavaScript console.
Invoke "copy(JSON.stringify(AtomRecorder.steps))" and you will get recorded steps copied onto clipboard.
How to simulate?
----------------Include "AtomRecorder.js" on the page you want to perform testing.
Invoke method "AtomRecorder.run(steps)", replace steps with the steps copied on the first step, invoke this on JavaScript console.