THE FORUM IS IN READ-ONLY MODE
This forum is in read-only mode. The new forum is live at https://discourse.openbullet.dev and registrations are open!
How parse these keywords using LR?
-
Hi Ruri, my bro
I have trouble parsing this kind of keywords (cba9a87c-a4f2-42c0-8178-a717f6414ac9) with the format
"
<input type="hidden" id="csrf_token" name="_csrf"
value="cba9a87c-a4f2-42c0-8178-a717f6414ac9" />
</form>
"
Using LR, with left string: value="
right string: " />
can not parse the values correctly.if I add name="_csrf"\r\n value='', but it does not work yet.
any suggestions, thanks
-
Use CSS Selector parsing, write
#csrf_token
andvalue
-
thanks ruri