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
|
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 |
|||
|
|
|
http://www.fiddler2.com/fiddler2/ should be quite useable |
|||||||||||||||||
|
|
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. |
|||||||||||||||||
|
|
Try Firefox Poster plugin. |
|||
|
|
|
For firefox there is also an extension called RESTClient which is quite nice: |
|||
|
|
|
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. |
|||
|
|
|
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/ |
|||
|
|