Jeff
Jeff

Reputation: 13199

How to simulate http request using WatiN with specific HTTP referrer and query string?

When I use WatiN to go to a specific web page, how can I fake the HTTP referrer with a query string (i.e. request is from google search with query string q=search_term)? So I can verify that the response header has the 301 redirect for specific referrer URL.

I may need to use FiddlerCore to act like a middle man to set the custom referrer but I am not sure how to do that just yet.

I am using ASP.NET with C#.

Thanks!

//WatiN
Browser.GoTo(url);

Upvotes: 0

Views: 2429

Answers (2)

Jeff
Jeff

Reputation: 13199

I needed to do something similar to below:

// session is a custom version of FiddlerCore.Fiddler
// details about BeforeRequest -> http://fiddler.wikidot.com/fiddlercore-demo
session.BeforeRequest += sess =>
    sess.oRequest
        .headers
        .Add(
            "Referer",
            "http://www.i-am-middle-man.com/q=black"
        );

session.BeforeResponse += sess =>
        {
            //sess.oResponse.headers.HTTPResponseCode
            //sess.oResponse.headers["Host"]
        };

var handler = WatiNHandler(BrowserTypes.IE);
handler.GoTo("http://www.my-url.com/");

Upvotes: 1

Martin Peck
Martin Peck

Reputation: 11564

I might be missing the point of what you're trying to do, but I don't think WatiN is capable of fakingbthe referrer.

WatiN drives real browsers, so it isn't in the job of faking stuff. If you want a page to have a specific referrer then you need to have it linked from that referrer.

As you suggest, Fiddler is much better suited for this sort of thing. If you want you can modify requests on the fly using custom rules so that the referrer is whatever you like. You don't need to use Fiddlercore for this. Running Fiddler as a client proxy, or on you server as a reverse proxy might be enough.

Upvotes: 0

Related Questions