Ubah Selenium Agen Pengguna

chromedriver = 'C:/tests/chromedriver.exe'
options = webdriver.ChromeOptions()
options.add_argument('--user-agent = Googlebot/2.1 (+http://www.google.com/bot.html)')
driver = webdriver.Chrome(executable_path = chromedriver, chrome_options = options)
Unsightly Unicorn