Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Selenium.WebDriver.Linq.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 17.5.33516.290
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Selenium.WebDriver.Linq", "Selenium.WebDriver.Linq\Selenium.WebDriver.Linq.csproj", "{1FC487B0-B6EF-4AB4-95F5-E2F6B863E91E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestConsole", "TestConsole\TestConsole.csproj", "{3CD058F7-39A7-454D-AB12-F631802799E1}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example", "TestConsole\Example.csproj", "{3CD058F7-39A7-454D-AB12-F631802799E1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
6 changes: 3 additions & 3 deletions Selenium.WebDriver.Linq/Selenium.WebDriver.Linq.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>
<TargetFramework>netstandard2.0</TargetFramework>
Expand All @@ -12,9 +12,9 @@
<RepositoryUrl>https://github.com/techartdev/Selenium.WebDriver.Linq</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>selenium, webdriver, linq, extensions</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\Selenium.DomExtensions\README.md">
<Pack>True</Pack>
Expand Down
File renamed without changes.
4 changes: 1 addition & 3 deletions TestConsole/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using OpenQA.Selenium.Chrome;
using Selenium.WebDriver.Linq;

namespace TestConsole
namespace Example
{
class Program
{
Expand All @@ -17,8 +17,6 @@ static void Main(string[] args)
var test = elem.Children.First(w=> w.Id == "siteContent");

var cc = test.Children.ToList();


}
}
}