|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | +using System.Linq; |
| 4 | +using System.Text; |
| 5 | +using System.Threading.Tasks; |
| 6 | +using Fiddler; |
| 7 | +using OpenQA.Selenium; |
| 8 | +using OpenQA.Selenium.Chrome; |
| 9 | +using OpenQA.Selenium.Firefox; |
| 10 | +using OpenQA.Selenium.IE; |
| 11 | + |
| 12 | +namespace HttpStatusCodeExample |
| 13 | +{ |
| 14 | + class Program |
| 15 | + { |
| 16 | + static void Main(string[] args) |
| 17 | + { |
| 18 | + // Note that we're using a port of 0, which tells Fiddler to |
| 19 | + // select a random available port to listen on. |
| 20 | + int proxyPort = StartFiddlerProxy(0); |
| 21 | + |
| 22 | + // We are only proxying HTTP traffic, but could just as easily |
| 23 | + // proxy HTTPS or FTP traffic. |
| 24 | + OpenQA.Selenium.Proxy proxy = new OpenQA.Selenium.Proxy(); |
| 25 | + proxy.HttpProxy = string.Format("127.0.0.1:{0}", proxyPort); |
| 26 | + |
| 27 | + // See the code of the individual methods for the details of how |
| 28 | + // to create the driver instance with the proxy settings properly set. |
| 29 | + IWebDriver driver = WebDriverFactory.CreateWebDriverWithProxy(BrowserKind.IE, proxy); |
| 30 | + //IWebDriver driver = WebDriverFactory.CreateWebDriverWithProxy(BrowserKind.Firefox, proxy); |
| 31 | + //IWebDriver driver = WebDriverFactory.CreateWebDriverWithProxy(BrowserKind.Chrome, proxy); |
| 32 | + //IWebDriver driver = WebDriverFactory.CreateWebDriverWithProxy(BrowserKind.PhantomJS, proxy); |
| 33 | + |
| 34 | + TestStatusCodes(driver); |
| 35 | + |
| 36 | + driver.Quit(); |
| 37 | + |
| 38 | + StopFiddlerProxy(); |
| 39 | + Console.ReadLine(); |
| 40 | + } |
| 41 | + |
| 42 | + private static void StopFiddlerProxy() |
| 43 | + { |
| 44 | + Console.WriteLine("Shutting down Fiddler proxy"); |
| 45 | + FiddlerApplication.Shutdown(); |
| 46 | + Console.WriteLine("Complete! Press <Enter> to exit."); |
| 47 | + } |
| 48 | + |
| 49 | + private static int StartFiddlerProxy(int desiredPort) |
| 50 | + { |
| 51 | + // We explicitly do *NOT* want to register this running Fiddler |
| 52 | + // instance as the system proxy. This lets us keep isolation. |
| 53 | + Console.WriteLine("Starting Fiddler proxy"); |
| 54 | + FiddlerCoreStartupFlags flags = FiddlerCoreStartupFlags.Default & ~FiddlerCoreStartupFlags.RegisterAsSystemProxy; |
| 55 | + FiddlerApplication.Startup(desiredPort, flags); |
| 56 | + int proxyPort = FiddlerApplication.oProxy.ListenPort; |
| 57 | + Console.WriteLine("Fiddler proxy listening on port {0}", proxyPort); |
| 58 | + return proxyPort; |
| 59 | + } |
| 60 | + |
| 61 | + private static void TestStatusCodes(IWebDriver driver) |
| 62 | + { |
| 63 | + // Using Mozilla's main page, because it demonstrates some of the potential |
| 64 | + // problems with HTTP status code retrieval, and why there is not a one-size- |
| 65 | + // fits-all approach to it. |
| 66 | + string url = "http://www.mozilla.org/"; |
| 67 | + Console.WriteLine("Navigating to {0}", url); |
| 68 | + int responseCode = driver.NavigateTo(url); |
| 69 | + Console.WriteLine("Navigation to {0} returned response code {1}", url, responseCode); |
| 70 | + |
| 71 | + string elementId = "firefox-promo-link"; |
| 72 | + Console.WriteLine("Clicking on element with ID {0}", elementId); |
| 73 | + IWebElement element = driver.FindElement(By.Id(elementId)); |
| 74 | + responseCode = element.ClickNavigate(); |
| 75 | + Console.WriteLine("Element click returned response code {0}", responseCode); |
| 76 | + |
| 77 | + // Demonstrates navigating to a 404 page. |
| 78 | + url = "http://www.mozilla.org/en-US/doesnotexist.html"; |
| 79 | + Console.WriteLine("Navigating to {0}", url); |
| 80 | + responseCode = driver.NavigateTo(url); |
| 81 | + Console.WriteLine("Navigation to {0} returned response code {1}", url, responseCode); |
| 82 | + } |
| 83 | + } |
| 84 | +} |
0 commit comments