How to show all traffic after selecting "Show Only Process = #####" in Fiddler - fiddler

I'm using fiddler and I filtered the list of requests by right-clicking in the traffic list and selecting "Filter Now > Show Only Process="
How to I remove this filter so I can see all entries again?
For the life of me I can't figure it out!

Right click on the applied filter "down under":

Related

Remove menu option for specific selected values?

Is there a way to remove the option to select a menu link for specific fields?
For example I have a dashboard that has details of each users action and a few of those users are actually an automated system. So the few that are part of the system do not need to be reviewed as those are always automatic.
I want to only allow this menu selection for actual users and not the few "accounts" that are part of an automated system.
The kind of menu link on selection I am talking about.
Is it possible to remove this menu link for only specific values in a column?
I don't think it's possible - am fascinated to know if someone comes in with a way to do it - so one option to consider is renaming to "Daily Details - ignore for Bot 1 & 2" so the users are aware they should do nothing.

Use fiddler only for some processes

I was wondering if I could use Fiddler2 on only some processes instead of all applications which use system proxy settings. I know there is a filter option in Fiddler2, but as far as I know, it only hides information and the traffic is captured anyway.
There is a "Any Processes" button on fiddler toolbar. Drag the icon to a window to show traffic from only that process. Click the icon again to cancel the filter.
This is the best and simplest way to filter by process.
Or, in File menu, don't check the "Capture Traffice" item. Then set proxy in your others applications which need to be captured by fiddler.
If you capture HTTPS, open the https config dialog(Fiddler Options >> HTTPS), you'll see a list box with these list items:
...from all processes
...from browsers only
...from non-browsers only
...from remote client only
Here is a video which shows you how to filter by processes in fiddler. Towards the end of the video, you can learn how to filter by browser or even the tab of a browser.
https://www.youtube.com/watch?v=qZYl3a60-Uc
Steps (Fiddler 4.3x) -
Fiddler > Filters Tab
Use filters - check it!
Client processes : Show only Traffic from - check it! > Choose your process (a browser or tab in browser) from the adjacent drop down menu.
Actions button > Run filterset now - click it!
Done !
To use Fiddler for capturing traffic from a specific process/Application fiddler has provided a option - "Any Process"
Steps :
Open/Launch the application which you want to monitor.
Select "Any Process" option and Drag it to the you application.
Now you have restricted Fiddler to capture the traffic from a specific Process/Application.

Fiddler can easily decode responses - how to make this automatic?

In Fiddler I have many responses which I like to view raw. For each one Fiddler says "Response is encoded and may need to be decoded before inspection. Click here to transform."
I want not only the current one, but all responses to always be transformed. Anyone know how to set this? Rules->Remove all encodings does not do the trick.
If the goal is to remove compression during the processing of a session:
That's what the "Decode" button on the toolbar does.
That's also what Rules menu > "Remove all encodings" does.
If the goal is to remove the encoding after session processing is complete, select all of the sessions (CTRL+A) and use "Decode Selected Sessions" on the Web Sessions list's context menu.
It's very easy. Just click the "Decode" button on Fiddler's toolbar.

selenium.click is not working while running the script when selecting an item from a list generated by Ajax search

The functionality is such that some search criteria is entered in a search box, an ajax search is performed and a list of items matching the search criteria is shown. An item is selected from this list and gets loaded into the search input box. When i am recording using Selenium IDE, the selecting of item from the list, the command is click. But when i am running the script with the click command, it seems it is not selecting the item from the list and loading it into the box. Some one please suggest what command should i use. I have tried with clickat() but it doesnt work.
I am using Selenium IDE 1.5.0 to record and writing scripts in Eclipse Junit platform.
Thanks in advance.
I'm sure it's a timing issue. The click in the list happens before it is present in browser. You should add before the click command an explicit wait like "waitForElementPresent".
I found the solution for the above scenario. I am using Actions class. Using that I am focusing on the search item that fulfills my criteria and performing click action (instead of using click() and clickat() methods)
Actions builder = new Actions(driver); builder.moveToElement(item).build().perform();
//item is the search item i want to select item.click();

Fiddler: show only the following hosts doesn't work

In Fiddler's Filters tab, I have "Use Filters" checked off.
I have no zone filter.
I have chosen "Show only the following hosts" and have added the host name that I want to show exactly as it is displayed in Fiddler's "Host" column in the Web Sessions window.
It's not working at all.
I have Fiddler set up to capture all processes.
I'd also like to get Fiddler to show a couple of different hosts
Any suggestions? thanks.
In Fiddler's Filters tab, I have "Use Filters" checked off.
->checked off? should be on.
I have chosen "Show only the following hosts" and have added the host name that I want to show exactly as it is displayed in Fiddler's "Host" column in the Web Sessions window.
->make sure you didn't add the 'http://' before it
I'd also like to get Fiddler to show a couple of different hosts
->just separate them with a space or colon.
good luck!
You should check the "use filters" checkbox.
In the "Show only the following hosts" textbox, type the names of the hosts separated by colon. If you have several similar hosts then you can use wildcards also(see below for an example).