Skip to content

Update dependency to Selenium v4 alpha #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/PageObjects/SeleniumExtras.PageObjects.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;net40;net35;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<AssemblyName>SeleniumExtras.PageObjects</AssemblyName>
<RootNamespace>SeleniumExtras</RootNamespace>
<AssemblyVersion>3.11.0.0</AssemblyVersion>
<FileVersion>3.11.0.0</FileVersion>
<Version>3.11.0</Version>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion>
<Version>4.0.0-alpha04</Version>
<PackageId>DotNetSeleniumExtras.PageObjects</PackageId>
<Authors>DotNetSeleniumExtras Contributors</Authors>
<Description>This package provides an implementation of the PageFactory for .NET, replacing the implementation originally provided by the Selenium project.</Description>
<Copyright>Copyright 2018, Software Freedom Conservancy</Copyright>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Selenium.WebDriver" Version="3.10.0" />
<PackageReference Include="Selenium.WebDriver" Version="4.0.0-alpha04" />
</ItemGroup>

</Project>
12 changes: 6 additions & 6 deletions src/WaitHelpers/SeleniumExtras.WaitHelpers.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;net40;net35;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<AssemblyName>SeleniumExtras.WaitHelpers</AssemblyName>
<RootNamespace>SeleniumExtras</RootNamespace>
<PackageId>DotNetSeleniumExtras.WaitHelpers</PackageId>
<AssemblyVersion>3.11.0.0</AssemblyVersion>
<FileVersion>3.11.0.0</FileVersion>
<Version>3.11.0</Version>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion>
<Version>4.0.0-alpha04</Version>
<Description>This package provides an implementation of the ExpectedConditions class for use with WebDriverWait in .NET, replacing the implementation originally provided by the Selenium project.</Description>
<Copyright>Copyright 2018, Software Freedom Conservancy</Copyright>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Selenium.WebDriver" Version="3.10.0" />
<PackageReference Include="Selenium.WebDriver" Version="4.0.0-alpha04" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions test/Common/SeleniumExtras.Common.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;net40;net35;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<AssemblyName>SeleniumExtras.Common.Tests</AssemblyName>
<RootNamespace>SeleniumExtras</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="NUnit" Version="3.9.0" />
<PackageReference Include="Selenium.WebDriver" Version="3.10.0" />
<PackageReference Include="Selenium.WebDriver" Version="4.0.0-alpha04" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions test/PageObjects/SeleniumExtras.PageObjects.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;netcoreapp2.0</TargetFrameworks>
Expand All @@ -9,7 +9,6 @@
<PackageReference Include="Moq" Version="4.8.2" />
<PackageReference Include="NUnit" Version="3.9.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.9.0" />
<PackageReference Include="Selenium.WebDriver" Version="3.10.0" />
</ItemGroup>

<ItemGroup>
Expand Down