selenium chrome is controlled by automated test software code example
Example: selenium disable Chrome is being controlled by automated test software
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_experimental_option("excludeSwitches", ["enable-automation"])
driver = webdriver.Chrome(options=options)