Comment cliquer sur un élément div dans Selenium Python

chk = wait.until(ec.element_to_be_clickable((By.XPATH, '(//*[@class="checkbox"])[1]')))
ActionChains(driver).move_to_element(chk).click().perform()
Nervous Nightingale