Hello Eric ,
Thanks for bring us Fiddler. It's pretty useful.
Here is the problem:
if (oSession.HostnameIs("www.test.com")) {
oSession.utilDecodeResponse();
if (oSession.utilFindInResponse("cacheKey",false) > -1){
var oBody = oSession.GetResponseBodyAsString ();
var regex =/value=\"(.*)\" id=\"cacheKey/i;
if(oBody.match(regex)){
MessageBox.Show("AAAA" );
var cachekey = RegExp.$1; // <-------------------- Error Line
}
Every time i save it, fiddler report :
Object doesn't support this property or method.
I try many times but the problem is still here.
Could you help me? thanks anyway!
Thanks for bring us Fiddler. It's pretty useful.
Here is the problem:
if (oSession.HostnameIs("www.test.com")) {
oSession.utilDecodeResponse();
if (oSession.utilFindInResponse("cacheKey",false) > -1){
var oBody = oSession.GetResponseBodyAsString ();
var regex =/value=\"(.*)\" id=\"cacheKey/i;
if(oBody.match(regex)){
MessageBox.Show("AAAA" );
var cachekey = RegExp.$1; // <-------------------- Error Line
}
Every time i save it, fiddler report :
Object doesn't support this property or method.
I try many times but the problem is still here.
Could you help me? thanks anyway!