An open API service indexing awesome lists of open source software.

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

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`.