java.lang.NoClassDefFoundError:无法使用SOAPUI selenium脚本初始化类org.apache.http.conn.ssl.SSLConnectionSocketFactory错误

时间:2016-11-08 15:57:26

标签: selenium groovy soapui

我试图从groovy脚本运行此代码但得到错误 - java.lang.NoClassDefFoundError:无法初始化类org.apache.http.conn.ssl.SSLConnectionSocketFactory错误

import org.openqa.selenium.*
import org.openqa.selenium.chrome.ChromeDriver
import java.util.concurrent.TimeUnit
import org.openqa.selenium.OutputType
import org.apache.commons.io.FileUtils

//Initiate WebDriver
System.setProperty("webdriver.chrome.driver", "C:/chromedriver/chromedriver.exe");
log.info(System.getProperty("webdriver.chrome.driver"));

WebDriver driver=new ChromeDriver()


//Setup Environment
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS)
driver.get("http://www.google.com");

//Your Code
Thread.sleep(10000)
driver.quit()

这就是我的尝试:

1)我已将selenium jar 3.0.1放在soap文件夹的lib和bin文件夹中。 2)我尝试将硒降级到2.3.9 3)我尝试过所有三种浏览器(即firefox和chrome) 4)尝试在路径中添加驱动程序

0 个答案:

没有答案