The following code imports the ChromeDriverManager and sets up the options for the browser. The driver is then created and used to access the Google website.
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
from webdriver_manager.chrome import ChromeDriverManager
options = Options()
options.add_experimental_option("detach", True)
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
driver.get("https://chromedriver.chromium.org/home")
driver.maximize_window()