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

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

版权声明:本文为博主原创文章,未经博主允许不得转载。

原文地址:https://www.cnblogs.com/xinleishare/p/4793540.html