How can I select the checkbox using Selenium with Python?
from selenium import webdriver from selenium.webdriver.common.keys import Keys browser = webdriver.
The checkbox HTML is:
so you can use
browser.find_element_by_id("C179003030-ORNL_DAAC-box").click()
One way you can find elements' attributes is using the Google Chrome Developer Tools: