How do i check a checkbox in Selenium?
-
How do i check a checkbox in Selenium?? I really dont know how, I tried with xpath with click and submit, with selector click and submit, and both didnt work out.
-
The click should work but just in case you can do EXECUTEJS
document.getElementById("myCheck").checked = true;