Seperate the AutoResponder tab and the Inspector tab in fiddler - fiddler

while using fiddler, i have put a "break on all posts" in my filters.. and have saved some old responses for certain requests in my AutoResponders
A point to note about these requests is that all these requests go to the same URL with different Request body.. thus, although the URL is same for all these requests, their expected responses are different..
For this, i need to put a "break on all posts" and then as the requests are held by fiddler, i go to the AutoResponder tab and select the response which i want to put, then again go back to the inspector tab click on "run to completion".. then for the next request again i move back to the AutoResponder, click back the response i want to provide then again to inspector then "run to completion"..
if by some way, i could separate these two tabs - inspector and autoresponder, i can simply have these tabs stay side by side and do my tasks easier way..
if you have some other alternative too for my scenario, kindly suggest.

Simply change your AutoResponder match rule to use the UrlWithBody prefix so that you don't need a manual step.

Related

TestCafe - Possible to set "preserveUrl" to some own value?

I use two roles in my project.
In Role1, after a couple of clicks, I come to a page with URL1 "http://acc.comp.se/signing-page". On this page, there is a Button "SignWithCustomer".
If I click on that button I will get redirected to a page with URL2 "https://acc.comp.se/LogIn/?returnUrl=webben"
Now, in real life this redirection would be a new tab, i.e. I can always go back to the first tab where URL1 is still present and continue there as if the redirection never happened.
Is there a way to save the URL1, i.e. is it possible to set the preserverUrl to something I want? Like "preserveUrl=ClientFunction(() => window.location.href)"
I want to go back to Url1, the URL just before the last button click. And I want the previous session (before redirect) to be saved.
Please find our example in the corresponding guthub thread, where we discussed a similar inquiry based on your scenario.
At present, TestCafe supports Multiple Browser Windows. You can try this feature in your scenario.

Is there any way to hide xmlhttprequest log from chrome console

In my project I'm sending GET request to the server and what I found my every request is displaying in the xmlhttprequest log (attached screenshot) and when you open this with the browser it will show all the data. I'm going to create an API key method for my rest API, While it also takes time, for now, I want to hide logs from the console. So my question is how to hide such types of the log from my chrome console.
From my point of view it is not possible to hide any request your are sending with ajax, and another thing is that it is not compulsory to use chrome browser to use, user can use different browser, showing console log is like this is in-build functionality, normal user will not see console log. if your are worried about developers there are many plugin(like firebug) which they can use to monitor your request/response flow. so if you find any way to hide them it's not 100% solution.
my advice would be you use server side method to call your API if possible.
or second thing you can do is call console.clear(); function after calling ajax function(possible after success/fail).
you can hide such messages in Chrome in Console > Settings
(F12 > F1)
Tick [x] Hide network messages
Untick [] Log XMLHttpRequests
You can change it in the Console Settings > Hide Network
Hide Network on Console Settings

zap proxy how to exlude response from alert tab

I'd like to know how to exclude certain responses from the alert tab?
If there is a way.
Can't find any.
For example if the response page reports "character to number conversion error" I'd like to tell the zap attack proxy that this ain't a vulnerability but a correct response and therefore it shall not appear in the alert tab.
Double click the alert, and then change the "Confidence" to "False positive", it will stay in the Alerts tab but not be included in reports.
Or you can right click the alert and "Delete" it, but it can then be raised again by the active or passive scanner. That why we have the "False positive" setting.
FYI we have a ZAP Users group which is probably more suitable for questions like this (as Stackoverflow is a general forum): http://groups.google.com/group/zaproxy-users
That linked off the ZAP "Online / ZAP User Group" menu item, which is apparently invisible as no one seems to spot it ;)
Simon (ZAP Project lead)

View the response body of a COMET event with Chrome Developer Tools

Is it currently possible to view the body of the message being sent by a COMET event using Chrome Developer tools? I'm simply looking at COMET Clock sample here by Play Framework - http://www.playframework.com/documentation/2.2.x/Samples. When I enable the developer tools and go to the event-stream object, I can only see the request and response headers. No body or message can be viewed anywhere. Is this currently even possible? Nothing shows up under WebSockets, but I'm fairly sure this example is not using WebSockets, so that makes sense.
No. It is not possible for HTTP streaming (which I think it is your case) as March 2014 (hopefully they change this in the future)
Google Devtools only shows the response when the connection is closed.
In the case of web-sockets you do see live data.
But! modern versions of Firebug can show live data streaming. So I recommend you get Firefox and install the Firebug addon.
((Ahh firebug, it used to be all we had. Poor forgotten guy. But it still has nice things Chrome lacks!))
Cheers.
You can inspect the response from any HTTP request using the DevTools Network tab. To make finding your Comet request easier, select the XHR filter button at the bottom of the Network tab panel. You may need to reload the page after opening the Network tab to refresh the list of requests. Sometime it is necessary to switch back and forth between the All and XHR filters to see new requests that have been initiated since selecting the XHR filter. Once you have identified the request item, click to select it. On the right panel choose
Response from the taps at the top

Show sent POST Values with Fiddler..How do i do that?

I make some requests to a site and i want to see, what kind of variables has been sent to the server..
May be its possible with fiddler but i can't figure it out, how to do it..
You can do this in Fiddler using the following steps.
Locate the request in fiddler that relates to the post - you should be able to see the URL you expect in the URL column.
Select that line and the detailed view will open. There is a WebForms tab (inside "Inspectors") that displays the POST data in a neat table. You can also see it in the Raw tab, but it isn't nicely formatted like the WebForms tab.
I have made a screenshot to help you:
POST data can be seen in the Inspectors -> Raw window which will display the whole request along with POST data and headers.
EDIT: Yep... The Inspectors -> WebForms dialog would be another way however I usually don't make much use of it... Don't know why.
It works for me. Just click on the request in the Web Sessions pane, Then click WebForms tab within the Inspectors tab on the right.
I ran into this same problem but the answers here did not help me.
WebForms does not display json posted data. I figured out for posted json data, you need to check the Textview tab.
To summarise:
Inspectors->WebForms: will show you classic html form posted values.
Inspectors->Textview: will show you json and text posted values.