gpt4 book ai didi

java - Maven 存储库中的 selenium-api-3.0.1.jar 缺少 Selenium WebDriver 3.0.1 Actions 类

转载 作者:行者123 更新时间:2023-11-30 06:53:19 26 4
gpt4 key购买 nike

我在基于 Maven 的项目中使用 Selenium WebDriver 3.0.1。此代码片段失败(无法编译):

Actions myActions = new Actions(myWebDriver);

因为从maven下载的selenium-api-3.0.1.jar中缺少org.openqa.selenium.interactions.Actions类。这是 pom.xml 的相关部分:

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-firefox-driver</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
<version>3.0.1</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-htmlunit-driver</artifactId>
<version>2.52.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-driver</artifactId>
<version>2.31.0</version>
</dependency>

我还在 pom.xml 中测试了这种替代依赖关系:

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>3.0.1</version>
</dependency>

但在这两种情况下,下载的 selenium-api Artifact 中都缺少 org.openqa.selenium.interactions.Actions 类。

使用 grepcode.com 在 Maven 存储库中搜索该类只能找到 2.47.1 或更早版本。

我直接从 http://www.seleniumhq.org/download/ 下载了 Selenium Client & WebDriver Language Bindings zip 包url 和包含的 client-combined-3.0.1-nodeps.jar 文件确实包含 org.openqa.selenium.interactions.Actions 类。

看来我错过了一些东西......但我真的不知道如何修复 Maven 依赖关系。任何帮助都将被热情接受!

最佳答案

似乎 org.openqa.selenium.interactions 包(包括 Actions 类)已移至 selenium-remote-driver

您可以直接向 selenium-remote-driver 添加依赖项,或者更简单,向 selenium-java 添加依赖项(这取决于 >selenium-chrome-driver 又依赖于 selenium-remote-driver)。我会尝试使用后一个选项,因为这应该允许您摆脱许多其他显式依赖项。

关于java - Maven 存储库中的 selenium-api-3.0.1.jar 缺少 Selenium WebDriver 3.0.1 Actions 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42310996/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com