This commit is contained in:
Lukáš Kaňka
2023-08-22 20:28:19 +02:00
commit 14d46cad1c
2236 changed files with 74214 additions and 0 deletions

View File

@ -0,0 +1,70 @@
using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
using System;
using NUnit.Framework;
using System.Threading;
namespace Search_Google;
public class Tests
{
IWebDriver driver = new ChromeDriver();
[SetUp]
public void Setup()
{
driver.Navigate()
.GoToUrl("https://www.google.com");
//Maximize the browser window
driver.Manage().Window.Maximize();
}
[Test]
public void Test1()
{
driver.Navigate().GoToUrl("https://www.google.com");
// odmitne cookie
IWebElement odmitnout = driver.FindElement(By.Id("W0wltc"));
odmitnout.Click();
//zkontroluje nadpis webu
string actualTitle = driver.Title;
string expectedTitle = "Google";
Assert.AreEqual(expectedTitle, actualTitle);
// klikne na test a do vyhledávacího pole zadá test
IWebElement searchBox = driver.FindElement(By.Name("q"));
searchBox.SendKeys("test");
searchBox.Submit();
Thread.Sleep(3000);
/* // klikne na rychlé nastavení
IWebElement nastaveni = driver.FindElement(By.Path(""));
nastaveni.Click();
*/
IWebElement zpet = driver.FindElement(By.Id("logo"));
zpet.Click();
//Zápis do console
Console.Write("Test na vložení slova test do vyhledávacího pole na stránkách google.com");
Thread.Sleep(2000);
}
[TearDown]
public void EndTest()
{
//close the browser
driver.Close();
}
}

View File

