I want to automatically check a particular "check box" on a webpage, there are 100's of them with multiple options. I need to check one from all?
In the picture, I need to select all the "approved" check boxes.
I want to automatically check a particular "check box" on a webpage, there are 100's of them with multiple options. I need to check one from all?
In the picture, I need to select all the "approved" check boxes.
You might want to take a look at this answer: Check/Uncheck checkbox with javascript?
Using the built in console of google chrome you can select the wanted checkboxes on classname or id and then check/uncheck them as wanted.
on that specific checkbox you can set as type="checkbox" name="vehicle" value="Car" checked
them this will be auto checked when opens that page
Thanks