Html – What element do you target to click a checkbox with selenium webdriver?
I am trying to click on a checkbox on a website using selenium webdriver. The HTML for the checkbox is this following: <input type="checkbox" name="registrationForm:certIndCB" id="registrationForm:certIndCB" value="true" onclick="continueAction();"> I tried the following codes: # first code driver_wait = WebDriverWait(driver, 10)…