Skip to content

Commit d156d51

Browse files
authored
Merge pull request #2 from techartdev/develop
Develop
2 parents 78d6b25 + fbae419 commit d156d51

4 files changed

Lines changed: 5 additions & 7 deletions

File tree

Selenium.WebDriver.Linq.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VisualStudioVersion = 17.5.33516.290
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Selenium.WebDriver.Linq", "Selenium.WebDriver.Linq\Selenium.WebDriver.Linq.csproj", "{1FC487B0-B6EF-4AB4-95F5-E2F6B863E91E}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestConsole", "TestConsole\TestConsole.csproj", "{3CD058F7-39A7-454D-AB12-F631802799E1}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example", "TestConsole\Example.csproj", "{3CD058F7-39A7-454D-AB12-F631802799E1}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution

Selenium.WebDriver.Linq/Selenium.WebDriver.Linq.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
@@ -12,9 +12,9 @@
1212
<RepositoryUrl>https://github.com/techartdev/Selenium.WebDriver.Linq</RepositoryUrl>
1313
<RepositoryType>git</RepositoryType>
1414
<PackageTags>selenium, webdriver, linq, extensions</PackageTags>
15-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1616
</PropertyGroup>
17-
17+
1818
<ItemGroup>
1919
<None Include="..\..\Selenium.DomExtensions\README.md">
2020
<Pack>True</Pack>

TestConsole/Program.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using OpenQA.Selenium.Chrome;
33
using Selenium.WebDriver.Linq;
44

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

1919
var cc = test.Children.ToList();
20-
21-
2220
}
2321
}
2422
}

0 commit comments

Comments
 (0)