Hello i wanted to set value for an input inside a form how can I access here the html part:
<form id="starRate" action="https://nanoclub.ir/online_festival/starRate" data-id="24">
<input name="star" value="5" class="star star-5" id="star-5" type="radio" autocomplete="off">
</form>
and here is the python part:
form = driver.find_element_by_id('starRate')
#this is the form i wanted to access
input_ = form.find_element_by_class_name('star star-5')
# and this is the input wanted to set value for 5