Hi, I want to get the Query String Parameters(Form Data) shown below
but these parameters was generated by javascript so I can't find them in DOM or source.
Any ideas how to get these? as well as request headers
instance.UseTrafficMonitoring = true;
var traffic = instance.ActiveTab.GetTraffic();
foreach(var t in traffic) {
if (t.Url=="url of the request") {
return System.Text.Encoding.UTF8.GetString(t.ResponseBody);
}
}
return "Nothing found";
instance.UseTrafficMonitoring = true;
var traffic = instance.ActiveTab.GetTraffic();
foreach(var t in traffic) {
if (t.Url=="url of the request") {
return System.Text.Encoding.UTF8.GetString(t.ResponseBody);
}
}
return "Nothing found";