How to get the text beside value = ""

i cant figure out how get the data. what should i write inside regex

<input name="ctl00$ContentPlaceHolder1$txtEnroll" type="text" value="**i want to extract the characters stored here**" maxlength="12" id="ContentPlaceHolder1_txtEnroll" disabled="disabled" class="aspNetDisabled" style="width:145px;">

Use element attribute selector and set attribute as value.

1 Like

Further on KristapsWS's suggestion, the best selector is probably the input's ID

Selector: #ContentPlaceHolder1_txtEnroll
...
Attribute name: value

1 Like