0


springboot引用selenium报错:org.openqa.selenium.internal.Require

原因:使用的selenium-java版本太高了,之前是用的4.0以上,改成引用次数最多的版本3.141就好了。

maven:

        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>3.141.59</version>
        </dependency>

参考文章:【精选】selenium的Chrome在java中打开报错的问题(selenium-java版本的问题)-CSDN博客


本文转载自: https://blog.csdn.net/osliveandroide/article/details/134529702
版权归原作者 ITnoLove 所有, 如有侵权,请联系我们删除。

“springboot引用selenium报错:org.openqa.selenium.internal.Require”的评论:

还没有评论