Skip to content

Develop #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
9eb4b70
Ejecutar el proyecto con node 18
juanmanuelgg Apr 30, 2023
34e1c53
Merge pull request #4 from juanmanuelgg/feature/ejecutar-el-proyecto-…
juanmanuelgg Apr 30, 2023
ca9b349
ajustar el waituntil en los links para el escenario de spa
juanmanuelgg Apr 30, 2023
8d0fb59
Merge branch 'main' into 3-ajustar-el-waituntil-en-los-links-para-el-…
juanmanuelgg Apr 30, 2023
ddc4eb4
Merge pull request #5 from juanmanuelgg/3-ajustar-el-waituntil-en-los…
juanmanuelgg Apr 30, 2023
e671a0f
arreglar el estilo del reporte
juanmanuelgg Apr 30, 2023
b886a1e
Merge pull request #6 from juanmanuelgg/bugfix/arreglar-el-estilo-del…
juanmanuelgg Apr 30, 2023
8b30b45
Atrapar los errores al interactuar con los inputs. Formatear el codig…
juanmanuelgg Apr 30, 2023
95741cc
Merge pull request #8 from juanmanuelgg/feature/conseguir-ejecución-c…
juanmanuelgg Apr 30, 2023
e71d62c
Merge pull request #9 from juanmanuelgg/develop
juanmanuelgg Apr 30, 2023
c65b9c4
aumentar el tamaño de la imagen para ver el reporte
juanmanuelgg May 1, 2023
f21d8d1
Mostrar el reporte en github pages
juanmanuelgg May 1, 2023
9f0f022
Merge pull request #11 from juanmanuelgg/feature/aumentar-el-tamaño-d…
juanmanuelgg May 1, 2023
64c1138
Merge pull request #12 from juanmanuelgg/develop
juanmanuelgg May 1, 2023
e55b623
segundo intento de mostrar reporte en github pages
juanmanuelgg May 1, 2023
31e955b
Create _config.yml
juanmanuelgg May 1, 2023
f8a9e00
Actualizar las instrucciones de uso de el repositorio
juanmanuelgg May 1, 2023
558b6ec
Fix instrucciones
juanmanuelgg May 1, 2023
9e1a417
Equipo 12, 2024-15
juanmanuelgg Nov 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
15 changes: 9 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
node_modules/

