I have a response page where some text is present. There are no attribute based on which I can get the required text from response. Can some one please write me a code to do the same. I have attached the source here.
Mux isconnected
requesting...
response got
field id="0" value="0110"field id="3" value="000000"<BR>field id="4" value="000000010000"<BR>field id="6" value="000000010000"<BR>
Response - Success
<-- 0110 000326 33444489
In the above source I want to extract [ id="0" value="0110" ] and then use value=0100 in next test steps.
I have the code to split the text and use only value as shown below
text = 'response got field id="0" value="525XXXXXXXXX66"'
matcher = text.match(/value="(.+)"/)
puts matcher.captures.first
But first I need to extract the require tag or text and assign that as 'text' in the above function.