Skip to content

Commit d287cea

Browse files
committed
Update the "Recorder Mode" docs
1 parent 87c6c5c commit d287cea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

help_docs/recorder_mode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
<img src="https://seleniumbase.io/cdn/img/sb_recorder_notification.png" title="SeleniumBase" width="380">
88

9-
🔴 To activate Recorder Mode, add ``--recorder`` to your ``pytest`` run command when running an existing test:
9+
🔴 To activate Recorder Mode, add ``--recorder`` to your ``pytest`` run command when running an existing test: (Also add ``-s`` to allow breakpoints, unless you already have a ``pytest.ini`` file present with ``--capture=no`` in it.)
1010

1111
```bash
12-
pytest TEST_NAME.py --recorder
12+
pytest TEST_NAME.py --recorder -s
1313
```
1414

15-
🔴 In order to add actions to the test being run, you'll need to create a breakpoint somewhere inside your test:
15+
🔴 To add your own actions inside the test, you'll need to create a breakpoint somewhere inside of it:
1616

1717
```python
1818
import ipdb; ipdb.set_trace()

0 commit comments

Comments
 (0)