Skip to content

Commit 74fb803

Browse files
committed
Moving WebDriverWait into main WebDriver.dll assembly
This clears the way for having fully functional WebDriver tests in .NET Core without having to fully port the entire support assembly.
1 parent 5638427 commit 74fb803

File tree

7 files changed

+5
-5
lines changed

7 files changed

+5
-5
lines changed

dotnet/src/support/WebDriver.Support.csproj

-5
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,14 @@
7272
<Compile Include="PageObjects\WebElementListProxy.cs" />
7373
<Compile Include="PageObjects\WebElementProxy.cs" />
7474
<Compile Include="Properties\AssemblyInfo.cs" />
75-
<Compile Include="UI\DefaultWait{T}.cs" />
7675
<Compile Include="UI\ExpectedConditions.cs" />
77-
<Compile Include="UI\IClock.cs" />
7876
<Compile Include="UI\ILoadableComponent.cs" />
79-
<Compile Include="UI\IWait{T}.cs" />
8077
<Compile Include="UI\LoadableComponentException.cs" />
8178
<Compile Include="UI\LoadableComponent{T}.cs" />
8279
<Compile Include="UI\PopupWindowFinder.cs" />
8380
<Compile Include="UI\SelectElement.cs" />
8481
<Compile Include="UI\SlowLoadableComponent{T}.cs" />
85-
<Compile Include="UI\SystemClock.cs" />
8682
<Compile Include="UI\UnexpectedTagNameException.cs" />
87-
<Compile Include="UI\WebDriverWait.cs" />
8883
</ItemGroup>
8984
<ItemGroup>
9085
<Analyzer Include="..\..\..\third_party\dotnet\stylecop\StyleCop.Analyzers.1.0.2\analyzers\dotnet\cs\StyleCop.Analyzers.CodeFixes.dll" />

dotnet/src/webdriver/WebDriver.csproj

+5
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,11 @@
249249
<Compile Include="ScreenOrientation.cs" />
250250
<Compile Include="Screenshot.cs" />
251251
<Compile Include="StaleElementReferenceException.cs" />
252+
<Compile Include="Support\DefaultWait{T}.cs" />
253+
<Compile Include="Support\IClock.cs" />
254+
<Compile Include="Support\IWait{T}.cs" />
255+
<Compile Include="Support\SystemClock.cs" />
256+
<Compile Include="Support\WebDriverWait.cs" />
252257
<Compile Include="UnableToSetCookieException.cs" />
253258
<Compile Include="UnhandledAlertException.cs" />
254259
<Compile Include="WebDriverException.cs" />

0 commit comments

Comments
 (0)