https://github.com/gabriel-darbord/replay
Replay user actions in a Pharo image
https://github.com/gabriel-darbord/replay
pharo ui-automation
Last synced: about 1 year ago
JSON representation
Replay user actions in a Pharo image
- Host: GitHub
- URL: https://github.com/gabriel-darbord/replay
- Owner: Gabriel-Darbord
- License: mit
- Created: 2025-05-21T13:48:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-12T16:56:10.000Z (about 1 year ago)
- Last Synced: 2025-06-12T17:47:21.927Z (about 1 year ago)
- Topics: pharo, ui-automation
- Language: Smalltalk
- Homepage:
- Size: 108 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Replay
Replay user actions in a Pharo image.
Build scenarios involving UI that can serve as tutorials or tests.
## Installing
```st
Metacello new
githubUser: 'Gabriel-Darbord' project: 'Replay' commitish: 'main' path: 'src';
baseline: 'Replay';
load
```
## Usage
Open the editor and create your scenario using the GUI.
```st
ReplayEditor open
```
Saving your scenario gives you a STON string.
To run it:
```st
(STON fromString: '') run
```
> [!TIP]
> Take a look at the examples on the class-side of `ReplayScenario`.