英文:
Problem creating Appium driver while using selenium 4,9,1 and Appium.Webdriver 4.4.5
问题
我们有一个测试框架,在其中使用了带有C#的Selenium WebDriver。我们正在使用Selenium WebDriver 4.9.1和Appium.WebDriver 4.4.5。
当我尝试创建Appium WebDriver 如下所示时,它给我报错:
> 错误 CS7069 引用类型 'IFindsById' 声称它在 'WebDriver' 中定义,但无法找到
如何解决这个问题?
我不太明白这个错误。
英文:
We have a test framework where we use selenium webdriver with C#. We are using Selenium webdriver 4.9.1 and Appium.Webdriver 4.4.5.
When I try to create Appium webdriver as below it gives me the error
> Error CS7069 Reference to type 'IFindsById' claims it is defined in 'WebDriver', but it could not be found
How can I create appiumdriver -
How should I resolve this?
I do not understand the error exactly.
答案1
得分: 0
Appium web driver 4.4.0 不兼容 selenium 4。需要更新到 appium dotnet 客户端版本 5.x beta 版本,然后它就可以正常工作了。
https://github.com/appium/dotnet-client/issues/600
英文:
Appium web driver 4.4.0 is not compatible with selenium 4. One will need to update to appium dotnet client version 5.x beta release. THen it worked fine.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论