Update __init__.py

False is not the default.
This commit is contained in:
Ali Satvaty 2023-05-23 23:41:18 +03:30 committed by GitHub
parent d29b3e300f
commit ce3e0dd79a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
use_subprocess: bool, optional , default: True,
False (the default) makes sure Chrome will get it's own process (so no subprocess of chromedriver.exe or python
False makes sure Chrome will get it's own process (so no subprocess of chromedriver.exe or python
This fixes a LOT of issues, like multithreaded run, but mst importantly. shutting corectly after
program exits or using .quit()
you should be knowing what you're doing, and know how python works.