Selenium 出现: Caused by: java.lang.ClassNotFoundException: org.w3c.dom.ElementTraversal

来源:互联网 发布:网络刷单兼职可信吗 编辑:程序博客网 时间:2024/04/27 20:37

webDriver 运行的时候出现:
Caused by: java.lang.ClassNotFoundException: org.w3c.dom.ElementTraversal


解决办法:
只需要maven pom.xml 添加依赖就行了

<dependency>    <groupId>xml-apis</groupId>    <artifactId>xml-apis</artifactId>    <version>1.4.01</version></dependency>


参考:
http://mvnrepository.com/artifact/xml-apis/xml-apis/1.4.01

1 0
原创粉丝点击