Python Forum
How do I get rid of "Chrome is being controlled by automated test software"?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do I get rid of "Chrome is being controlled by automated test software"?
#2
Add in options.
options.add_experimental_option("excludeSwitches", ['enable-automation']) 
Do not use single \ in path becuse of escape character,can add r.
Chrome(r'D:\PycharmProjects\Refresher\chromedriver.exe')
Example.
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.keys import Keys
import time

#--| Setup
options = Options()
#options.add_argument("--headless")
options.add_experimental_option("excludeSwitches", ['enable-automation'])
browser = webdriver.Chrome(executable_path=r'C:\cmder\bin\chromedriver.exe', options=options)
#--| Parse or automation
browser.get("http://www.google.com")
time.sleep(2)
accept_button = browser.find_elements_by_css_selector('#L2AGLb')[0]
accept_button.click()
time.sleep(2)
search_bar = browser.find_elements_by_css_selector('div.a4bIc > input')[0]
search_bar.send_keys('2022')
search_bar.submit() 
Reply


Messages In This Thread
RE: How do I get rid of "Chrome is being controlled by automated test software"? - by snippsat - Feb-23-2022, 07:36 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  I want to create an automated website in python mkdhrub1 2 2,576 Dec-27-2021, 11:27 PM
Last Post: Larz60+
  Expose chrome extension buttons to Python robertjaxe 2 2,452 May-12-2020, 07:52 PM
Last Post: robertjaxe
  Selenium/chrome console WiPi 4 6,022 Apr-12-2020, 11:45 AM
Last Post: WiPi
  Chrome instead of IE Friend 1 2,221 Feb-09-2020, 07:31 AM
Last Post: Larz60+
  Headless Chrome: How to login into a webpage? amandacstr 1 4,386 Feb-06-2020, 02:19 AM
Last Post: metulburr
  Automated Git add/commit/push rxndy 0 2,134 May-13-2019, 11:51 AM
Last Post: rxndy
  Interfacing Google Chrome & Python akornrumpf 5 4,215 Mar-16-2019, 10:20 PM
Last Post: Larz60+
  Cannot open Chrome gahhon 3 3,730 Jan-26-2019, 04:56 AM
Last Post: snippsat
  selenium - chrome crashes when chrome is running. RvBVakama 4 15,488 Dec-16-2018, 06:32 PM
Last Post: metulburr
  Automated Emailer (Using Selenium) StoopidChicken 0 3,036 Jul-17-2018, 07:20 AM
Last Post: StoopidChicken

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020