Is there any way to automaticly check a option in a radiobox(in a browser) if it has no id in it?
In my application I have a webbrowser which automaticly goes to a .html file that has the following script:
Also there is a button and when I click it it should select the option 'ghi'. Now most solutions I found use the id in the input. But in this input there isn't any id.Code:<html><form><input type="radio" class="radio" name="d" value="2" checked="checked">abc <br> <input type="radio" class="radio" name="d" value="3">def <br> <input type="radio" class="radio" name="d" value="4">ghi</form></html>
Anyone knows how to do this?




Reply With Quote