test headless...

master
Max 2023-06-14 15:16:24 +08:00 committed by GitHub
parent 1d5e96e235
commit 5cbe8a72c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -54,7 +54,7 @@ import itertools
import ssl import ssl
ssl._create_default_https_context = ssl._create_unverified_context ssl._create_default_https_context = ssl._create_unverified_context
CONST_APP_VERSION = "MaxBot (2023.6.12)" CONST_APP_VERSION = "MaxBot (2023.6.13)"
CONST_MAXBOT_CONFIG_FILE = "settings.json" CONST_MAXBOT_CONFIG_FILE = "settings.json"
CONST_MAXBOT_LAST_URL_FILE = "MAXBOT_LAST_URL.txt" CONST_MAXBOT_LAST_URL_FILE = "MAXBOT_LAST_URL.txt"
@ -491,7 +491,7 @@ def load_chromdriver_uc(config_dict):
driver = None driver = None
if os.path.exists(chromedriver_path): if os.path.exists(chromedriver_path):
try: try:
driver = uc.Chrome(driver_executable_path=chromedriver_path, options=options, desired_capabilities=caps) driver = uc.Chrome(driver_executable_path=chromedriver_path, options=options, desired_capabilities=caps, headless=config_dict["advanced"]["headless"])
except Exception as exc: except Exception as exc:
error_message = str(exc) error_message = str(exc)
if show_debug_message: if show_debug_message:
@ -509,7 +509,7 @@ def load_chromdriver_uc(config_dict):
#print("Oops! web driver not on path:",chromedriver_path ) #print("Oops! web driver not on path:",chromedriver_path )
print('undetected_chromedriver automatically download chromedriver.') print('undetected_chromedriver automatically download chromedriver.')
try: try:
driver = uc.Chrome(options=options, desired_capabilities=caps) driver = uc.Chrome(options=options, desired_capabilities=caps, headless=config_dict["advanced"]["headless"])
except Exception as exc: except Exception as exc:
error_message = str(exc) error_message = str(exc)
if show_debug_message: if show_debug_message: