Pom
This commit is contained in:
		
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -18,6 +18,7 @@
 | 
			
		||||
    <PackageReference Include="coverlet.collector" Version="3.2.0" />
 | 
			
		||||
    <PackageReference Include="Selenium.Support" Version="4.11.0" />
 | 
			
		||||
    <PackageReference Include="Selenium.WebDriver" Version="4.11.0" />
 | 
			
		||||
    <PackageReference Include="WebDriverManager" Version="2.17.1" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
 
 | 
			
		||||
@@ -4,23 +4,30 @@ using System.Collections.Generic;
 | 
			
		||||
using System.Linq;
 | 
			
		||||
using System.Text;
 | 
			
		||||
using System.Threading.Tasks;
 | 
			
		||||
using SeleniumExtras.PageObjects;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
namespace NUnitPageObjectModel.Source.Pages
 | 
			
		||||
{
 | 
			
		||||
    public class HomePage
 | 
			
		||||
    {   
 | 
			
		||||
        private IWebDriver _driver;
 | 
			
		||||
        [FindsBy]
 | 
			
		||||
        [FindsBy(How = How.Id, Using = "twotabsearchtextbox")]
 | 
			
		||||
        private IWebElement _searchtextbox;
 | 
			
		||||
 | 
			
		||||
        [FindsBy(How = How.Id, Using = "nav-search-submit-button")]
 | 
			
		||||
        private IWebElement _searchbtn;
 | 
			
		||||
        public HomePage(IWebDriver driver)
 | 
			
		||||
            
 | 
			
		||||
        {
 | 
			
		||||
            _driver = driver;
 | 
			
		||||
            PageFactory.InitElements(driver, this);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        public void Search(string searchText) 
 | 
			
		||||
        {
 | 
			
		||||
            _driver.FindElement(By.Id("twoabsearchtextbox"));
 | 
			
		||||
            _searchtextbox.SendKeys(searchText);
 | 
			
		||||
            _searchbtn.Click();
 | 
			
		||||
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										42
									
								
								NUnitPageObjectModel/NUnitPageObjectModel/Tests/HomeTests.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										42
									
								
								NUnitPageObjectModel/NUnitPageObjectModel/Tests/HomeTests.cs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,42 @@
 | 
			
		||||
using OpenQA.Selenium;
 | 
			
		||||
using System;
 | 
			
		||||
using System.Collections.Generic;
 | 
			
		||||
using System.Linq;
 | 
			
		||||
using System.Text;
 | 
			
		||||
using System.Threading.Tasks;
 | 
			
		||||
using SeleniumExtras.PageObjects;
 | 
			
		||||
using NUnitPageObjectModel.Source.Pages;
 | 
			
		||||
using OpenQA.Selenium.Chrome;
 | 
			
		||||
using WebDriverManager;
 | 
			
		||||
using WebDriverManager.DriverConfigs.Impl;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
namespace NUnitPageObjectModel.Tests
 | 
			
		||||
{
 | 
			
		||||
    public class HomeTests
 | 
			
		||||
    {
 | 
			
		||||
        private IWebDriver _driver;
 | 
			
		||||
        [SetUp]
 | 
			
		||||
        public void InitScript()
 | 
			
		||||
        {
 | 
			
		||||
            new DriverManager().SetUpDriver(new ChromeConfig());
 | 
			
		||||
            _driver = new ChromeDriver();
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        [Test]
 | 
			
		||||
        public void SearchBook()
 | 
			
		||||
        {
 | 
			
		||||
            HomePage hp = new HomePage(_driver);
 | 
			
		||||
            _driver.Navigate().GoToUrl("http://amazon.com");
 | 
			
		||||
            hp.Search("webdriver book");
 | 
			
		||||
            Assert.True(_driver.Title.Contains("webdriver book"));
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        [TearDown]
 | 
			
		||||
        public void Cleanup()
 | 
			
		||||
        {
 | 
			
		||||
            _driver.Quit();
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -1,16 +0,0 @@
 | 
			
		||||
namespace NUnitPageObjectModel
 | 
			
		||||
{
 | 
			
		||||
    public class Tests
 | 
			
		||||
    {
 | 
			
		||||
        [SetUp]
 | 
			
		||||
        public void Setup()
 | 
			
		||||
        {
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        [Test]
 | 
			
		||||
        public void Test1()
 | 
			
		||||
        {
 | 
			
		||||
            Assert.Pass();
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -8,17 +8,43 @@
 | 
			
		||||
    ".NETCoreApp,Version=v7.0": {
 | 
			
		||||
      "NUnitPageObjectModel/1.0.0": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "DotNetSeleniumExtras.PageObjects.Core": "4.3.0",
 | 
			
		||||
          "Microsoft.NET.Test.Sdk": "17.6.0",
 | 
			
		||||
          "NUnit": "3.13.3",
 | 
			
		||||
          "NUnit.Analyzers": "3.6.1",
 | 
			
		||||
          "NUnit3TestAdapter": "4.4.2",
 | 
			
		||||
          "Selenium.Support": "4.11.0",
 | 
			
		||||
          "Selenium.WebDriver": "4.11.0",
 | 
			
		||||
          "WebDriverManager": "2.17.1",
 | 
			
		||||
          "coverlet.collector": "3.2.0"
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "NUnitPageObjectModel.dll": {}
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "AngleSharp/1.0.4": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "System.Text.Encoding.CodePages": "7.0.0"
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/net7.0/AngleSharp.dll": {
 | 
			
		||||
            "assemblyVersion": "1.0.4.0",
 | 
			
		||||
            "fileVersion": "1.0.4.0"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "coverlet.collector/3.2.0": {},
 | 
			
		||||
      "DotNetSeleniumExtras.PageObjects.Core/4.3.0": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "Selenium.WebDriver": "4.11.0"
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/net5.0/SeleniumExtras.PageObjects.dll": {
 | 
			
		||||
            "assemblyVersion": "4.3.0.0",
 | 
			
		||||
            "fileVersion": "4.3.0.0"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "Microsoft.CodeCoverage/17.6.0": {
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
 | 
			
		||||
@@ -33,7 +59,7 @@
 | 
			
		||||
          "Microsoft.TestPlatform.TestHost": "17.6.0"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "Microsoft.NETCore.Platforms/1.1.0": {},
 | 
			
		||||
      "Microsoft.NETCore.Platforms/5.0.0": {},
 | 
			
		||||
      "Microsoft.TestPlatform.ObjectModel/17.6.0": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "NuGet.Frameworks": "5.11.0",
 | 
			
		||||
@@ -281,9 +307,15 @@
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "Microsoft.Win32.Registry/5.0.0": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "System.Security.AccessControl": "5.0.0",
 | 
			
		||||
          "System.Security.Principal.Windows": "5.0.0"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "NETStandard.Library/2.0.0": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "Microsoft.NETCore.Platforms": "1.1.0"
 | 
			
		||||
          "Microsoft.NETCore.Platforms": "5.0.0"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "Newtonsoft.Json/13.0.1": {
 | 
			
		||||
@@ -315,7 +347,65 @@
 | 
			
		||||
      },
 | 
			
		||||
      "NUnit.Analyzers/3.6.1": {},
 | 
			
		||||
      "NUnit3TestAdapter/4.4.2": {},
 | 
			
		||||
      "System.Reflection.Metadata/1.6.0": {}
 | 
			
		||||
      "Selenium.Support/4.11.0": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "Selenium.WebDriver": "4.11.0"
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/net6.0/WebDriver.Support.dll": {
 | 
			
		||||
            "assemblyVersion": "4.0.0.0",
 | 
			
		||||
            "fileVersion": "4.0.0.0"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "Selenium.WebDriver/4.11.0": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "Newtonsoft.Json": "13.0.1"
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/net6.0/WebDriver.dll": {
 | 
			
		||||
            "assemblyVersion": "4.0.0.0",
 | 
			
		||||
            "fileVersion": "4.0.0.0"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "SharpZipLib/1.4.2": {
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
 | 
			
		||||
            "assemblyVersion": "1.4.2.13",
 | 
			
		||||
            "fileVersion": "1.4.2.13"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "System.Reflection.Metadata/1.6.0": {},
 | 
			
		||||
      "System.Security.AccessControl/5.0.0": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "Microsoft.NETCore.Platforms": "5.0.0",
 | 
			
		||||
          "System.Security.Principal.Windows": "5.0.0"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "System.Security.Principal.Windows/5.0.0": {},
 | 
			
		||||
      "System.Text.Encoding.CodePages/7.0.0": {},
 | 
			
		||||
      "System.Text.Encodings.Web/7.0.0": {},
 | 
			
		||||
      "System.Text.Json/7.0.3": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "System.Text.Encodings.Web": "7.0.0"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "WebDriverManager/2.17.1": {
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "AngleSharp": "1.0.4",
 | 
			
		||||
          "Microsoft.Win32.Registry": "5.0.0",
 | 
			
		||||
          "SharpZipLib": "1.4.2",
 | 
			
		||||
          "System.Text.Json": "7.0.3"
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/netstandard2.1/WebDriverManager.dll": {
 | 
			
		||||
            "assemblyVersion": "1.0.0.0",
 | 
			
		||||
            "fileVersion": "1.0.0.0"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  "libraries": {
 | 
			
		||||
@@ -324,6 +414,13 @@
 | 
			
		||||
      "serviceable": false,
 | 
			
		||||
      "sha512": ""
 | 
			
		||||
    },
 | 
			
		||||
    "AngleSharp/1.0.4": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-G8R4C2MEDFQvjUbYz1QIcGfibjsTJnzP0aWy8iQgWWk7eKacYydCNGD3JMhVL0Q5pZQ9RYlqpKNESEU5NpqsRw==",
 | 
			
		||||
      "path": "anglesharp/1.0.4",
 | 
			
		||||
      "hashPath": "anglesharp.1.0.4.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "coverlet.collector/3.2.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
@@ -331,6 +428,13 @@
 | 
			
		||||
      "path": "coverlet.collector/3.2.0",
 | 
			
		||||
      "hashPath": "coverlet.collector.3.2.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "DotNetSeleniumExtras.PageObjects.Core/4.3.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-ZqD0Rx5On7NvcwAQbnNnnUy1czifVYin17TN4jnWCIKkKofBJLMK0a0aR/uQ7sF9atUlOKHJRLjs6mZQ9shbTw==",
 | 
			
		||||
      "path": "dotnetseleniumextras.pageobjects.core/4.3.0",
 | 
			
		||||
      "hashPath": "dotnetseleniumextras.pageobjects.core.4.3.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "Microsoft.CodeCoverage/17.6.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
@@ -345,12 +449,12 @@
 | 
			
		||||
      "path": "microsoft.net.test.sdk/17.6.0",
 | 
			
		||||
      "hashPath": "microsoft.net.test.sdk.17.6.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "Microsoft.NETCore.Platforms/1.1.0": {
 | 
			
		||||
    "Microsoft.NETCore.Platforms/5.0.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
 | 
			
		||||
      "path": "microsoft.netcore.platforms/1.1.0",
 | 
			
		||||
      "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
 | 
			
		||||
      "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
 | 
			
		||||
      "path": "microsoft.netcore.platforms/5.0.0",
 | 
			
		||||
      "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "Microsoft.TestPlatform.ObjectModel/17.6.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
@@ -366,6 +470,13 @@
 | 
			
		||||
      "path": "microsoft.testplatform.testhost/17.6.0",
 | 
			
		||||
      "hashPath": "microsoft.testplatform.testhost.17.6.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "Microsoft.Win32.Registry/5.0.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
 | 
			
		||||
      "path": "microsoft.win32.registry/5.0.0",
 | 
			
		||||
      "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "NETStandard.Library/2.0.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
@@ -408,12 +519,75 @@
 | 
			
		||||
      "path": "nunit3testadapter/4.4.2",
 | 
			
		||||
      "hashPath": "nunit3testadapter.4.4.2.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "Selenium.Support/4.11.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-PR7ssrG9peQ5AqPSNvOJ846FFOX1wSv5eV3/8zvYwf0jhNx2bEprBZbtYMSWtht+HXtC5xb6atRQLlpKD+FETQ==",
 | 
			
		||||
      "path": "selenium.support/4.11.0",
 | 
			
		||||
      "hashPath": "selenium.support.4.11.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "Selenium.WebDriver/4.11.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-V8o+Nvi9/3Ix12ZzMGg+fI7sfu+HrflZkMGq8Orr+j0INbfpEEyM6KR9oaaHlm0WUXcn7dTYwyWrJxYsi6eniw==",
 | 
			
		||||
      "path": "selenium.webdriver/4.11.0",
 | 
			
		||||
      "hashPath": "selenium.webdriver.4.11.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "SharpZipLib/1.4.2": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-yjj+3zgz8zgXpiiC3ZdF/iyTBbz2fFvMxZFEBPUcwZjIvXOf37Ylm+K58hqMfIBt5JgU/Z2uoUS67JmTLe973A==",
 | 
			
		||||
      "path": "sharpziplib/1.4.2",
 | 
			
		||||
      "hashPath": "sharpziplib.1.4.2.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "System.Reflection.Metadata/1.6.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
 | 
			
		||||
      "path": "system.reflection.metadata/1.6.0",
 | 
			
		||||
      "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "System.Security.AccessControl/5.0.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
 | 
			
		||||
      "path": "system.security.accesscontrol/5.0.0",
 | 
			
		||||
      "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "System.Security.Principal.Windows/5.0.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
 | 
			
		||||
      "path": "system.security.principal.windows/5.0.0",
 | 
			
		||||
      "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "System.Text.Encoding.CodePages/7.0.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==",
 | 
			
		||||
      "path": "system.text.encoding.codepages/7.0.0",
 | 
			
		||||
      "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "System.Text.Encodings.Web/7.0.0": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
 | 
			
		||||
      "path": "system.text.encodings.web/7.0.0",
 | 
			
		||||
      "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "System.Text.Json/7.0.3": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-AyjhwXN1zTFeIibHimfJn6eAsZ7rTBib79JQpzg8WAuR/HKDu9JGNHTuu3nbbXQ/bgI+U4z6HtZmCHNXB1QXrQ==",
 | 
			
		||||
      "path": "system.text.json/7.0.3",
 | 
			
		||||
      "hashPath": "system.text.json.7.0.3.nupkg.sha512"
 | 
			
		||||
    },
 | 
			
		||||
    "WebDriverManager/2.17.1": {
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "serviceable": true,
 | 
			
		||||
      "sha512": "sha512-loeWTSHpyfWJgLO8+/W7KAh24ClhBTWkpHrnQyd2/KIflvrVzq7tF4OqPR0RIk5qhw8AoIq2xmHGPFjQLvfiBA==",
 | 
			
		||||
      "path": "webdrivermanager/2.17.1",
 | 
			
		||||
      "hashPath": "webdrivermanager.2.17.1.nupkg.sha512"
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1 +1 @@
 | 
			
		||||
1406923042
 | 
			
		||||
1079435842
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
 | 
			
		||||
build_property.EnforceExtendedAnalyzerRules = 
 | 
			
		||||
build_property._SupportedPlatformList = Linux,macOS,Windows
 | 
			
		||||
build_property.RootNamespace = NUnitPageObjectModel
 | 
			
		||||
build_property.ProjectDir = C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\
 | 
			
		||||
build_property.ProjectDir = c:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1 +1 @@
 | 
			
		||||
b66b84d600b90e8497c87b30a84f7b995a3d25dc
 | 
			
		||||
1b3113a6d23a761588f4819cb2a7571d5ee4b5a1
 | 
			
		||||
 
 | 
			
		||||
@@ -97,3 +97,12 @@ C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPage
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\obj\Debug\net7.0\NUnitPageObjectModel.pdb
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\obj\Debug\net7.0\NUnitPageObjectModel.genruntimeconfig.cache
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\obj\Debug\net7.0\ref\NUnitPageObjectModel.dll
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\bin\Debug\net7.0\selenium-manager\linux\selenium-manager
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\bin\Debug\net7.0\selenium-manager\macos\selenium-manager
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\bin\Debug\net7.0\selenium-manager\windows\selenium-manager.exe
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\bin\Debug\net7.0\AngleSharp.dll
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\bin\Debug\net7.0\SeleniumExtras.PageObjects.dll
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\bin\Debug\net7.0\WebDriver.Support.dll
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\bin\Debug\net7.0\WebDriver.dll
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\bin\Debug\net7.0\ICSharpCode.SharpZipLib.dll
 | 
			
		||||
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\NUnitPageObjectModel\NUnitPageObjectModel\bin\Debug\net7.0\WebDriverManager.dll
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							@@ -1 +1 @@
 | 
			
		||||
f97786ec9edaa1ad8387f2ecbaeecf0f747fd051
 | 
			
		||||
05aead23408d884b84cf581f14fd20bf8cc108f9
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1,17 +1,17 @@
 | 
			
		||||
{
 | 
			
		||||
  "format": 1,
 | 
			
		||||
  "restore": {
 | 
			
		||||
    "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\NUnitPageObjectModel.csproj": {}
 | 
			
		||||
    "c:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\NUnitPageObjectModel.csproj": {}
 | 
			
		||||
  },
 | 
			
		||||
  "projects": {
 | 
			
		||||
    "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\NUnitPageObjectModel.csproj": {
 | 
			
		||||
    "c:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\NUnitPageObjectModel.csproj": {
 | 
			
		||||
      "version": "1.0.0",
 | 
			
		||||
      "restore": {
 | 
			
		||||
        "projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\NUnitPageObjectModel.csproj",
 | 
			
		||||
        "projectUniqueName": "c:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\NUnitPageObjectModel.csproj",
 | 
			
		||||
        "projectName": "NUnitPageObjectModel",
 | 
			
		||||
        "projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\NUnitPageObjectModel.csproj",
 | 
			
		||||
        "projectPath": "c:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\NUnitPageObjectModel.csproj",
 | 
			
		||||
        "packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\",
 | 
			
		||||
        "outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\obj\\",
 | 
			
		||||
        "outputPath": "c:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\obj\\",
 | 
			
		||||
        "projectStyle": "PackageReference",
 | 
			
		||||
        "configFilePaths": [
 | 
			
		||||
          "C:\\Users\\lukas\\AppData\\Roaming\\NuGet\\NuGet.Config",
 | 
			
		||||
@@ -68,6 +68,10 @@
 | 
			
		||||
              "target": "Package",
 | 
			
		||||
              "version": "[4.11.0, )"
 | 
			
		||||
            },
 | 
			
		||||
            "WebDriverManager": {
 | 
			
		||||
              "target": "Package",
 | 
			
		||||
              "version": "[2.17.1, )"
 | 
			
		||||
            },
 | 
			
		||||
            "coverlet.collector": {
 | 
			
		||||
              "target": "Package",
 | 
			
		||||
              "version": "[3.2.0, )"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,7 @@
 | 
			
		||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
 | 
			
		||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
			
		||||
  <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
 | 
			
		||||
    <Import Project="$(NuGetPackageRoot)system.text.json\7.0.3\buildTransitive\net6.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\7.0.3\buildTransitive\net6.0\System.Text.Json.targets')" />
 | 
			
		||||
    <Import Project="$(NuGetPackageRoot)selenium.webdriver\4.11.0\buildTransitive\Selenium.WebDriver.targets" Condition="Exists('$(NuGetPackageRoot)selenium.webdriver\4.11.0\buildTransitive\Selenium.WebDriver.targets')" />
 | 
			
		||||
    <Import Project="$(NuGetPackageRoot)netstandard.library\2.0.0\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.0\build\netstandard2.0\NETStandard.Library.targets')" />
 | 
			
		||||
    <Import Project="$(NuGetPackageRoot)microsoft.codecoverage\17.6.0\build\netstandard2.0\Microsoft.CodeCoverage.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.codecoverage\17.6.0\build\netstandard2.0\Microsoft.CodeCoverage.targets')" />
 | 
			
		||||
 
 | 
			
		||||
@@ -2,6 +2,22 @@
 | 
			
		||||
  "version": 3,
 | 
			
		||||
  "targets": {
 | 
			
		||||
    "net7.0": {
 | 
			
		||||
      "AngleSharp/1.0.4": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "System.Text.Encoding.CodePages": "7.0.0"
 | 
			
		||||
        },
 | 
			
		||||
        "compile": {
 | 
			
		||||
          "lib/net7.0/AngleSharp.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/net7.0/AngleSharp.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "coverlet.collector/3.2.0": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "build": {
 | 
			
		||||
@@ -53,7 +69,7 @@
 | 
			
		||||
          "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "Microsoft.NETCore.Platforms/1.1.0": {
 | 
			
		||||
      "Microsoft.NETCore.Platforms/5.0.0": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "compile": {
 | 
			
		||||
          "lib/netstandard1.0/_._": {}
 | 
			
		||||
@@ -312,6 +328,29 @@
 | 
			
		||||
          "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {}
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "Microsoft.Win32.Registry/5.0.0": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "System.Security.AccessControl": "5.0.0",
 | 
			
		||||
          "System.Security.Principal.Windows": "5.0.0"
 | 
			
		||||
        },
 | 
			
		||||
        "compile": {
 | 
			
		||||
          "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtimeTargets": {
 | 
			
		||||
          "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
 | 
			
		||||
            "assetType": "runtime",
 | 
			
		||||
            "rid": "win"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "NETStandard.Library/2.0.0": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
@@ -408,6 +447,19 @@
 | 
			
		||||
          "buildTransitive/Selenium.WebDriver.targets": {}
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "SharpZipLib/1.4.2": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "compile": {
 | 
			
		||||
          "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
 | 
			
		||||
            "related": ".pdb;.xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
 | 
			
		||||
            "related": ".pdb;.xml"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "System.Reflection.Metadata/1.6.0": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "compile": {
 | 
			
		||||
@@ -420,10 +472,157 @@
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "System.Security.AccessControl/5.0.0": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "Microsoft.NETCore.Platforms": "5.0.0",
 | 
			
		||||
          "System.Security.Principal.Windows": "5.0.0"
 | 
			
		||||
        },
 | 
			
		||||
        "compile": {
 | 
			
		||||
          "ref/netstandard2.0/System.Security.AccessControl.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/netstandard2.0/System.Security.AccessControl.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtimeTargets": {
 | 
			
		||||
          "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
 | 
			
		||||
            "assetType": "runtime",
 | 
			
		||||
            "rid": "win"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "System.Security.Principal.Windows/5.0.0": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "compile": {
 | 
			
		||||
          "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtimeTargets": {
 | 
			
		||||
          "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
 | 
			
		||||
            "assetType": "runtime",
 | 
			
		||||
            "rid": "unix"
 | 
			
		||||
          },
 | 
			
		||||
          "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
 | 
			
		||||
            "assetType": "runtime",
 | 
			
		||||
            "rid": "win"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "System.Text.Encoding.CodePages/7.0.0": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "compile": {
 | 
			
		||||
          "lib/net7.0/System.Text.Encoding.CodePages.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/net7.0/System.Text.Encoding.CodePages.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "build": {
 | 
			
		||||
          "buildTransitive/net6.0/_._": {}
 | 
			
		||||
        },
 | 
			
		||||
        "runtimeTargets": {
 | 
			
		||||
          "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.dll": {
 | 
			
		||||
            "assetType": "runtime",
 | 
			
		||||
            "rid": "win"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "System.Text.Encodings.Web/7.0.0": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "compile": {
 | 
			
		||||
          "lib/net7.0/System.Text.Encodings.Web.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/net7.0/System.Text.Encodings.Web.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "build": {
 | 
			
		||||
          "buildTransitive/net6.0/_._": {}
 | 
			
		||||
        },
 | 
			
		||||
        "runtimeTargets": {
 | 
			
		||||
          "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": {
 | 
			
		||||
            "assetType": "runtime",
 | 
			
		||||
            "rid": "browser"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "System.Text.Json/7.0.3": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "System.Text.Encodings.Web": "7.0.0"
 | 
			
		||||
        },
 | 
			
		||||
        "compile": {
 | 
			
		||||
          "lib/net7.0/System.Text.Json.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/net7.0/System.Text.Json.dll": {
 | 
			
		||||
            "related": ".xml"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "build": {
 | 
			
		||||
          "buildTransitive/net6.0/System.Text.Json.targets": {}
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "WebDriverManager/2.17.1": {
 | 
			
		||||
        "type": "package",
 | 
			
		||||
        "dependencies": {
 | 
			
		||||
          "AngleSharp": "1.0.4",
 | 
			
		||||
          "Microsoft.Win32.Registry": "5.0.0",
 | 
			
		||||
          "SharpZipLib": "1.4.2",
 | 
			
		||||
          "System.Text.Json": "7.0.3"
 | 
			
		||||
        },
 | 
			
		||||
        "compile": {
 | 
			
		||||
          "lib/netstandard2.1/WebDriverManager.dll": {}
 | 
			
		||||
        },
 | 
			
		||||
        "runtime": {
 | 
			
		||||
          "lib/netstandard2.1/WebDriverManager.dll": {}
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  "libraries": {
 | 
			
		||||
    "AngleSharp/1.0.4": {
 | 
			
		||||
      "sha512": "G8R4C2MEDFQvjUbYz1QIcGfibjsTJnzP0aWy8iQgWWk7eKacYydCNGD3JMhVL0Q5pZQ9RYlqpKNESEU5NpqsRw==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "path": "anglesharp/1.0.4",
 | 
			
		||||
      "files": [
 | 
			
		||||
        ".nupkg.metadata",
 | 
			
		||||
        ".signature.p7s",
 | 
			
		||||
        "README.md",
 | 
			
		||||
        "anglesharp.1.0.4.nupkg.sha512",
 | 
			
		||||
        "anglesharp.nuspec",
 | 
			
		||||
        "lib/net461/AngleSharp.dll",
 | 
			
		||||
        "lib/net461/AngleSharp.xml",
 | 
			
		||||
        "lib/net472/AngleSharp.dll",
 | 
			
		||||
        "lib/net472/AngleSharp.xml",
 | 
			
		||||
        "lib/net6.0/AngleSharp.dll",
 | 
			
		||||
        "lib/net6.0/AngleSharp.xml",
 | 
			
		||||
        "lib/net7.0/AngleSharp.dll",
 | 
			
		||||
        "lib/net7.0/AngleSharp.xml",
 | 
			
		||||
        "lib/netstandard2.0/AngleSharp.dll",
 | 
			
		||||
        "lib/netstandard2.0/AngleSharp.xml",
 | 
			
		||||
        "logo.png"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "coverlet.collector/3.2.0": {
 | 
			
		||||
      "sha512": "xjY8xBigSeWIYs4I7DgUHqSNoGqnHi7Fv7/7RZD02rvZyG3hlsjnQKiVKVWKgr9kRKgmV+dEfu8KScvysiC0Wg==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
@@ -581,19 +780,22 @@
 | 
			
		||||
        "microsoft.net.test.sdk.nuspec"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "Microsoft.NETCore.Platforms/1.1.0": {
 | 
			
		||||
      "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
 | 
			
		||||
    "Microsoft.NETCore.Platforms/5.0.0": {
 | 
			
		||||
      "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "path": "microsoft.netcore.platforms/1.1.0",
 | 
			
		||||
      "path": "microsoft.netcore.platforms/5.0.0",
 | 
			
		||||
      "files": [
 | 
			
		||||
        ".nupkg.metadata",
 | 
			
		||||
        ".signature.p7s",
 | 
			
		||||
        "ThirdPartyNotices.txt",
 | 
			
		||||
        "dotnet_library_license.txt",
 | 
			
		||||
        "Icon.png",
 | 
			
		||||
        "LICENSE.TXT",
 | 
			
		||||
        "THIRD-PARTY-NOTICES.TXT",
 | 
			
		||||
        "lib/netstandard1.0/_._",
 | 
			
		||||
        "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
 | 
			
		||||
        "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
 | 
			
		||||
        "microsoft.netcore.platforms.nuspec",
 | 
			
		||||
        "runtime.json"
 | 
			
		||||
        "runtime.json",
 | 
			
		||||
        "useSharedDesignerContext.txt",
 | 
			
		||||
        "version.txt"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "Microsoft.TestPlatform.ObjectModel/17.6.0": {
 | 
			
		||||
@@ -766,6 +968,50 @@
 | 
			
		||||
        "microsoft.testplatform.testhost.nuspec"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "Microsoft.Win32.Registry/5.0.0": {
 | 
			
		||||
      "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "path": "microsoft.win32.registry/5.0.0",
 | 
			
		||||
      "files": [
 | 
			
		||||
        ".nupkg.metadata",
 | 
			
		||||
        ".signature.p7s",
 | 
			
		||||
        "Icon.png",
 | 
			
		||||
        "LICENSE.TXT",
 | 
			
		||||
        "THIRD-PARTY-NOTICES.TXT",
 | 
			
		||||
        "lib/net46/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "lib/net461/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "lib/net461/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "microsoft.win32.registry.5.0.0.nupkg.sha512",
 | 
			
		||||
        "microsoft.win32.registry.nuspec",
 | 
			
		||||
        "ref/net46/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "ref/net461/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "ref/net461/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
 | 
			
		||||
        "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
 | 
			
		||||
        "useSharedDesignerContext.txt",
 | 
			
		||||
        "version.txt"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "NETStandard.Library/2.0.0": {
 | 
			
		||||
      "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
@@ -1055,6 +1301,27 @@
 | 
			
		||||
        "selenium.webdriver.nuspec"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "SharpZipLib/1.4.2": {
 | 
			
		||||
      "sha512": "yjj+3zgz8zgXpiiC3ZdF/iyTBbz2fFvMxZFEBPUcwZjIvXOf37Ylm+K58hqMfIBt5JgU/Z2uoUS67JmTLe973A==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "path": "sharpziplib/1.4.2",
 | 
			
		||||
      "files": [
 | 
			
		||||
        ".nupkg.metadata",
 | 
			
		||||
        ".signature.p7s",
 | 
			
		||||
        "images/sharpziplib-nuget-256x256.png",
 | 
			
		||||
        "lib/net6.0/ICSharpCode.SharpZipLib.dll",
 | 
			
		||||
        "lib/net6.0/ICSharpCode.SharpZipLib.pdb",
 | 
			
		||||
        "lib/net6.0/ICSharpCode.SharpZipLib.xml",
 | 
			
		||||
        "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
 | 
			
		||||
        "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
 | 
			
		||||
        "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
 | 
			
		||||
        "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
 | 
			
		||||
        "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
 | 
			
		||||
        "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
 | 
			
		||||
        "sharpziplib.1.4.2.nupkg.sha512",
 | 
			
		||||
        "sharpziplib.nuspec"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "System.Reflection.Metadata/1.6.0": {
 | 
			
		||||
      "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
@@ -1075,6 +1342,262 @@
 | 
			
		||||
        "useSharedDesignerContext.txt",
 | 
			
		||||
        "version.txt"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "System.Security.AccessControl/5.0.0": {
 | 
			
		||||
      "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "path": "system.security.accesscontrol/5.0.0",
 | 
			
		||||
      "files": [
 | 
			
		||||
        ".nupkg.metadata",
 | 
			
		||||
        ".signature.p7s",
 | 
			
		||||
        "Icon.png",
 | 
			
		||||
        "LICENSE.TXT",
 | 
			
		||||
        "THIRD-PARTY-NOTICES.TXT",
 | 
			
		||||
        "lib/net46/System.Security.AccessControl.dll",
 | 
			
		||||
        "lib/net461/System.Security.AccessControl.dll",
 | 
			
		||||
        "lib/net461/System.Security.AccessControl.xml",
 | 
			
		||||
        "lib/netstandard1.3/System.Security.AccessControl.dll",
 | 
			
		||||
        "lib/netstandard2.0/System.Security.AccessControl.dll",
 | 
			
		||||
        "lib/netstandard2.0/System.Security.AccessControl.xml",
 | 
			
		||||
        "lib/uap10.0.16299/_._",
 | 
			
		||||
        "ref/net46/System.Security.AccessControl.dll",
 | 
			
		||||
        "ref/net461/System.Security.AccessControl.dll",
 | 
			
		||||
        "ref/net461/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard1.3/System.Security.AccessControl.dll",
 | 
			
		||||
        "ref/netstandard1.3/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard1.3/de/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard1.3/es/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard1.3/it/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/netstandard2.0/System.Security.AccessControl.dll",
 | 
			
		||||
        "ref/netstandard2.0/System.Security.AccessControl.xml",
 | 
			
		||||
        "ref/uap10.0.16299/_._",
 | 
			
		||||
        "runtimes/win/lib/net46/System.Security.AccessControl.dll",
 | 
			
		||||
        "runtimes/win/lib/net461/System.Security.AccessControl.dll",
 | 
			
		||||
        "runtimes/win/lib/net461/System.Security.AccessControl.xml",
 | 
			
		||||
        "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
 | 
			
		||||
        "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
 | 
			
		||||
        "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
 | 
			
		||||
        "runtimes/win/lib/uap10.0.16299/_._",
 | 
			
		||||
        "system.security.accesscontrol.5.0.0.nupkg.sha512",
 | 
			
		||||
        "system.security.accesscontrol.nuspec",
 | 
			
		||||
        "useSharedDesignerContext.txt",
 | 
			
		||||
        "version.txt"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "System.Security.Principal.Windows/5.0.0": {
 | 
			
		||||
      "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "path": "system.security.principal.windows/5.0.0",
 | 
			
		||||
      "files": [
 | 
			
		||||
        ".nupkg.metadata",
 | 
			
		||||
        ".signature.p7s",
 | 
			
		||||
        "Icon.png",
 | 
			
		||||
        "LICENSE.TXT",
 | 
			
		||||
        "THIRD-PARTY-NOTICES.TXT",
 | 
			
		||||
        "lib/net46/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "lib/net461/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "lib/net461/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "lib/netstandard1.3/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "lib/netstandard2.0/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "lib/netstandard2.0/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "lib/uap10.0.16299/_._",
 | 
			
		||||
        "ref/net46/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "ref/net461/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "ref/net461/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard1.3/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "ref/netstandard1.3/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/netstandard2.0/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "ref/netstandard2.0/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "ref/uap10.0.16299/_._",
 | 
			
		||||
        "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
 | 
			
		||||
        "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
 | 
			
		||||
        "runtimes/win/lib/uap10.0.16299/_._",
 | 
			
		||||
        "system.security.principal.windows.5.0.0.nupkg.sha512",
 | 
			
		||||
        "system.security.principal.windows.nuspec",
 | 
			
		||||
        "useSharedDesignerContext.txt",
 | 
			
		||||
        "version.txt"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "System.Text.Encoding.CodePages/7.0.0": {
 | 
			
		||||
      "sha512": "LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "path": "system.text.encoding.codepages/7.0.0",
 | 
			
		||||
      "files": [
 | 
			
		||||
        ".nupkg.metadata",
 | 
			
		||||
        ".signature.p7s",
 | 
			
		||||
        "Icon.png",
 | 
			
		||||
        "LICENSE.TXT",
 | 
			
		||||
        "THIRD-PARTY-NOTICES.TXT",
 | 
			
		||||
        "buildTransitive/net461/System.Text.Encoding.CodePages.targets",
 | 
			
		||||
        "buildTransitive/net462/_._",
 | 
			
		||||
        "buildTransitive/net6.0/_._",
 | 
			
		||||
        "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
 | 
			
		||||
        "lib/MonoAndroid10/_._",
 | 
			
		||||
        "lib/MonoTouch10/_._",
 | 
			
		||||
        "lib/net462/System.Text.Encoding.CodePages.dll",
 | 
			
		||||
        "lib/net462/System.Text.Encoding.CodePages.xml",
 | 
			
		||||
        "lib/net6.0/System.Text.Encoding.CodePages.dll",
 | 
			
		||||
        "lib/net6.0/System.Text.Encoding.CodePages.xml",
 | 
			
		||||
        "lib/net7.0/System.Text.Encoding.CodePages.dll",
 | 
			
		||||
        "lib/net7.0/System.Text.Encoding.CodePages.xml",
 | 
			
		||||
        "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
 | 
			
		||||
        "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
 | 
			
		||||
        "lib/xamarinios10/_._",
 | 
			
		||||
        "lib/xamarinmac20/_._",
 | 
			
		||||
        "lib/xamarintvos10/_._",
 | 
			
		||||
        "lib/xamarinwatchos10/_._",
 | 
			
		||||
        "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
 | 
			
		||||
        "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
 | 
			
		||||
        "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.dll",
 | 
			
		||||
        "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.xml",
 | 
			
		||||
        "system.text.encoding.codepages.7.0.0.nupkg.sha512",
 | 
			
		||||
        "system.text.encoding.codepages.nuspec",
 | 
			
		||||
        "useSharedDesignerContext.txt"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "System.Text.Encodings.Web/7.0.0": {
 | 
			
		||||
      "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "path": "system.text.encodings.web/7.0.0",
 | 
			
		||||
      "files": [
 | 
			
		||||
        ".nupkg.metadata",
 | 
			
		||||
        ".signature.p7s",
 | 
			
		||||
        "Icon.png",
 | 
			
		||||
        "LICENSE.TXT",
 | 
			
		||||
        "THIRD-PARTY-NOTICES.TXT",
 | 
			
		||||
        "buildTransitive/net461/System.Text.Encodings.Web.targets",
 | 
			
		||||
        "buildTransitive/net462/_._",
 | 
			
		||||
        "buildTransitive/net6.0/_._",
 | 
			
		||||
        "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
 | 
			
		||||
        "lib/net462/System.Text.Encodings.Web.dll",
 | 
			
		||||
        "lib/net462/System.Text.Encodings.Web.xml",
 | 
			
		||||
        "lib/net6.0/System.Text.Encodings.Web.dll",
 | 
			
		||||
        "lib/net6.0/System.Text.Encodings.Web.xml",
 | 
			
		||||
        "lib/net7.0/System.Text.Encodings.Web.dll",
 | 
			
		||||
        "lib/net7.0/System.Text.Encodings.Web.xml",
 | 
			
		||||
        "lib/netstandard2.0/System.Text.Encodings.Web.dll",
 | 
			
		||||
        "lib/netstandard2.0/System.Text.Encodings.Web.xml",
 | 
			
		||||
        "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
 | 
			
		||||
        "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
 | 
			
		||||
        "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
 | 
			
		||||
        "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
 | 
			
		||||
        "system.text.encodings.web.7.0.0.nupkg.sha512",
 | 
			
		||||
        "system.text.encodings.web.nuspec",
 | 
			
		||||
        "useSharedDesignerContext.txt"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "System.Text.Json/7.0.3": {
 | 
			
		||||
      "sha512": "AyjhwXN1zTFeIibHimfJn6eAsZ7rTBib79JQpzg8WAuR/HKDu9JGNHTuu3nbbXQ/bgI+U4z6HtZmCHNXB1QXrQ==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "path": "system.text.json/7.0.3",
 | 
			
		||||
      "files": [
 | 
			
		||||
        ".nupkg.metadata",
 | 
			
		||||
        ".signature.p7s",
 | 
			
		||||
        "Icon.png",
 | 
			
		||||
        "LICENSE.TXT",
 | 
			
		||||
        "README.md",
 | 
			
		||||
        "THIRD-PARTY-NOTICES.TXT",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
 | 
			
		||||
        "buildTransitive/net461/System.Text.Json.targets",
 | 
			
		||||
        "buildTransitive/net462/System.Text.Json.targets",
 | 
			
		||||
        "buildTransitive/net6.0/System.Text.Json.targets",
 | 
			
		||||
        "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
 | 
			
		||||
        "buildTransitive/netstandard2.0/System.Text.Json.targets",
 | 
			
		||||
        "lib/net462/System.Text.Json.dll",
 | 
			
		||||
        "lib/net462/System.Text.Json.xml",
 | 
			
		||||
        "lib/net6.0/System.Text.Json.dll",
 | 
			
		||||
        "lib/net6.0/System.Text.Json.xml",
 | 
			
		||||
        "lib/net7.0/System.Text.Json.dll",
 | 
			
		||||
        "lib/net7.0/System.Text.Json.xml",
 | 
			
		||||
        "lib/netstandard2.0/System.Text.Json.dll",
 | 
			
		||||
        "lib/netstandard2.0/System.Text.Json.xml",
 | 
			
		||||
        "system.text.json.7.0.3.nupkg.sha512",
 | 
			
		||||
        "system.text.json.nuspec",
 | 
			
		||||
        "useSharedDesignerContext.txt"
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
    "WebDriverManager/2.17.1": {
 | 
			
		||||
      "sha512": "loeWTSHpyfWJgLO8+/W7KAh24ClhBTWkpHrnQyd2/KIflvrVzq7tF4OqPR0RIk5qhw8AoIq2xmHGPFjQLvfiBA==",
 | 
			
		||||
      "type": "package",
 | 
			
		||||
      "path": "webdrivermanager/2.17.1",
 | 
			
		||||
      "files": [
 | 
			
		||||
        ".nupkg.metadata",
 | 
			
		||||
        ".signature.p7s",
 | 
			
		||||
        "README.md",
 | 
			
		||||
        "lib/net462/WebDriverManager.dll",
 | 
			
		||||
        "lib/netstandard2.0/WebDriverManager.dll",
 | 
			
		||||
        "lib/netstandard2.1/WebDriverManager.dll",
 | 
			
		||||
        "webdrivermanager.2.17.1.nupkg.sha512",
 | 
			
		||||
        "webdrivermanager.nuspec"
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  "projectFileDependencyGroups": {
 | 
			
		||||
@@ -1086,6 +1609,7 @@
 | 
			
		||||
      "NUnit3TestAdapter >= 4.4.2",
 | 
			
		||||
      "Selenium.Support >= 4.11.0",
 | 
			
		||||
      "Selenium.WebDriver >= 4.11.0",
 | 
			
		||||
      "WebDriverManager >= 2.17.1",
 | 
			
		||||
      "coverlet.collector >= 3.2.0"
 | 
			
		||||
    ]
 | 
			
		||||
  },
 | 
			
		||||
@@ -1156,6 +1680,10 @@
 | 
			
		||||
            "target": "Package",
 | 
			
		||||
            "version": "[4.11.0, )"
 | 
			
		||||
          },
 | 
			
		||||
          "WebDriverManager": {
 | 
			
		||||
            "target": "Package",
 | 
			
		||||
            "version": "[2.17.1, )"
 | 
			
		||||
          },
 | 
			
		||||
          "coverlet.collector": {
 | 
			
		||||
            "target": "Package",
 | 
			
		||||
            "version": "[3.2.0, )"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,16 +1,18 @@
 | 
			
		||||
{
 | 
			
		||||
  "version": 2,
 | 
			
		||||
  "dgSpecHash": "P4pytMbX75gD5U2BBp8F8hvq8eJRva4Ei7yEW7XMllYqtOX7sLuHV5v7XB/sNVVN7AqE7MNVSVnXvgx61bKJCA==",
 | 
			
		||||
  "dgSpecHash": "cO+pZGK5C4Naa7VZQC3R/vY1Y8X5feo+54Z1oluPqoeX+64q2jwZEPF4Nkj9Z7r5MuvOn0ELVICGtPhWoOwvHA==",
 | 
			
		||||
  "success": true,
 | 
			
		||||
  "projectFilePath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\NUnitPageObjectModel.csproj",
 | 
			
		||||
  "projectFilePath": "c:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\NUnitPageObjectModel\\NUnitPageObjectModel\\NUnitPageObjectModel.csproj",
 | 
			
		||||
  "expectedPackageFiles": [
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\anglesharp\\1.0.4\\anglesharp.1.0.4.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\coverlet.collector\\3.2.0\\coverlet.collector.3.2.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\dotnetseleniumextras.pageobjects.core\\4.3.0\\dotnetseleniumextras.pageobjects.core.4.3.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\microsoft.codecoverage\\17.6.0\\microsoft.codecoverage.17.6.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\microsoft.net.test.sdk\\17.6.0\\microsoft.net.test.sdk.17.6.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.6.0\\microsoft.testplatform.objectmodel.17.6.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\microsoft.testplatform.testhost\\17.6.0\\microsoft.testplatform.testhost.17.6.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\netstandard.library\\2.0.0\\netstandard.library.2.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\nuget.frameworks\\5.11.0\\nuget.frameworks.5.11.0.nupkg.sha512",
 | 
			
		||||
@@ -19,7 +21,14 @@
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\nunit3testadapter\\4.4.2\\nunit3testadapter.4.4.2.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\selenium.support\\4.11.0\\selenium.support.4.11.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\selenium.webdriver\\4.11.0\\selenium.webdriver.4.11.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512"
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\sharpziplib\\1.4.2\\sharpziplib.1.4.2.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\system.text.encoding.codepages\\7.0.0\\system.text.encoding.codepages.7.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\system.text.json\\7.0.3\\system.text.json.7.0.3.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\lukas\\.nuget\\packages\\webdrivermanager\\2.17.1\\webdrivermanager.2.17.1.nupkg.sha512"
 | 
			
		||||
  ],
 | 
			
		||||
  "logs": []
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user