从此处在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>
,然后重试。