selenium 守护线程与主线程
时间: 2023-12-05 17:41:20 浏览: 90
详解Python多线程Selenium跨浏览器测试
根据提供的引用内容,selenium中的线程默认是非守护线程,如果想要在主线程结束的同时终止其他未运行完的线程,可以将线程设置为守护线程。selenium中可以通过设置`webdriver.ChromeOptions()`中的`detach`参数来实现守护线程的设置。当`detach`参数设置为`True`时,ChromeDriver进程将在后台运行,即使Python脚本退出或崩溃,ChromeDriver进程也将继续运行。当`detach`参数设置为`False`时,ChromeDriver进程将在Python脚本退出时终止。
以下是一个示例代码:
```python
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--headless')
options.add_argument('--disable-gpu')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
options.add_argument('--disable-extensions')
options.add_argument('--disable-infobars')
options.add_argument('--disable-browser-side-navigation')
options.add_argument('--disable-features=VizDisplayCompositor')
options.add_argument('--disable-blink-features=AutomationControlled')
options.add_argument('--start-maximized')
options.add_argument('--disable-popup-blocking')
options.add_argument('--disable-default-apps')
options.add_argument('--disable-translate')
options.add_argument('--mute-audio')
options.add_argument('--disable-notifications')
options.add_argument('--disable-logging')
options.add_argument('--log-level=3')
options.add_argument('--output=/dev/null')
options.add_argument('--disable-web-security')
options.add_argument('--user-data-dir=/tmp/user-data')
options.add_argument('--data-path=/tmp/data-path')
options.add_argument('--homedir=/tmp')
options.add_argument('--disk-cache-dir=/tmp/cache-dir')
options.add_argument('--disable-extensions-except=/path/to/extension')
options.add_argument('--disable-extensions-file-access-check')
options.add_argument('--remote-debugging-port=9222')
options.add_argument('--remote-debugging-address=0.0.0.0')
options.add_argument('--disable-background-networking')
options.add_argument('--disable-background-timer-throttling')
options.add_argument('--disable-backgrounding-occluded-windows')
options.add_argument('--disable-breakpad')
options.add_argument('--disable-client-side-phishing-detection')
options.add_argument('--disable-component-update')
options.add_argument('--disable-default-apps')
options.add_argument('--disable-domain-reliability')
options.add_argument('--disable-features=AudioServiceOutOfProcess')
options.add_argument('--disable-hang-monitor')
options.add_argument('--disable-ipc-flooding-protection')
options.add_argument('--disable-notifications')
options.add_argument('--disable-renderer-backgrounding')
options.add_argument('--disable-software-rasterizer')
options.add_argument('--disable-sync')
options.add_argument('--disable-translate-new-ux')
options.add_argument('--disable-webgl')
options.add_argument('--disable-web-security')
options.add_argument('--enable-automation')
options.add_argument('--force-color-profile=srgb')
options.add_argument('--metrics-recording-only')
options.add_argument('--no-first-run')
options.add_argument('--password-store=basic')
options.add_argument('--use-mock-keychain')
options.add_argument('--disable-features=RendererCodeIntegrity')
options.add_argument('--disable-features=NetworkService')
options.add_argument('--disable-features=NetworkServiceInProcess')
options.add_argument('--disable-features=VizHitTestSurfaceLayer')
options.add_argument('--disable-features=IsolateOrigins')
options.add_argument('--disable-features=site-per-process')
options.add_argument('--disable-features=HighContrastMode')
options.add_experimental_option('detach', True)
driver = webdriver.Chrome(options=options)
```
阅读全文