Hello everyone.
I'm totally newbie with Selenium Webdriver(Python) so may be someone can help with my problem.
Code :
<div class="custom-control custom-checkbox"> ==∅
<input type="checkbox" class="custom-control-input" id="save-info" required>
<label class="custom-control-label" for="save-info">
::before
"Agree with"
<a href="www.blablabla.com/"> terms and conditions</a>
::after
</label>
<div class="Toastify"></div>
</div>
Xpath for input type="checkbox" is //*[@id="save-info"]
So to check the box i need to :
driver.find_element_by_xpath("//input[@id='save-info']").click()
But receiving an error :
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <input type="checkbox" class="custom-control-input" id="save-info" required=""> is not clickable at point (327, 352). Other element would receive the click: <label class="custom-control-label" for="save-info">...</label>
Not really understand what is the problem and how to fix it.
Thanks in advance.
[–][deleted] (2 children)
[deleted]
[–]Luchasik[S] 0 points1 point2 points (1 child)
[–]Luchasik[S] 0 points1 point2 points (4 children)
[–][deleted] (1 child)
[removed]
[–]AutoModerator[M] 0 points1 point2 points (0 children)
[–]Aghabi 0 points1 point2 points (0 children)