diff --git a/README.md b/README.md
index 8546e717ad1c9dab0f640a7b1515b31b13480f58..912b688c2907bc1b8ee1915866fe2f38d0a1578a 100644
--- a/README.md
+++ b/README.md
@@ -3,35 +3,46 @@
 
 Inside that directory, you can run several commands:
 
+## Runs the end-to-end tests. 
 ````
 npx playwright test
 ````
-Runs the end-to-end tests.  
+ 
+## Runs the end-to-end tests in [UI-mode](https://playwright.dev/docs/test-ui-mode).
     
 ````
 npx playwright test --ui
 ````  
-Runs the end-to-end tests in [UI-mode](https://playwright.dev/docs/test-ui-mode).
+
+## Runs the tests only on Desktop Chrome.
 
 ````
 npx playwright test --project=chromium
 ```` 
-Runs the tests only on Desktop Chrome.
+
+## Runs the tests in a specific file.
 
 ````
 npx playwright test example
 ````
-Runs the tests in a specific file.
+
+
+## Runs the tests in debug mode.
 
 ````
 npx playwright test --debug
 ````
-Runs the tests in debug mode.
+
+## Auto generate tests with Codegen.
 
 ````
 npx playwright codegen
 ````
-Auto generate tests with Codegen.
 
+## The docs
 
 Visit [https://playwright.dev/docs/intro](https://playwright.dev/docs/intro) for more information.
+
+## Testing? Which testing?
+
+![Different types of testing](new-testing-trophy.png)
diff --git a/new-testing-trophy.png b/new-testing-trophy.png
new file mode 100644
index 0000000000000000000000000000000000000000..cef5d82ec0695537d437ca4d9c9f30843b95d6e0
Binary files /dev/null and b/new-testing-trophy.png differ