Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want do test some Urls on the webapplication I'm working on. For that I would like to manually create HTTP Post Requests (meaning I can add whatever params I like).

Is there any extension or functionality in Chrome and/or Firefox that I'm missing

share|improve this question

6 Answers

up vote 31 down vote accepted

http://www.fiddler2.com/fiddler2/ should be quite useable

share|improve this answer
+1, Fiddler is perfectly suited for this--much more-so than FF or Chrome – STW Jan 25 '11 at 18:50
17  
Fiddler is awesome, unfortunately windows only. – digitaljoel Nov 15 '11 at 23:55
5  
Not awesome for Mac OS. You need to install .NET Framework. – vik Aug 8 '12 at 8:35
Fiddler is awesome, I'ved used it for many years, but an alternative on Mac, so many sites say, is Charles Proxy. So I bought it recently. But so far I cannot find any option to create an HTTP request from scratch, only by capturing a live request and editing it and sending again. Awkward. – Tom Pace Mar 23 at 17:26
2  
This answer does not answer the question because it is not for Chrome or Firefox. @Abhinav answer is much better IMHO. – vaughan Apr 7 at 9:11

I have been making a Chrome app called Postman for this type of stuff. All the other extensions seemed a bit dated so made my own. It also has a bunch of other features which have been helpful for documenting our own API here.

share|improve this answer
3  
Worked like a charm. And, uses the cookie cached in Chrome for authentication. – B Seven Jul 31 '12 at 14:36
1  
great app. love it. – phirschybar Sep 12 '12 at 16:18
This is by far the best. – Zasz Sep 27 '12 at 15:43
2  
This is all kinds of awesome. Best example of a REST tester I've seen. Very well done! – Gary Nov 8 '12 at 17:02
Where have you been all my life. – Michael Calkins Nov 20 '12 at 1:09
show 11 more comments

Try Firefox Poster plugin.

share|improve this answer

For firefox there is also an extension called RESTClient which is quite nice:

https://addons.mozilla.org/en-US/firefox/addon/restclient

share|improve this answer

It's a bit ugly, but there's the Simple REST Client extension for Chrome.

It works great for me -- do remember that you can still use the debugger with it. The Network pane is particularly useful; it'll give you rendered JSON objects and error pages.

share|improve this answer

You could also use Watir or Watin to automate browsers. Watir is written for ruby and Watin is for .Net languages. Not sure if it's what you are looking for though.

http://watin.sourceforge.net/ http://watir.com/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.