WebDriveManager jar 在 Maven 项目中无法识别
WebDriveManager jar is not recognizable in Maven project
在 pom.xml 中从此处配置所需的依赖项:https://github.com/bonigarcia/webdrivermanager
但是在声明 WebDriverManager 时仍然有错误。
您似乎将 WebDriverManager 声明为测试依赖项,但随后您在常规源文件夹中使用。要解决它,只需从 pom.xml 中的 WebDriverManager 声明中删除 <scope>test</scope>
,然后重试。
在 pom.xml 中从此处配置所需的依赖项:https://github.com/bonigarcia/webdrivermanager
但是在声明 WebDriverManager 时仍然有错误。
您似乎将 WebDriverManager 声明为测试依赖项,但随后您在常规源文件夹中使用。要解决它,只需从 pom.xml 中的 WebDriverManager 声明中删除 <scope>test</scope>
,然后重试。