I have multiple forms to fill and I need to click one of 4 checkboxes. I inspected the elements on that website and I see that it's written in html/css with javascript form and if I recall correctly javascript keeps data on the client side before sending it to the server meaning I could change the code of website to make the answer I want checked.
Is there a way to find and replace parts of the code? Maybe I could use a regex to find every checkbox I want and every answer I want to check and make it checked?
For example what I saw change:
aria-activedescendant="answer_wrapper_someNumbers" into aria-selected="true"
aria-selected="false" into aria-selected="true"
<div class="iradio" change into <div class="iradio checked"