Open4
M1 Mac × Chromium on Docker

を使うと良い。なお、edgeがない。

以下のようなコードで遊べる。
from selenium import webdriver
driver = webdriver.Remote(
command_executor="http://localhost:4444/wd/hub",
options=webdriver.ChromeOptions())
driver.get('https://www.yahoo.co.jp/')
print(driver.current_url)

- Google ChromeとMicrosoft Edgeはchromium

Selenium Grid やってみたい。