我的错误是:org.openqa.selenium.SessionNotCreatedException:session not从超时创建:接收来自渲染器的消息超时:600.000(session info:chrome=79.0.3945.130)Build info:version:'3.141.59',revision:'e82be7d358',time:'2018-11-14T08:17:03'系统信息:主机:'swati con Mac ip:'fe80:0:0:10ea:7ed8:242:224c%en0',os.name:'Mac os X',os.arch:'x86_64',os.version:'10.14.6',java.version:'12.0.2'驱动程序信息:Driver.version:ChromeDriver remote
我使用的代码是:
public static void initialization(){
String browserName = prop.getProperty("browser");
if(browserName.equals("chrome")){
System.setProperty("webdriver.chrome.driver", "/Users/swati/Drivers/chromedriver");
driver = new ChromeDriver();
}
else if(browserName.equals("FF")){
System.setProperty("webdriver.gecko.driver", "/Users/swati/Drivers/geckodriver");
driver = new FirefoxDriver();
}
driver.manage().window().maximize();
driver.manage().deleteAllCookies();
driver.manage().timeouts().pageLoadTimeout(TestUtil.PAGE_LOAD_TIMEOUT,TimeUnit.SECONDS);
driver.manage().timeouts().implicitlyWait(TestUtil.IMPLICIT_WAIT, TimeUnit.SECONDS);
// Create a wait. All test classes use this.
wait = new WebDriverWait(driver, 15);
// Instantiate the Page Class
page = new PageGenerator(driver);
//driver.get(prop.getProperty("url"));
试试这个?
public static void main(String[] args) throws InterruptedException, AWTException {
//Initialize ChromeDriver Instance.
System.setProperty("webdriver.chrome.driver", "C:\\RPCPMAutomation\\WebDrivers\\chromedriver.exe");
"C:\RPCPMAutomation\WebDrivers\chromedriver.exe"-将其更改为Chrome驱动路径。
选项1:更改路径直到chrome.exe
System.setProperty("webdriver.chrome.driver", "/Users/swati/Drivers/chromedriver/chrome.exe");
备选案文2:
使用与您的chrome浏览器兼容的最新chrome驱动程序版本。
选择3
这可能对你有所帮助
org.openqa.selenium.会话不创建异常
我的错误是:org.openqa.selenium.sessionNotCreatedException:会话未从超时创建:从呈现程序接收消息超时:600.000(会话信息:Chrome=79.0.3945.130)构建信息:版本:“3.141.59”,修订:“E82BE7D358”,时间:“2018-11-14T08:17:03”系统信息:主机:“swati-*con-mac”,IP:“fe80
无法启动边缘驱动程序,我得到下面提到的错误和代码,我使用的是下面。请帮忙
问题内容: public class Dem { public static void main(String[] args) throws InterruptedException { WebDriver driver; String url = "https://www.google.com”; System.setProperty(“webdriver.chrome.driver”,”C:\
Selenium webdriver和Chrome driver是最新版本 Selenium webdriver:3.14.0 ChromeDriver:2.42 Java:1.8.0_181 这是运行代码后的错误。谷歌chrome根本没有推出。 严重:org.apache.commons.exec.executeException:进程退出,但出现错误:-1073741792(退出值:-1073
我有一份spark流媒体工作,我正试图由spark-k8运营商提交。我始终保持重启策略。但是,手动删除驱动程序时,驱动程序不会重新启动。我的yaml: Spark版本:2.4.5 apiVersion:“sparkoperator.k8s.io/v1beta2” 我遵循的步骤: 通过kubectl apply-f示例/spark测试创建资源。亚马尔。Pod创建成功。手动删除驱动程序。 预期行为:将
我的目标操作系统将是Windows7。 如有任何帮助,不胜感激,谢谢。