I was trying to use addCustomRequestHeader method to set a custom header for selenium requests. Given below is the source code
Selenium sel = new DefaultSelenium("localhost",4444,"*firefox","http://www.google.com");
sel.start("addCustomRequestHeader=true");
// sel.start();
sel.addCustomRequestHeader("mycustomheader","automation");
sel.open("http://www.google.com/");
This code didn't add the header to the request. I tried to look up the request headers using Fiddler. Does any one here know what am I doing wrong here? Any help would be appreciated