Autofill Isuue

22 views
Skip to first unread message

Athul Johnson

unread,
Oct 3, 2025, 5:35:43 AMOct 3
to Excellent Data Filler
Screenshot 2025-10-01 203702.png
Screenshot 2025-10-03 150226.png

All the fields before this one autofill correctly, but when it reaches this field, the autofill stops and the fields afterward are not filled either.

C Tech Hindi

unread,
Oct 3, 2025, 7:19:52 AMOct 3
to Excellent Data Filler
If the Field Type is Radio in which only one option can be chosen, then id or # is not used in its Selector query, name attribute is used.

  • The id attribute must be unique within an entire HTML document.
  • The name attribute does not need to be unique within a document and can be shared by multiple elements, particularly within a form (e.g., radio buttons in a group).
Can you share input element HTML code?

Athul Johnson

unread,
Oct 3, 2025, 8:06:14 AMOct 3
to Excellent Data Filler
<div class="rating-scale" id="rating-container">
                                <div class="rating-option">
                                    <input type="radio" id="rating-1" name="q15" value="1">
                                    <label for="rating-1" class="rating-label">1</label>
                                    <span class="rating-text">Poor</span>
                                </div>
                                <div class="rating-option">
                                    <input type="radio" id="rating-2" name="q15" value="2">
                                    <label for="rating-2" class="rating-label">2</label>
                                    <span class="rating-text">Fair</span>
                                </div>
                                <div class="rating-option">
                                    <input type="radio" id="rating-3" name="q15" value="3">
                                    <label for="rating-3" class="rating-label">3</label>
                                    <span class="rating-text">Average</span>
                                </div>
                                <div class="rating-option">
    <input type="radio" id="rating-4" name="q15" value="4">
    <label for="rating-4" class="rating-label">4</label>
    <span class="rating-text">Good</span>
</div>

                                <div class="rating-option">
                                    <input type="radio" id="rating-5" name="q15" value="5">
                                    <label for="rating-5" class="rating-label">5</label>
                                    <span class="rating-text">Excellent</span>
                                </div>
                            </div>

C Tech Hindi

unread,
Oct 3, 2025, 11:56:39 PMOct 3
to Excellent Data Filler
these all radio buttons


<input type="radio" id="rating-1" name="q15" value="1">
<input type="radio" id="rating-2" name="q15" value="2">
<input type="radio" id="rating-3" name="q15" value="3">
<input type="radio" id="rating-4" name="q15" value="4">
<input type="radio" id="rating-5" name="q15" value="5">

Set Selector query - input[type="radio"][name=" q15 "]
Fill value in excel like this - 1, 2, 3, 4, 5

Muhammad Tariq Shabbir

unread,
Oct 4, 2025, 6:47:14 AMOct 4
to C Tech Hindi, Excellent Data Filler
Brother 

Is it possible to click on submit / save button and delay can add ?

Regards
Muhammad Tariq Shabbir


--
You received this message because you are subscribed to the Google Groups "Excellent Data Filler" group.
To unsubscribe from this group and stop receiving emails from it, send an email to excellent-data-f...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/excellent-data-filler/cc4010b7-5d1e-4d99-84a7-2692ae6fb228n%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

C Tech Hindi

unread,
Oct 7, 2025, 11:15:52 AMOct 7
to Excellent Data Filler
Reply all
Reply to author
Forward
0 new messages