I apologize for reaching out to you all for assistance with such a basic task, but I have tried everything in my toolkit and still can't seem to figure it out. I've experimented with partial xpath, full xpath, and various CSS selectors.
I am seeking guidance on how to identify and interact with this element that appears to be related to jQuery.
Below is the HTML snippet of the relevant portion of the page:
<fieldset>
<legend class="hidden_visually">Choose Your Reload Amount</legend>
<div class="predefined_amount_selector">
<div id="Predefined_Reload_Amount">
<ol class="selector numbers form">
<li>
<input aria-labelledby="defined-amount-label_0" class="radio" id="defined-amount_0" name="defined_amount" title="$10" type="radio" value="10" />
<label for="defined-amount_0" id="defined-amount-label_0" class="">$10</label>
</li>
<li>
<input aria-labelledby="defined-amount-label_1" checked="checked" class="radio" id="defined-amount_1" name="defined_amount" title="$25" type="radio" value="25" />
<label for="defined-amount_1" id="defined-amount-label_1" class="">$25</label>
</li>
<li>
<input aria-labelledby="defined-amount-label_2" class="radio" id="defined-amount_2" name="defined_amount" title="$50" type="radio" value="50" />
<label for="defined-amount_2" id="defined-amount-label_2" class="">$50</label>
</li>
<li>
<input aria-labelledby="defined-amount-label_3" class="radio" id="defined-amount_3" name="defined_amount" title="$100" type="radio" value="100" />
<label for="defined-amount_3" id="defined-amount-label_3" class="">$100</label>
</li>
</ol>
<p class="note">Or enter your own amount »</p>
</div>
<noscript>
<p>Enter the amount you'd like to load on this card.</p>
</noscript>
<div id="Manual_Reload_Amount">
<ol class="form form_full">
<li id="min_max_amount" data-min="5" data-max="100">
<span class="numbers">$</span>
<input class="field_small numbers align_right" data-validation-max="100" data-validation-min="10" id="reload_amount" maxlength="10" name="Amount" title="Please enter an amount." type="text" value="25" />
<span>$10 to $100</span>
</li>
</ol>
<p class="note">Or choose an amount »</p>
</div>
</div>
</fieldset>