Проблема здесь:
Element <input type="radio" name="RESULT_RadioButton-8" class="multiple_choice" id="RESULT_RadioButton-8_0" value="Radio-0"> is not clickable at point (281, 538). Other element would receive the click: <label for="RESULT_RadioButton-8_0">
Так что вам нужно нажать label
, а не radio input
. Метка может быть найдена с использованием следующего выражения XPath :
//label[@for='RESULT_RadioButton-8_0']
Так что вам нужно изменить эту строку:
driver.find_element_by_id('RESULT_RadioButton-8_0').click()
к этому:
driver.find_element_by_xpath('//label[@for=\'RESULT_RadioButton-8_0\']').click()