From 4bf98f31262a40033ba0b21662d4b523aa39afbf Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Sat, 2 Oct 2021 00:44:31 -0400 Subject: [PATCH] Update the docs --- help_docs/recorder_mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help_docs/recorder_mode.md b/help_docs/recorder_mode.md index 2b50859d..cbfb0f19 100755 --- a/help_docs/recorder_mode.md +++ b/help_docs/recorder_mode.md @@ -21,7 +21,7 @@ import ipdb; ipdb.set_trace() 🔴 You can also activate Debug Mode at the start of your test by adding ``--trace`` as a ``pytest`` command-line option: ```bash -pytest TEST_NAME.py --trace -s +pytest TEST_NAME.py --trace --recorder -s ``` 🔴 Once you've reached the breakpoint, you can take control of the browser and add in any actions that you want recorded. When you are finished recording, type "``c``" on the command-line and press ``[Enter]`` to let the test continue from the breakpoint. After the test completes, a file called ``TEST_NAME_rec.py`` will be automatically created in the ``./recordings`` folder, which will include the actions performed by the test, and the manual actions that you added in. Below is a command-line notification: