Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neurospeech/atoms-test.js
Atoms Test Framework
https://github.com/neurospeech/atoms-test.js
Last synced: about 2 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-05T11:36:23.000Z (over 10 years ago)
- Last Synced: 2024-04-16T12:24:26.865Z (8 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.