-
Notifications
You must be signed in to change notification settings - Fork 189
Description
Here's what I did, I referred the NuGet gallery for the Appium WebDriver 5.0.0-beta01 package and went through the source repository -
https://www.nuget.org/packages/Appium.WebDriver/5.0.0-beta01
https://github.com/appium/appium-dotnet-driver
When I try to run this code with Selenium Packages upgraded to version 4.0, I still get errors. For Example -
Hence, classes like "RemoteWebElementFactory" will be no more available from Selenium for Appium to consume. This means there is a severe rework needs to be done to create any corresponding elements based on relevant platforms.
- DesiredCapabilities class is made internal within Selenium as part of V4.0 due to deprecation. Hence AppiumCapabilities cannot inherit the class anymore.
- There is no "CommandInfoRepository" to create a series of commands in a dictionary to run using ICommandExecutor.
I don't think the version 5.0.0-beta01 source code is reworked significantly to support the Selenium V4.0. I will check the forks to see if anyone has already done these modifications. Any thoughts on these issues and how we can approach this would be great.
Thanks.