selenium大量并发连接驱动超时

我的业务是根据数据生成一大片报表图,组成一个word文档,量大概10~100之间,挨个执行太慢了,15分钟左右,为了加快速度使用了多线程,而多线程又被机器速度限制,一旦跑的多了,就会有线程被挂起,这时就会报连不上驱动的问题。找了大量文章,都是在写访问超时时间,没有写驱动超时的。。。

解决方案

使用ChromeDriverServiceChromeOptions创建页面对象指定连接驱动超时时间,设置为5分钟,

java 复制代码
	//System.setProperty(global.getConfig("webDriver.driverName"), getUrlStr(global.getConfig("webDriver.driverPath")));
	System.setProperty("webdriver.chrome.driver", "D:/developkit/driver/chromedriver.exe");
	ChromeOptions chromeOptions = new ChromeOptions();
	//无头模式
	chromeOptions.setHeadless(false);
	//设置浏览器完整路径,有时会报找不到浏览器的问题,指定路径
	chromeOptions.setBinary("D:/Program Files (x86)/Google/Chrome/Application/chrome.exe");
	
	Duration duration = Duration.of(5, ChronoUnit.MINUTES);//5分钟超时时间 - 驱动连接超时时间
	ChromeDriverService service = new ChromeDriverService.Builder()
                //超时时间
                .withTimeout(duration)
                //执行驱动,由chromeOptions提供
                //.usingDriverExecutable(getUrl(global.getConfig("webDriver.driverPath")))
                .build();
//        service.start();
	return new ChromeDriver(service, chromeOptions);
	
相关推荐
stormjun5 小时前
彻底解决 Selenium ChromeDriver 不匹配问题:Selenium ChromeDriver 最新版本下载安装教程
python·selenium·测试工具·chromedriver版本·chrodriver下载安装
xwj_8655743326 小时前
selenium(三)
selenium·测试工具·pytest
江上挽风&sty9 小时前
python爬虫--小白篇【selenium自动爬取文件】
爬虫·python·selenium
guohun0117 小时前
selenium 确保页面完全加载
selenium·测试工具
重剑无锋102421 小时前
python实现自动登录12306抢票 -- selenium
开发语言·python·selenium
测试也算程序员?21 小时前
如何用jmeter工具进行性能测试
测试工具·jmeter·单元测试·jenkins·测试用例·压力测试·postman
Ethel L1 天前
Postman[9] csv,json数据驱动及批量处理
测试工具·postman
后端常规开发人员1 天前
Scrapy和Selenium结合使用完整步骤
python·selenium·scrapy
Tech Synapse1 天前
使用Java Selenium修改打开页面窗口大小
java·selenium