Tried extracting values of multiple variables using regex101 and was able to do so, but on trying the same with Regular Expression Extractor unable to get extracted values.
I did google a lot on this and did quite a lot of trial and error but there was no luck or found anything similar on it.
input type='hidden' name='code' value='([A-Za-z0-9+= \-\_]+?)' \/>
<input type='hidden' name='id_token' value='(.*)' \/>
<input type='hidden' name='scope' value='(.*)' \/>
<input type='hidden' name='state' value='(.*)' \/>
<input type='hidden' name='session_state' value='(.*)' \/>
I want to extract value of below listed variables:
1.code
2.id_token
3.scope
4.state
5.session_state
and