@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1" />
<PackageReference Include="NUnit.Analyzers" Version="3.3.0" />
<PackageReference Include="coverlet.collector" Version="3.1.2" />
<PackageReference Include="Selenium.WebDriver" Version="4.8.0" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,82 @@
<html xmlns:tp="http://schemas.datacontract.org/2004/07/Microsoft.VisualStudio.TestPlatform.Extensions.HtmlLogger.ObjectModel" xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<body>
<h1>Test run details</h1>
<div class="summary">
<div class="block"><span>Total tests</span><div class="total-tests">1</div><br></div>
<div class="block"><span>Passed  : </span><span class="passedTests">1</span><br><span>Failed  : </span><span class="failedTests">0</span><br><span>Skipped : </span><span class="skippedTests">0</span><br></div>
<div class="block"><span>Pass percentage</span><div class="pass-percentage">100 %</div><br></div>
<div class="block"><span>Run duration</span><div class="test-run-time">1s 126ms</div><br></div><br></div>
<h2>All Results</h2>
<div class="list-row" onclick="ToggleClass('1313700404')">/home/kankys/dev/Testing_Ubuntu/Nunit/Google_Search/bin/Debug/net7.0/Google_Search.dll</div>
<div class="inner-row" Id="1313700404" style="display:none;">
<div class="leaf-division">
<div><span class="pass"></span><span> Test1</span><div class="duration"><span>36ms</span><br></div>
</div>
<div class="error-info"></div>
</div>
</div>
<div>
<h2>Informational messages</h2><span>NUnit Adapter 4.3.1.0: Test execution started</span><br><span>Running all tests in /home/kankys/dev/Testing_Ubuntu/Nunit/Google_Search/bin/Debug/net7.0/Google_Search.dll</span><br><span> NUnit3TestExecutor discovered 1 of 1 NUnit test cases using Current Discovery mode, Non-Explicit run</span><br><span>NUnit Adapter 4.3.1.0: Test execution complete</span><br></div>
</body><script language="javascript">
function ToggleClass(id) {
var elem = document.getElementById(id);
if (elem.style.display == "none") {
elem.style.display = "block";
}
else {
elem.style.display = "none";
}
}
</script><style>
body { font-family: Calibri, Verdana, Arial, sans-serif; background-color: White; color: Black; }
h2 {
margin-top: 15px;
margin-bottom:10px;
}
pre {
white-space: pre-wrap;
}
.summary {font-family:monospace;
display: -webkit-flex; /* Safari */
-webkit-flex-wrap: wrap; /* Safari 6.1+ */
display: flex;
flex-wrap: wrap;
}
.row {
border: 2px solid #ffffff;
width:100%;
cursor:pointer;
background-color:#d7e9fa;
}
.list-row {
border: 2px solid #ffffff;
width:100%;
cursor:pointer;
background-color:#ffffff;
}
.inner-row{
border: 2px solid #ffffff;
padding-left:1%;
margin-left:1%;
background-color:#ffffff;
}
.block{
width : 150px;
}
.leaf-division{
border: 2px solid #ffffff;
background-color:#e6eff7;
}
.pass { color: #0c0; }
.fail { color: #c00; }
.error-message { color : brown; }
.error-stack-trace { color: brown; }
.duration {float:right;padding-right:1%;}
.total-tests { font-size : 30px}
.test-run-time { font-size : 30px}
.pass-percentage { font-size : 30px}
.error-info{
margin-left:16px;
}
</style>
</html>

View File

@ -0,0 +1,82 @@
<html xmlns:tp="http://schemas.datacontract.org/2004/07/Microsoft.VisualStudio.TestPlatform.Extensions.HtmlLogger.ObjectModel" xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<body>
<h1>Test run details</h1>
<div class="summary">
<div class="block"><span>Total tests</span><div class="total-tests">1</div><br></div>
<div class="block"><span>Passed  : </span><span class="passedTests">1</span><br><span>Failed  : </span><span class="failedTests">0</span><br><span>Skipped : </span><span class="skippedTests">0</span><br></div>
<div class="block"><span>Pass percentage</span><div class="pass-percentage">100 %</div><br></div>
<div class="block"><span>Run duration</span><div class="test-run-time">1s 93ms</div><br></div><br></div>
<h2>All Results</h2>
<div class="list-row" onclick="ToggleClass('1025737603')">/home/kankys/dev/Testing_Ubuntu/Nunit/Google_Search/bin/Debug/net7.0/Google_Search.dll</div>
<div class="inner-row" Id="1025737603" style="display:none;">
<div class="leaf-division">
<div><span class="pass"></span><span> Test1</span><div class="duration"><span>28ms</span><br></div>
</div>
<div class="error-info"></div>
</div>
</div>
<div>
<h2>Informational messages</h2><span>NUnit Adapter 4.3.1.0: Test execution started</span><br><span>Running all tests in /home/kankys/dev/Testing_Ubuntu/Nunit/Google_Search/bin/Debug/net7.0/Google_Search.dll</span><br><span> NUnit3TestExecutor discovered 1 of 1 NUnit test cases using Current Discovery mode, Non-Explicit run</span><br><span>NUnit Adapter 4.3.1.0: Test execution complete</span><br></div>
</body><script language="javascript">
function ToggleClass(id) {
var elem = document.getElementById(id);
if (elem.style.display == "none") {
elem.style.display = "block";
}
else {
elem.style.display = "none";
}
}
</script><style>
body { font-family: Calibri, Verdana, Arial, sans-serif; background-color: White; color: Black; }
h2 {
margin-top: 15px;
margin-bottom:10px;
}
pre {
white-space: pre-wrap;
}
.summary {font-family:monospace;
display: -webkit-flex; /* Safari */
-webkit-flex-wrap: wrap; /* Safari 6.1+ */
display: flex;
flex-wrap: wrap;
}
.row {
border: 2px solid #ffffff;
width:100%;
cursor:pointer;
background-color:#d7e9fa;
}
.list-row {
border: 2px solid #ffffff;
width:100%;
cursor:pointer;
background-color:#ffffff;
}
.inner-row{
border: 2px solid #ffffff;
padding-left:1%;
margin-left:1%;
background-color:#ffffff;
}
.block{
width : 150px;
}
.leaf-division{
border: 2px solid #ffffff;
background-color:#e6eff7;
}
.pass { color: #0c0; }
.fail { color: #c00; }
.error-message { color : brown; }
.error-stack-trace { color: brown; }
.duration {float:right;padding-right:1%;}
.total-tests { font-size : 30px}
.test-run-time { font-size : 30px}
.pass-percentage { font-size : 30px}
.error-info{
margin-left:16px;
}
</style>
</html>

View File

@ -0,0 +1,84 @@
<html xmlns:tp="http://schemas.datacontract.org/2004/07/Microsoft.VisualStudio.TestPlatform.Extensions.HtmlLogger.ObjectModel" xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<body>
<h1>Test run details</h1>
<div class="summary">
<div class="block"><span>Total tests</span><div class="total-tests">1</div><br></div>
<div class="block"><span>Passed  : </span><span class="passedTests">1</span><br><span>Failed  : </span><span class="failedTests">0</span><br><span>Skipped : </span><span class="skippedTests">0</span><br></div>
<div class="block"><span>Pass percentage</span><div class="pass-percentage">100 %</div><br></div>
<div class="block"><span>Run duration</span><div class="test-run-time">12s 596ms</div><br></div><br></div>
<h2>All Results</h2>
<div class="list-row" onclick="ToggleClass('-1113150363')">/home/kankys/dev/Testing_Ubuntu/Nunit/Google_Search/bin/Debug/net7.0/Google_Search.dll</div>
<div class="inner-row" Id="-1113150363" style="display:none;">
<div class="leaf-division">
<div><span class="pass"></span><span> Test1</span><div class="duration"><span>9s 452ms</span><br></div>
</div>
<div class="error-info"></div>
</div>
</div>
<div>
<h2>Informational messages</h2><span>NUnit Adapter 4.3.1.0: Test execution started</span><br><span>Running all tests in /home/kankys/dev/Testing_Ubuntu/Nunit/Google_Search/bin/Debug/net7.0/Google_Search.dll</span><br><span> NUnit3TestExecutor discovered 1 of 1 NUnit test cases using Current Discovery mode, Non-Explicit run</span><br><span>NUnit Adapter 4.3.1.0: Test execution complete</span><br></div>
<div>
<h2>Error and Warning messages</h2><span>Test na vložení slova test do vyhledávacího pole na stránkách google.com</span><br></div>
</body><script language="javascript">
function ToggleClass(id) {
var elem = document.getElementById(id);
if (elem.style.display == "none") {
elem.style.display = "block";
}
else {
elem.style.display = "none";
}
}
</script><style>
body { font-family: Calibri, Verdana, Arial, sans-serif; background-color: White; color: Black; }
h2 {
margin-top: 15px;
margin-bottom:10px;
}
pre {
white-space: pre-wrap;
}
.summary {font-family:monospace;
display: -webkit-flex; /* Safari */
-webkit-flex-wrap: wrap; /* Safari 6.1+ */
display: flex;
flex-wrap: wrap;
}
.row {
border: 2px solid #ffffff;
width:100%;
cursor:pointer;
background-color:#d7e9fa;
}
.list-row {
border: 2px solid #ffffff;
width:100%;
cursor:pointer;
background-color:#ffffff;
}
.inner-row{
border: 2px solid #ffffff;
padding-left:1%;
margin-left:1%;
background-color:#ffffff;
}
.block{
width : 150px;
}
.leaf-division{
border: 2px solid #ffffff;
background-color:#e6eff7;
}
.pass { color: #0c0; }
.fail { color: #c00; }
.error-message { color : brown; }
.error-stack-trace { color: brown; }
.duration {float:right;padding-right:1%;}
.total-tests { font-size : 30px}
.test-run-time { font-size : 30px}
.pass-percentage { font-size : 30px}
.error-info{
margin-left:16px;
}
</style>
</html>

View File

@ -0,0 +1 @@
global using NUnit.Framework;

View File

@ -0,0 +1,438 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v7.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
"Google_Search/1.0.0": {
"dependencies": {
"Microsoft.NET.Test.Sdk": "17.3.2",
"NUnit": "3.13.3",
"NUnit.Analyzers": "3.3.0",
"NUnit3TestAdapter": "4.3.1",
"Selenium.WebDriver": "4.8.0",
"coverlet.collector": "3.1.2"
},
"runtime": {
"Google_Search.dll": {}
}
},
"coverlet.collector/3.1.2": {},
"Microsoft.CodeCoverage/17.3.2": {
"runtime": {
"lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "17.300.622.32707"
}
}
},
"Microsoft.NET.Test.Sdk/17.3.2": {
"dependencies": {
"Microsoft.CodeCoverage": "17.3.2",
"Microsoft.TestPlatform.TestHost": "17.3.2"
}
},
"Microsoft.NETCore.Platforms/1.1.0": {},
"Microsoft.TestPlatform.ObjectModel/17.3.2": {
"dependencies": {
"NuGet.Frameworks": "5.11.0",
"System.Reflection.Metadata": "1.6.0"
},
"runtime": {
"lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "15.0.0.0"
},
"lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "15.0.0.0"
},
"lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "15.0.0.0"
}
},
"resources": {
"lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "cs"
},
"lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "cs"
},
"lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "de"
},
"lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "de"
},
"lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "es"
},
"lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "es"
},
"lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "fr"
},
"lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "fr"
},
"lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "it"
},
"lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "it"
},
"lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "ja"
},
"lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "ja"
},
"lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "ko"
},
"lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "ko"
},
"lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "pl"
},
"lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "pl"
},
"lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "pt-BR"
},
"lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "pt-BR"
},
"lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "ru"
},
"lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "ru"
},
"lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "tr"
},
"lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "tr"
},
"lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "zh-Hans"
},
"lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "zh-Hans"
},
"lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
"locale": "zh-Hant"
},
"lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
"locale": "zh-Hant"
}
}
},
"Microsoft.TestPlatform.TestHost/17.3.2": {
"dependencies": {
"Microsoft.TestPlatform.ObjectModel": "17.3.2",
"Newtonsoft.Json": "13.0.1"
},
"runtime": {
"lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "15.0.0.0"
},
"lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "15.0.0.0"
},
"lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "15.0.0.0"
},
"lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "15.0.0.0"
},
"lib/netcoreapp2.1/testhost.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "15.0.0.0"
}
},
"resources": {
"lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "cs"
},
"lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "cs"
},
"lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "cs"
},
"lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "de"
},
"lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "de"
},
"lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "de"
},
"lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "es"
},
"lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "es"
},
"lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "es"
},
"lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "fr"
},
"lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "fr"
},
"lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "fr"
},
"lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "it"
},
"lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "it"
},
"lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "it"
},
"lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "ja"
},
"lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "ja"
},
"lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "ja"
},
"lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "ko"
},
"lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "ko"
},
"lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "ko"
},
"lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "pl"
},
"lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "pl"
},
"lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "pl"
},
"lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "pt-BR"
},
"lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "pt-BR"
},
"lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "pt-BR"
},
"lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "ru"
},
"lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "ru"
},
"lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "ru"
},
"lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "tr"
},
"lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "tr"
},
"lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "tr"
},
"lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "zh-Hans"
},
"lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "zh-Hans"
},
"lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "zh-Hans"
},
"lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
"locale": "zh-Hant"
},
"lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
"locale": "zh-Hant"
},
"lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
"locale": "zh-Hant"
}
}
},
"NETStandard.Library/2.0.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0"
}
},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
},
"NuGet.Frameworks/5.11.0": {
"runtime": {
"lib/netstandard2.0/NuGet.Frameworks.dll": {
"assemblyVersion": "5.11.0.10",
"fileVersion": "5.11.0.10"
}
}
},
"NUnit/3.13.3": {
"dependencies": {
"NETStandard.Library": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/nunit.framework.dll": {
"assemblyVersion": "3.13.3.0",
"fileVersion": "3.13.3.0"
}
}
},
"NUnit.Analyzers/3.3.0": {},
"NUnit3TestAdapter/4.3.1": {},
"Selenium.WebDriver/4.8.0": {
"dependencies": {
"Newtonsoft.Json": "13.0.1"
},
"runtime": {
"lib/net6.0/WebDriver.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"System.Reflection.Metadata/1.6.0": {}
}
},
"libraries": {
"Google_Search/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"coverlet.collector/3.1.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wuLDIDKD5XMt0A7lE31JPenT7QQwZPFkP5rRpdJeblyXZ9MGLI8rYjvm5fvAKln+2/X+4IxxQDxBtwdrqKNLZw==",
"path": "coverlet.collector/3.1.2",
"hashPath": "coverlet.collector.3.1.2.nupkg.sha512"
},
"Microsoft.CodeCoverage/17.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+CeYNY9hYNRgv1wAID5koeDVob1ZOrOYfRRTLxU9Zm5ZMDMkMZ8wzXgakxVv+jtk8tPdE8Ze9vVE+czMKapv/Q==",
"path": "microsoft.codecoverage/17.3.2",
"hashPath": "microsoft.codecoverage.17.3.2.nupkg.sha512"
},
"Microsoft.NET.Test.Sdk/17.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-apR0ha1T8FujBwq1P8i/DOZjbI5XhcP/i8As4NnVztVSpZG8GtWRPCstcmgkUkBpvEfcrrDPlJWbuZY+Hl1hSg==",
"path": "microsoft.net.test.sdk/17.3.2",
"hashPath": "microsoft.net.test.sdk.17.3.2.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/1.1.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"
},
"Microsoft.TestPlatform.ObjectModel/17.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DJEIfSA2GDC+2m42vKGNR2hm+Uhta4SpCsLZVVvYIiYMjxtk7GzNnv82qvE4SCW3kIYllMg2D0rr8juuj/f7AA==",
"path": "microsoft.testplatform.objectmodel/17.3.2",
"hashPath": "microsoft.testplatform.objectmodel.17.3.2.nupkg.sha512"
},
"Microsoft.TestPlatform.TestHost/17.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-113J19v31pIx+PzmdEw67cWTZWh/YApnprbclFeat6szNbnpKOKG7Ap4PX5LT6E5Da+xONyilxvx2HZPpEaXPQ==",
"path": "microsoft.testplatform.testhost/17.3.2",
"hashPath": "microsoft.testplatform.testhost.17.3.2.nupkg.sha512"
},
"NETStandard.Library/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
"path": "netstandard.library/2.0.0",
"hashPath": "netstandard.library.2.0.0.nupkg.sha512"
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"path": "newtonsoft.json/13.0.1",
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
},
"NuGet.Frameworks/5.11.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
"path": "nuget.frameworks/5.11.0",
"hashPath": "nuget.frameworks.5.11.0.nupkg.sha512"
},
"NUnit/3.13.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KNPDpls6EfHwC3+nnA67fh5wpxeLb3VLFAfLxrug6JMYDLHH6InaQIWR7Sc3y75d/9IKzMksH/gi08W7XWbmnQ==",
"path": "nunit/3.13.3",
"hashPath": "nunit.3.13.3.nupkg.sha512"
},
"NUnit.Analyzers/3.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gyRc0qmXUIjHaTcHTWZDHK5ccOF6cLEOGQJ6Fj5JWKh8/W1XzPFC6zGXRu5sDNSxfKaNeQRmkdz3M73ArQkY1A==",
"path": "nunit.analyzers/3.3.0",
"hashPath": "nunit.analyzers.3.3.0.nupkg.sha512"
},
"NUnit3TestAdapter/4.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-R+bGFtsUpLWywjT1nb3xMmoVa2AIw6ClIGC+XjW9lYE8hwJeos+NdR/mtg4RXbBphmC9epALrnUc6MM7mUG8+Q==",
"path": "nunit3testadapter/4.3.1",
"hashPath": "nunit3testadapter.4.3.1.nupkg.sha512"
},
"Selenium.WebDriver/4.8.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-12/UPRx8JHOKnQTW4vTeLT+gkMPF/2RJFbGn6rGLj9NBffd62PdXYoFTWFeOwywSfNpWcJVyjzk9MXoJjrA0Ww==",
"path": "selenium.webdriver/4.8.0",
"hashPath": "selenium.webdriver.4.8.0.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"
}
}
}

View File

@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net7.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "7.0.0"
}
}
}

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]

View File

@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Google_Search")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Google_Search")]
[assembly: System.Reflection.AssemblyTitleAttribute("Google_Search")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Vygenerované třídou WriteCodeFragment nástroje MSBuild

View File

@ -0,0 +1 @@
57fd96a9d705a90b39def9b9f1fa69a529108b54

Some files were not shown because too many files have changed in this diff Show More