Skip to content

Commit 902c93b

Browse files
committed
Update the documentation
1 parent 7b374f8 commit 902c93b

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,7 @@ pytest my_first_test.py --pdb
548548
--enable-ws # (Enable Web Security on Chromium-based browsers.)
549549
--enable-sync # (Enable "Chrome Sync" on websites.)
550550
--uc | --undetected # (Use undetected-chromedriver to evade bot-detection.)
551+
--uc-cdp-events # (Capture CDP events when running in "--undetected" mode.)
551552
--remote-debug # (Sync to Chrome Remote Debugger chrome://inspect/#devices)
552553
--final-debug # (Enter Debug Mode after each test ends. Don't use with CI!)
553554
--dashboard # (Enable the SeleniumBase Dashboard. Saved at: dashboard.html)

help_docs/syntax_formats.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ class WireTestCase(BaseCase):
289289
print(request.url)
290290
```
291291

292-
(NOTE: The ``selenium-wire`` integration is now included with ``seleniumbase``: Add ``--wire`` as a ``pytest`` command-line option to activate. If you need both ``--wire`` with ``--undetected`` together, you'll still need to override ``get_new_driver()``.)
292+
(NOTE: The ``selenium-wire`` integration is now included with ``seleniumbase``: Add ``--wire`` as a ``pytest`` command-line option to activate.)
293293

294294
<a id="sb_sf_10"></a>
295295
<h3><img src="https://seleniumbase.github.io/img/logo3b.png" title="SeleniumBase" width="32" /> 10. Overriding the driver via "sb" fixture</h3>

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
"""
2-
The setup package to install SeleniumBase dependencies and plugins.
3-
(Uses selenium 4.x and is compatible with Python 3.6+)
4-
"""
5-
1+
"""Setup steps for installing SeleniumBase dependencies and plugins.
2+
(Uses selenium 4.x and is compatible with Python 3.6+)"""
63
from setuptools import setup, find_packages # noqa: F401
74
import os
85
import sys

0 commit comments

Comments
 (0)