Skip to content
This repository was archived by the owner on Jan 3, 2024. It is now read-only.

Commit 5f27924

Browse files
committed
Be clearer about disable_capture and interception
1 parent 757667e commit 5f27924

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -499,12 +499,12 @@ Selenium Wire works by redirecting browser traffic through an internal proxy ser
499499
Note that even if a request is out of scope and not captured, it will still travel through Selenium Wire.
500500

501501
``seleniumwire_options.disable_capture``
502-
Use this option to switch off request capture. Requests will still pass through Selenium Wire and through any upstream proxy you have configured but they won't be stored.
502+
Use this option to switch off request capture. Requests will still pass through Selenium Wire and through any upstream proxy you have configured but they won't be intercepted or stored. Request interceptors will not execute.
503503

504504
.. code:: python
505505
506506
options = {
507-
'disable_capture': True # Don't store any requests
507+
'disable_capture': True # Don't intercept/store any requests
508508
}
509509
driver = webdriver.Chrome(seleniumwire_options=options)
510510
@@ -741,12 +741,12 @@ A summary of all options that can be passed to Selenium Wire via the ``seleniumw
741741
driver = webdriver.Chrome(seleniumwire_options=options)
742742
743743
``disable_capture``
744-
Disable request capture. When ``True`` nothing gets stored.
744+
Disable request capture. When ``True`` nothing gets intercepted or stored.
745745

746746
.. code:: python
747747
748748
options = {
749-
'disable_capture': True # Don't store any requests.
749+
'disable_capture': True # Don't intercept/store any requests.
750750
}
751751
driver = webdriver.Chrome(seleniumwire_options=options)
752752

0 commit comments

Comments
 (0)