selenium运行正常但是终端一直提示ERROR

问题遇到的现象和发生背景 selenium运行时终端提示ERROR
问题相关代码,请勿粘贴截图

selenium 4.4.0
op = Options()
op.add_argument('--headless')
op.add_experimental_option('excludeSwitches', ['enable-logging'])
op.add_argument('--log-level=3')
op.add_experimental_option('excludeSwitches', ['enable-automation'])
op.add_argument('--disable-blink-features=AutomationControlled')
s = Service(executable_path='chromedriver.exe')
wb = webdriver.Chrome(options=op,service=s)

运行结果及报错内容 [0818/000037.841:ERROR:socket_manager.cc(127)] Failed to resolve address for stun.services.mozilla.com., errorcode: -105
我的解答思路和尝试过的方法
我想要达到的结果 怎么关闭提示

使用service chrome浏览器要9.6版本以上