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-apisgroupId>
    <artifactId>xml-apisartifactId>
    <version>1.4.01version>
dependency>


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

你可能感兴趣的:(Selenium)