I am attempting to select a checkbox on a webpage using Selenium and Python using this line of code
self.driver.find_element_by_id('lg_1166').click()
but am getting this error message
Message: Element <input id="lg_1699" name="lg_1699" type="checkbox"> is not clickable at point (284,888) because another element <div class="col-12 text-center"> obscures it
Then, when I inspect that same webpage looking for <div class="col-12 text-center">
, there is no matching HTML.
I am unfamiliar with waits
in Selenium and was wondering if anyone could help me resolve this issue.
Thanks!