From 0616f5b648d5581c9fbdc2b23e3cab0f6ec44af4 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Sun, 22 Sep 2024 13:26:39 +0200 Subject: [PATCH] Update Readme.md --- Readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 3ad985f..110af4e 100644 --- a/Readme.md +++ b/Readme.md @@ -34,7 +34,7 @@ composer require codeception/module-playwright --dev ## Configuration -Enable the module in `codeception.yml`: +Enable the module in `Acceptance.suite.yml`: ```yaml modules: @@ -47,6 +47,8 @@ modules: pw_start: true # Start Playwright server (proxy to CodeceptJS) automatically. Set to `false` and run the server manually in case the server doesn't start. pw_server: http://localhost:8191 # Url of Playwright server. Default: http://localhost:8191 pw_debug: false # Print Playwright server debug information. Default: false + + # Not implemented yet: video: true # Save video on fail trace: true # Save stack traces on fail ```