Задача : нужно кликнуть Selenium Webdriver - ом на чекбокс , что бы там появилась голочка.
<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="https://www.terms.com/"> terms and conditions</a>
::after
</label>
<div class="Toastify"></div>
</div>
Xpath для input type="checkbox" is //*[@id="save-info"]
Соответственно что бы поставить галочку надо : driver.find_element_by_xpath("//input[@id='save-info']").click()
ну это я так думаю :)
Но вылезает ошибка : selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element is not clickable at point (327, 352). Other element would receive the click: ...
Перепробывал уже всё что можно , от css селекторов до фулл path , нечего не помогает.. Не могу понять куда этот клик уходит.
Заранее спасибо за ответы