mirror of
https://github.com/FlareSolverr/FlareSolverr.git
synced 2025-06-08 12:35:30 +00:00
Disable Zygote sandbox in Chromium browser
This commit is contained in:
parent
410ee7981f
commit
a89679a52d
@ -5,6 +5,7 @@
|
||||
* Kill Chromium processes properly to avoid defunct/zombie processes
|
||||
* Include procps (ps), curl and vim packages in the Docker image
|
||||
* Update undetected-chromedriver
|
||||
* Disable Zygote sandbox in Chromium browser
|
||||
|
||||
## v3.0.0 (2023/01/04)
|
||||
|
||||
|
@ -44,6 +44,8 @@ def get_webdriver() -> WebDriver:
|
||||
# todo: this param shows a warning in chrome head-full
|
||||
options.add_argument('--disable-setuid-sandbox')
|
||||
options.add_argument('--disable-dev-shm-usage')
|
||||
# this option removes the zygote sandbox (it seems that the resolution is a bit faster)
|
||||
options.add_argument('--no-zygote')
|
||||
|
||||
# note: headless mode is detected (options.headless = True)
|
||||
# we launch the browser in head-full mode with the window hidden
|
||||
|
Loading…
x
Reference in New Issue
Block a user