.png\n*
screenshots*/
temp*/
*graph.json
*graph2.json
*graph3.json
results/*/screenshots*/
results/*/temp*/
results/*/*graph.json
results/*/*graph2.json
results/*/*graph3.json
firebaseConfig.js
results/
results/
/test-results/
/playwright-report/
/playwright/.cache/
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
# RIPuppet

A node js library for GUI Ripping on web applications

# Executing

To execute the testing tool use the following command:

```bash
npm start
```
node index.js url headless

```
# Ver el reporte

For example:
Para ver el reporte generado por el testing tool, se debe abrir el archivo index.html que se encuentra en la carpeta reporte.
Ayudado por un servidor web, se puede ver el reporte en el navegador.

```bash
npm i -g http-server
cd results/2023-04-30T03.04.29.739Z/chromium
http-server
```
node index.js https://github.com true

```
Por su comodidad deplegamos el reporte en la siguiente URL:

[Reporte de la entrega de la semana 4](https://juanmanuelgg.github.io/RIPuppetCoursera/)
5 changes: 5 additions & 0 deletions clean-local-branches.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

# Con este script cada rama que ya no exista en el repositiro remoto se elimina en el repositorio local.

git fetch --all -p; git branch -vv | grep ": gone]" | awk '{ print "git branch -D "$1 }' | sh
18 changes: 7 additions & 11 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
{
"url": "https://thesoftwaredesignlab.github.io",
"headless": true,
"depthLevels": 1,
"inputValues": false,
"values": {"userInput": "Mario",
"passwordInput": "123456",
"passwordTwoInput": "123456",
"nameInput": "Mario",
"emailInput": "[email protected]"},
"browsers": ["chromium", "webkit", "firefox"]
}
"url": "http://localhost:2368/ghost",
"headless": false,
"depthLevels": 2,
"inputValues": true,
"values": { "ember8": "[email protected]", "ember10": "abc1234567890" },
"browsers": ["chromium"]
}
11 changes: 11 additions & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
title: Notas
author: Juan Manuel González Garzón
email: [email protected]
description: >- # this means to ignore newlines until "baseurl:"
Reporte generado por ripuppet.
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://juanmanuelgg.github.io" # the base hostname & protocol for your site, e.g. http://example.com

remote_theme: pages-themes/[email protected]
plugins:
- jekyll-remote-theme # add this line to the plugins list if you already have one
1 change: 1 addition & 0 deletions docs/graph.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/graph2.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/graph3.json

Large diffs are not rendered by default.

114 changes: 114 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
<!DOCTYPE html>

<!------------------------DO NOT REMOVE THIS FILE. THIS IS THE BASE OF THE REPORTS CREATED BY THE TOOL------------------------->

<head>
<meta charset="utf-8">


<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

<!-- Custom CSS -->
<link rel="stylesheet" href="main.css">
</head>

<body>


<nav class="navbar navbar-expand-lg navbar-light bg-light">
<span class="navbar-brand mb-0 h1">RIPuppet</span>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Visualization</a>
</li>
</ul>
</div>
</nav>

<br/>
<br/>
<br/>

<div class="container">
<h1>Visited webpages</h1>
<div class="row">
<div class="col-md-10">
<div id="svgContainer">
<svg width="3725" height="3500"></svg>
</div>
</div>
</div>
<div>
<br/>
<h4 id="stateName">State</h4>
<br/>

</div>

<div class="row">
<div class="col-md-9">
<img src="" alt="State Photo" id="stateImage" class="hidden">
</div>
<div class="col-md-3">
<div class="panel panel-default" style="margin-top: 10px;">
<table class="table">
<tbody id="executionTable">
<tr>
<th scope="row">Element type</th>
</tr>
<tr>
<td id="elementType">-</td>
</tr>
<tr>
<th id="urlOrTransition" scope="row">URL</th>
</tr>
<tr>
<td id="stateUrl">-</td>
</tr>
<tr>
<th id="errorsRow" scope="row">Errors found</th>
</tr>
<tr>
<td id="errorsNumber"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<br/>
<div>
<h5 id="errorsTitle">Errors</h5>
<br/>
<br/>
<div class="col-md-9" id="errorMessageContainer">

</div>

</div>



</div>

<br/>
<br/>
<br/>


<script src="https://d3js.org/d3.v4.min.js"></script>
<!-- jQuery and Bootstrap -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
<script src="script.js"></script>
</body>
37 changes: 37 additions & 0 deletions docs/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
.links line {
stroke: #999;
stroke-opacity: 0.6;
}

.nodes circle {
stroke: #fff;
stroke-width: 1.5px;
}

text {
font-family: sans-serif;
font-size: 10px;
}

#svgContainer {
margin-left:-20%;
width: 3725px;
height: 3500px;
overflow: scroll;
}

svg {
border: 2px solid lightskyblue;
border-radius: 8px;
width: 100%;
height: 100%;
}

#stateImage {
max-width: 100%;
height: auto;
}

.hidden {
visibility: hidden;
}
Binary file added docs/screenshots/0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/101.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/102.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/103.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/104.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/105.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/106.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/107.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/108.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/109.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/110.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/111.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/112.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/113.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/114.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/115.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/116.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/117.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/118.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/119.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/120.png
Binary file added docs/screenshots/121.png
Binary file added docs/screenshots/122.png
Binary file added docs/screenshots/123.png
Binary file added docs/screenshots/124.png
Binary file added docs/screenshots/125.png
Binary file added docs/screenshots/126.png
Binary file added docs/screenshots/127.png
Binary file added docs/screenshots/128.png
Binary file added docs/screenshots/129.png
Binary file added docs/screenshots/13.png
Binary file added docs/screenshots/130.png
Binary file added docs/screenshots/131.png
Binary file added docs/screenshots/132.png
Binary file added docs/screenshots/133.png
Binary file added docs/screenshots/134.png
Binary file added docs/screenshots/135.png
Binary file added docs/screenshots/136.png
Binary file added docs/screenshots/137.png
Binary file added docs/screenshots/138.png
Binary file added docs/screenshots/139.png
Binary file added docs/screenshots/14.png
Binary file added docs/screenshots/140.png
Binary file added docs/screenshots/141.png
Binary file added docs/screenshots/142.png
Binary file added docs/screenshots/143.png
Binary file added docs/screenshots/144.png
Binary file added docs/screenshots/145.png
Binary file added docs/screenshots/146.png
Binary file added docs/screenshots/147.png
Binary file added docs/screenshots/148.png
Binary file added docs/screenshots/149.png
Binary file added docs/screenshots/15.png
Binary file added docs/screenshots/150.png
Binary file added docs/screenshots/151.png
Binary file added docs/screenshots/152.png
Binary file added docs/screenshots/153.png
Binary file added docs/screenshots/154.png
Binary file added docs/screenshots/155.png
Binary file added docs/screenshots/156.png
Binary file added docs/screenshots/157.png
Binary file added docs/screenshots/158.png
Binary file added docs/screenshots/159.png
Binary file added docs/screenshots/16.png
Binary file added docs/screenshots/160.png
Binary file added docs/screenshots/161.png
Binary file added docs/screenshots/162.png
Binary file added docs/screenshots/163.png
Binary file added docs/screenshots/164.png
Binary file added docs/screenshots/165.png
Binary file added docs/screenshots/166.png
Binary file added docs/screenshots/167.png
Binary file added docs/screenshots/168.png
Binary file added docs/screenshots/169.png
Binary file added docs/screenshots/17.png
Binary file added docs/screenshots/170.png
Binary file added docs/screenshots/171.png
Binary file added docs/screenshots/172.png
Binary file added docs/screenshots/173.png
Binary file added docs/screenshots/174.png
Binary file added docs/screenshots/175.png
Binary file added docs/screenshots/176.png
Binary file added docs/screenshots/177.png
Binary file added docs/screenshots/178.png
Binary file added docs/screenshots/179.png
Binary file added docs/screenshots/18.png
Binary file added docs/screenshots/180.png
Binary file added docs/screenshots/181.png
Binary file added docs/screenshots/182.png
Binary file added docs/screenshots/183.png
Binary file added docs/screenshots/184.png
Binary file added docs/screenshots/185.png
Binary file added docs/screenshots/186.png
Binary file added docs/screenshots/187.png
Binary file added docs/screenshots/188.png
Binary file added docs/screenshots/189.png
Binary file added docs/screenshots/19.png
Binary file added docs/screenshots/190.png
Binary file added docs/screenshots/2.png
Binary file added docs/screenshots/20.png
Binary file added docs/screenshots/21.png
Binary file added docs/screenshots/22.png
Binary file added docs/screenshots/23.png
Binary file added docs/screenshots/24.png
Binary file added docs/screenshots/25.png
Binary file added docs/screenshots/26.png
Binary file added docs/screenshots/27.png
Binary file added docs/screenshots/28.png
Binary file added docs/screenshots/29.png
Binary file added docs/screenshots/3.png
Binary file added docs/screenshots/30.png
Binary file added docs/screenshots/31.png
Binary file added docs/screenshots/32.png
Binary file added docs/screenshots/33.png
Binary file added docs/screenshots/34.png
Binary file added docs/screenshots/35.png
Binary file added docs/screenshots/36.png
Binary file added docs/screenshots/37.png
Binary file added docs/screenshots/38.png
Binary file added docs/screenshots/39.png
Binary file added docs/screenshots/4.png
Binary file added docs/screenshots/40.png
Binary file added docs/screenshots/41.png
Binary file added docs/screenshots/42.png
Binary file added docs/screenshots/43.png
Binary file added docs/screenshots/44.png
Binary file added docs/screenshots/45.png
Binary file added docs/screenshots/46.png
Binary file added docs/screenshots/47.png
Binary file added docs/screenshots/48.png
Binary file added docs/screenshots/49.png
Binary file added docs/screenshots/5.png
Binary file added docs/screenshots/50.png
Binary file added docs/screenshots/51.png
Binary file added docs/screenshots/52.png
Binary file added docs/screenshots/53.png
Binary file added docs/screenshots/54.png
Binary file added docs/screenshots/55.png
Binary file added docs/screenshots/56.png
Binary file added docs/screenshots/57.png
Binary file added docs/screenshots/58.png
Binary file added docs/screenshots/59.png
Binary file added docs/screenshots/6.png
Binary file added docs/screenshots/60.png
Binary file added docs/screenshots/61.png
Binary file added docs/screenshots/62.png
Binary file added docs/screenshots/63.png
Binary file added docs/screenshots/64.png
Binary file added docs/screenshots/65.png
Binary file added docs/screenshots/66.png
Binary file added docs/screenshots/67.png
Binary file added docs/screenshots/68.png
Binary file added docs/screenshots/69.png
Binary file added docs/screenshots/7.png
Binary file added docs/screenshots/70.png
Binary file added docs/screenshots/71.png
Binary file added docs/screenshots/72.png
Binary file added docs/screenshots/73.png
Binary file added docs/screenshots/74.png
Binary file added docs/screenshots/75.png
Binary file added docs/screenshots/76.png
Binary file added docs/screenshots/77.png
Binary file added docs/screenshots/78.png
Binary file added docs/screenshots/79.png
Binary file added docs/screenshots/8.png
Binary file added docs/screenshots/80.png
Binary file added docs/screenshots/81.png
Binary file added docs/screenshots/82.png
Binary file added docs/screenshots/83.png
Binary file added docs/screenshots/84.png
Binary file added docs/screenshots/85.png
Binary file added docs/screenshots/86.png
Binary file added docs/screenshots/87.png
Binary file added docs/screenshots/88.png
Binary file added docs/screenshots/89.png
Binary file added docs/screenshots/9.png
Binary file added docs/screenshots/90.png
Binary file added docs/screenshots/91.png
Binary file added docs/screenshots/92.png
Binary file added docs/screenshots/93.png
Binary file added docs/screenshots/94.png
Binary file added docs/screenshots/95.png
Binary file added docs/screenshots/96.png
Binary file added docs/screenshots/97.png
Binary file added docs/screenshots/98.png
Binary file added docs/screenshots/99.png
Binary file added docs/screenshots/state_0_interaction_1BEFORE.png
Binary file added docs/screenshots/state_102_interaction_103BEFORE.png
Binary file added docs/screenshots/state_102_interaction_104BEFORE.png
Binary file added docs/screenshots/state_102_interaction_105BEFORE.png
Binary file added docs/screenshots/state_106_interaction_107BEFORE.png
Binary file added docs/screenshots/state_106_interaction_108BEFORE.png
Binary file added docs/screenshots/state_106_interaction_109BEFORE.png
Binary file added docs/screenshots/state_110_interaction_111BEFORE.png
Binary file added docs/screenshots/state_110_interaction_112BEFORE.png
Binary file added docs/screenshots/state_110_interaction_113BEFORE.png
Binary file added docs/screenshots/state_114_interaction_115BEFORE.png
Binary file added docs/screenshots/state_114_interaction_116BEFORE.png
Binary file added docs/screenshots/state_114_interaction_117BEFORE.png
Binary file added docs/screenshots/state_119_interaction_120BEFORE.png
Binary file added docs/screenshots/state_119_interaction_121BEFORE.png
Binary file added docs/screenshots/state_119_interaction_122BEFORE.png
Binary file added docs/screenshots/state_11_interaction_12BEFORE.png
Binary file added docs/screenshots/state_11_interaction_13BEFORE.png
Binary file added docs/screenshots/state_11_interaction_14BEFORE.png
Binary file added docs/screenshots/state_124_interaction_125BEFORE.png
Binary file added docs/screenshots/state_124_interaction_126BEFORE.png
Binary file added docs/screenshots/state_124_interaction_127BEFORE.png
Binary file added docs/screenshots/state_124_interaction_132BEFORE.png
Binary file added docs/screenshots/state_138_interaction_139BEFORE.png
Binary file added docs/screenshots/state_138_interaction_140BEFORE.png
Binary file added docs/screenshots/state_138_interaction_141BEFORE.png
Binary file added docs/screenshots/state_151_interaction_152BEFORE.png
Binary file added docs/screenshots/state_151_interaction_153BEFORE.png
Binary file added docs/screenshots/state_151_interaction_154BEFORE.png
Binary file added docs/screenshots/state_156_interaction_157BEFORE.png
Binary file added docs/screenshots/state_156_interaction_158BEFORE.png
Binary file added docs/screenshots/state_156_interaction_159BEFORE.png
Binary file added docs/screenshots/state_160_interaction_161BEFORE.png
Binary file added docs/screenshots/state_160_interaction_162BEFORE.png
Binary file added docs/screenshots/state_160_interaction_163BEFORE.png
Binary file added docs/screenshots/state_167_interaction_168BEFORE.png
Binary file added docs/screenshots/state_167_interaction_169BEFORE.png
Binary file added docs/screenshots/state_167_interaction_170BEFORE.png
Binary file added docs/screenshots/state_167_interaction_171BEFORE.png
Binary file added docs/screenshots/state_167_interaction_172BEFORE.png
Binary file added docs/screenshots/state_167_interaction_174BEFORE.png
Binary file added docs/screenshots/state_16_interaction_17BEFORE.png
Binary file added docs/screenshots/state_16_interaction_18BEFORE.png
Binary file added docs/screenshots/state_16_interaction_19BEFORE.png
Binary file added docs/screenshots/state_179_interaction_180BEFORE.png
Binary file added docs/screenshots/state_179_interaction_181BEFORE.png
Binary file added docs/screenshots/state_179_interaction_182BEFORE.png
Binary file added docs/screenshots/state_183_interaction_184BEFORE.png
Binary file added docs/screenshots/state_183_interaction_185BEFORE.png
Binary file added docs/screenshots/state_183_interaction_186BEFORE.png
Binary file added docs/screenshots/state_187_interaction_188BEFORE.png
Binary file added docs/screenshots/state_187_interaction_189BEFORE.png
Binary file added docs/screenshots/state_187_interaction_190BEFORE.png
Binary file added docs/screenshots/state_20_interaction_21BEFORE.png
Binary file added docs/screenshots/state_20_interaction_22BEFORE.png
Binary file added docs/screenshots/state_20_interaction_23BEFORE.png
Binary file added docs/screenshots/state_24_interaction_25BEFORE.png
Binary file added docs/screenshots/state_24_interaction_26BEFORE.png
Binary file added docs/screenshots/state_24_interaction_27BEFORE.png
Binary file added docs/screenshots/state_28_interaction_29BEFORE.png
Binary file added docs/screenshots/state_28_interaction_30BEFORE.png
Binary file added docs/screenshots/state_28_interaction_31BEFORE.png
Binary file added docs/screenshots/state_2_interaction_3BEFORE.png
Binary file added docs/screenshots/state_2_interaction_4BEFORE.png
Binary file added docs/screenshots/state_2_interaction_5BEFORE.png
Binary file added docs/screenshots/state_32_interaction_33BEFORE.png
Binary file added docs/screenshots/state_32_interaction_34BEFORE.png
Binary file added docs/screenshots/state_32_interaction_35BEFORE.png
Binary file added docs/screenshots/state_37_interaction_38BEFORE.png
Loading