python-selenium起動chrome静音パラメータの構成
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument("--mute-audio")#
return webdriver.Chrome(options=chrome_options, executable_path=r"./chromedriver")
添付: