Overview

Selenium 4.37, released on October 16, 2025, adds Python 3.14 support and drops Python 3.9.

Main Features

Python 3.14, dropped 3.9

Selenium 4.37 is compatible with Python 3.14 and removes Python 3.9 support, aligning with actively maintained versions.

python
from selenium import webdriver
from selenium.webdriver.common.by import By

driver = webdriver.Chrome()
driver.get('https://example.com')

title = driver.find_element(By.TAG_NAME, 'h1')
print(title.text)

driver.quit()

Sources