Chrome starts with a popup suggesting to me that I should use a search engine from a random list. This popup inhibits Selenium functionality on certain websites that I am trying to use. Is there any argument I can pass into a ChromeOptions instance to remove this popup?
Image of Chrome with the Popup
opt = Options()
opt.add_argument("--disable-infobars")
opt.add_argument("start-maximized")
opt.add_argument("--disable-extensions")
opt.add_argument(f'--search-engine=Google') # ????
driver = webdriver.Chrome(service, options = opt)
I tried my luck with random arguments i.e. “–search-engine=Google” but no results.
New contributor
Arrelis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.