Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Appium.Net/Appium.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<RootNamespace>OpenQA.Selenium</RootNamespace>
<Company>Appium Commiters</Company>
<Product>Appium-Dotnet-Driver</Product>
<Product>Dotnet-Client</Product>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>Copyright © 2023</Copyright>
<PackageProjectUrl>https://github.com/appium/appium-dotnet-driver</PackageProjectUrl>
<RepositoryUrl>https://github.com/appium/appium-dotnet-driver</RepositoryUrl>
<PackageProjectUrl>https://github.com/appium/dotnet-client</PackageProjectUrl>
<RepositoryUrl>https://github.com/appium/dotnet-client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand Down
4 changes: 2 additions & 2 deletions test/integration/IOS/ClipboardTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void WhenClipboardContentTypeIsPlainText_GetClipboardTextShouldReturnActu
[Test]
public void WhenSetClipboardContentTypeIsUrl_GetClipboardShouldReturnEncodedBase64String()
{
const string urlString = "https://github.com/appium/appium-dotnet-driver";
const string urlString = "https://github.com/appium/dotnet-client";
var base64String = Convert.ToBase64String(Encoding.UTF8.GetBytes(urlString));
_driver.SetClipboard(ClipboardContentType.Url, base64String);

Expand All @@ -58,7 +58,7 @@ public void WhenSetClipboardContentTypeIsUrl_GetClipboardShouldReturnEncodedBase
[Test]
public void WhenSetClipboardUrl_GetClipboardUrlShouldReturnUrl()
{
const string urlString = "https://github.com/appium/appium-dotnet-driver";
const string urlString = "https://github.com/appium/dotnet-client";
_driver.SetClipboardUrl(urlString);

Assert.That(() => _driver.GetClipboardUrl(), Does.Match(urlString));
Expand Down
10 changes: 5 additions & 5 deletions test/integration/helpers/Apps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ private static void Init()
{
_testApps = new Dictionary<string, string>
{
{iosTestApp, "https://github.com/appium/appium-dotnet-driver/blob/master/test/integration/apps/archives/TestApp.app.zip?raw=true"},
{iosWebviewApp, "https://github.com/appium/appium-dotnet-driver/blob/master/test/integration/apps/archives/WebViewApp.app.zip?raw=true"},
{iosUICatalogApp, "https://github.com/appium/appium-dotnet-driver/blob/master/test/integration/apps/archives/UICatalog.app.zip?raw=true"},
{androidApiDemos, "https://github.com/appium/appium-dotnet-driver/blob/master/test/integration/apps/archives/ApiDemos-debug.zip?raw=true"},
{vodqaApp, "https://github.com/appium/appium-dotnet-driver/blob/master/test/integration/apps/archives/vodqa.zip?raw=true"}
{iosTestApp, "https://github.com/appium/dotnet-client/tree/master/test/integration/apps/archives/TestApp.app.zip?raw=true"},
{iosWebviewApp, "https://github.com/appium/dotnet-client/tree/master/test/integration/apps/archives/WebViewApp.app.zip?raw=true"},
{iosUICatalogApp, "https://github.com/appium/dotnet-client/tree/master/test/integration/apps/archives/UICatalog.app.zip?raw=true"},
{androidApiDemos, "https://github.com/appium/dotnet-client/tree/master/test/integration/apps/archives/ApiDemos-debug.zip?raw=true"},
{vodqaApp, "https://github.com/appium/dotnet-client/tree/master/test/integration/apps/archives/vodqa.zip?raw=true"}
};
}
else
Expand Down