I would like to see the browser window on Mac Os Monterey when using Selenium (the opposite of the headless mode).
Example:
#!/usr/bin/env python3
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()))
driver.get("https://www.github.com")
input()
print(driver.title)
Everything works as expected (including that the title is printed). However, the browser window does not show up.
What can I do to see the browser window?