From 2618f13261bcd754df9cd228b86fb36dc79f07bb Mon Sep 17 00:00:00 2001 From: Dor Blayzer <59066376+Dor-bl@users.noreply.github.com> Date: Sat, 19 Oct 2024 00:36:02 +0300 Subject: [PATCH 1/2] docs: Update the Dependencies section --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 388f5a2e..ad198d8d 100644 --- a/README.md +++ b/README.md @@ -73,14 +73,13 @@ App management: Please read [issue #15807](https://github.com/appium/appium/issu ## NuGet -NuGet Package: [](http://www.nuget.org/packages/Appium.WebDriver/) +[NuGet Package](http://www.nuget.org/packages/Appium.WebDriver/) Dependencies: - [Selenium.WebDriver](http://www.nuget.org/packages/Selenium.WebDriver/) -- [Newtonsoft.Json](http://www.nuget.org/packages/Newtonsoft.Json/) -- [Selenium.Support](https://www.nuget.org/packages/Selenium.Support/) -- [Castle.Core](https://www.nuget.org/packages/Castle.Core/) +- [System.Text.Json](https://www.nuget.org/packages/System.Text.Json/) +- [System.Drawing.Common](https://www.nuget.org/packages/System.Drawing.Common/) Note: we will NOT publish a signed version of this assembly since the dependencies we access through NuGet do not have a signed version - thus breaking the chain and causing us headaches. With that said, you are more than welcome to download the code and build a signed version yourself. @@ -90,8 +89,8 @@ Note: we will NOT publish a signed version of this assembly since the dependenci - You need to add the following namespace line: `using OpenQA.Selenium.Appium;`. - Use the `AppiumDriver` class/subclass to construct the driver. It works the same as the Selenium Webdriver, except that - the ports are defaulted to Appium values, and the driver does not know how to start the Appium independently. -- To use the Appium methods on Element, you need to specify the parameter of `AppiumDriver` or its subclasses. + the ports default to Appium values, and the driver does not know how to start the Appium independently. +- To use the Appium methods on Element, specify the parameter of `AppiumDriver` or its subclasses. [Read Wiki](https://github.com/appium/appium-dotnet-driver/wiki) From e278d11a1a6f9c1b1174cc0a6f07e296c016b13e Mon Sep 17 00:00:00 2001 From: Dor Blayzer <59066376+Dor-bl@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:41:22 +0300 Subject: [PATCH 2/2] Remove System.Text.Json from Dependencies list --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index ad198d8d..f9d24e9f 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,6 @@ App management: Please read [issue #15807](https://github.com/appium/appium/issu Dependencies: - [Selenium.WebDriver](http://www.nuget.org/packages/Selenium.WebDriver/) -- [System.Text.Json](https://www.nuget.org/packages/System.Text.Json/) - [System.Drawing.Common](https://www.nuget.org/packages/System.Drawing.Common/) Note: we will NOT publish a signed version of this assembly since the dependencies we access through NuGet do not have a signed version - thus breaking the chain and causing us headaches. With that said, you are more than welcome to download the code and build a signed version yourself.