Somebody can upload code of clicking the checkbox in this page IN PYTHON ONLY- https://www.google.com/recaptcha/api2/demo
i cant find the xpath for this code ...
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException
driver1 = webdriver.Firefox()
driver1.get("https://www.google.com/recaptcha/api2/demo")
driver1.find_element_by_xpath(...).click()
if it wasn't clear, i want to click this button ( in the circle )

can't find - xpath/css_selectorfor which WebElement/field ?