Skip to content

Commit e14c8e2

Browse files
committed
Initial commit
1 parent 4283943 commit e14c8e2

16 files changed

+24477
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.suo
2+
*.cache
3+
*.Cache
4+
*.user
5+
bin
6+
obj

App.config

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
5+
</startup>
6+
</configuration>

BrowserKind.cs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace HttpStatusCodeExample
8+
{
9+
enum BrowserKind
10+
{
11+
InternetExplorer,
12+
IE = InternetExplorer,
13+
Firefox,
14+
Chrome,
15+
PhantomJS
16+
}
17+
}

ExtensionMethods.cs

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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+
9+
namespace HttpStatusCodeExample
10+
{
11+
static class ExtensionMethods
12+
{
13+
private static TimeSpan DefaultTimeout = TimeSpan.FromSeconds(10);
14+
15+
/// <summary>
16+
/// Navigates to a specified URL, returning the HTTP status code of the navigation.
17+
/// </summary>
18+
/// <param name="driver">The driver used to navigate to the URL.</param>
19+
/// <param name="targetUrl">The URL to navigate to.</param>
20+
/// <returns>The HTTP status code of the navigation.</returns>
21+
public static int NavigateTo(this IWebDriver driver, string targetUrl)
22+
{
23+
return NavigateTo(driver, targetUrl, DefaultTimeout);
24+
}
25+
26+
/// <summary>
27+
/// Navigates to a specified URL, returning the HTTP status code of the navigation.
28+
/// </summary>
29+
/// <param name="driver">The driver used to navigate to the URL.</param>
30+
/// <param name="targetUrl">The URL to navigate to.</param>
31+
/// <param name="timeout">A <see cref="TimeSpan"/> structure for the time out of the navigation.</param>
32+
/// <returns>The HTTP status code of the navigation.</returns>
33+
public static int NavigateTo(this IWebDriver driver, string targetUrl, TimeSpan timeout)
34+
{
35+
int responseCode = 0;
36+
DateTime endTime = DateTime.Now.Add(timeout);
37+
SessionStateHandler responseHandler = delegate(Session targetSession)
38+
{
39+
if (targetSession.fullUrl == targetUrl)
40+
{
41+
responseCode = targetSession.responseCode;
42+
}
43+
};
44+
45+
FiddlerApplication.AfterSessionComplete += responseHandler;
46+
driver.Url = targetUrl;
47+
while (responseCode == 0 && DateTime.Now < endTime)
48+
{
49+
System.Threading.Thread.Sleep(100);
50+
}
51+
52+
FiddlerApplication.AfterSessionComplete -= responseHandler;
53+
return responseCode;
54+
}
55+
56+
/// <summary>
57+
/// Clicks on a link that is expected to navigate to a new URL, returning
58+
/// the HTTP status code of the navigation.
59+
/// </summary>
60+
/// <param name="element">The element clicked on to perform the navigation.</param>
61+
/// <returns>The HTTP status code of the navigation.</returns>
62+
public static int ClickNavigate(this IWebElement element)
63+
{
64+
return ClickNavigate(element, DefaultTimeout);
65+
}
66+
67+
public static int ClickNavigate(this IWebElement element, TimeSpan timeout)
68+
{
69+
int responseCode = 0;
70+
string urlNavigated = string.Empty;
71+
SessionStateHandler responseHandler = delegate(Session targetSession)
72+
{
73+
// Get the response code of the first HTML response we get.
74+
// This algorithm could be much more sophisticated based on your needs.
75+
if (targetSession.oResponse["Content-Type"].Contains("text/html") && responseCode == 0)
76+
{
77+
// If the response code is a redirect, ignore it so that we
78+
// get the "final" status code.
79+
if (targetSession.responseCode < 300 || targetSession.responseCode >= 400)
80+
{
81+
responseCode = targetSession.responseCode;
82+
}
83+
}
84+
};
85+
86+
FiddlerApplication.AfterSessionComplete += responseHandler;
87+
DateTime endTime = DateTime.Now.Add(timeout);
88+
element.Click();
89+
while (responseCode == 0 && DateTime.Now < endTime)
90+
{
91+
System.Threading.Thread.Sleep(100);
92+
}
93+
94+
FiddlerApplication.AfterSessionComplete -= responseHandler;
95+
return responseCode;
96+
}
97+
}
98+
}

HttpStatusCodeExample.csproj

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{D402B698-8404-48C6-8B63-05DBFC19128E}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>HttpStatusCodeExample</RootNamespace>
11+
<AssemblyName>HttpStatusCodeExample</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PlatformTarget>AnyCPU</PlatformTarget>
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<Optimize>false</Optimize>
20+
<OutputPath>bin\Debug\</OutputPath>
21+
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<PlatformTarget>AnyCPU</PlatformTarget>
27+
<DebugType>pdbonly</DebugType>
28+
<Optimize>true</Optimize>
29+
<OutputPath>bin\Release\</OutputPath>
30+
<DefineConstants>TRACE</DefineConstants>
31+
<ErrorReport>prompt</ErrorReport>
32+
<WarningLevel>4</WarningLevel>
33+
</PropertyGroup>
34+
<ItemGroup>
35+
<Reference Include="FiddlerCore4">
36+
<HintPath>lib\FiddlerCore4.dll</HintPath>
37+
</Reference>
38+
<Reference Include="System" />
39+
<Reference Include="System.Core" />
40+
<Reference Include="System.Xml.Linq" />
41+
<Reference Include="System.Data.DataSetExtensions" />
42+
<Reference Include="Microsoft.CSharp" />
43+
<Reference Include="System.Data" />
44+
<Reference Include="System.Xml" />
45+
<Reference Include="WebDriver">
46+
<HintPath>lib\WebDriver.dll</HintPath>
47+
</Reference>
48+
</ItemGroup>
49+
<ItemGroup>
50+
<Compile Include="BrowserKind.cs" />
51+
<Compile Include="WebDriverFactory.cs" />
52+
<Compile Include="Program.cs" />
53+
<Compile Include="Properties\AssemblyInfo.cs" />
54+
<Compile Include="ExtensionMethods.cs" />
55+
</ItemGroup>
56+
<ItemGroup>
57+
<None Include="App.config" />
58+
</ItemGroup>
59+
<ItemGroup>
60+
<Content Include="chromedriver.exe">
61+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
62+
</Content>
63+
<Content Include="IEDriverServer.exe">
64+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
65+
</Content>
66+
<Content Include="phantomjs.exe">
67+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
68+
</Content>
69+
</ItemGroup>
70+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
71+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
72+
Other similar extension points exist, see Microsoft.Common.targets.
73+
<Target Name="BeforeBuild">
74+
</Target>
75+
<Target Name="AfterBuild">
76+
</Target>
77+
-->
78+
</Project>

HttpStatusCodeExample.sln

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HttpStatusCodeExample", "HttpStatusCodeExample.csproj", "{D402B698-8404-48C6-8B63-05DBFC19128E}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{D402B698-8404-48C6-8B63-05DBFC19128E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{D402B698-8404-48C6-8B63-05DBFC19128E}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{D402B698-8404-48C6-8B63-05DBFC19128E}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{D402B698-8404-48C6-8B63-05DBFC19128E}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

IEDriverServer.exe

2.41 MB
Binary file not shown.

Program.cs

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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+
}

Properties/AssemblyInfo.cs

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("HttpStatusCodeExample")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("HttpStatusCodeExample")]
13+
[assembly: AssemblyCopyright("Copyright © 2013")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("1286a125-3b5e-4dbe-a47d-35b59eea6021")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]

0 commit comments

Comments
 (0)