Selenium支持高版本的FireFox

简介:
今天写个自动刷新页面的脚本,发现在启动firefox的时候,出现一个类似如下的错误:
请在文本框输入文字15:22:12.031 WARN - GET /selenium-server/driver/?cmd=getNewBrowserSession&1=*fir
efox&2=http://www.google.com HTTP/1.1
java.lang.RuntimeException: Firefox refused shutdown while preparing a profile
at org.openqa.selenium.server.browserlaunchers.FirefoxCustomProfileLaunc
her.waitForFullProfileToBeCreated(FirefoxCustomProfileLauncher.java:277)
  后来查了google发现问题是selenium不支持高版本firefox, 解决方案如下:
  1、用winrar打开selenium-server.jar;
  2、查找两个目录:customProfileDirCUSTFFCHROME和customProfileDirCUSTFF;
  3、搜索每个目录,对每个文件install.rdf,编辑如下行:
  修改
<!-- Firefox -->
<em:targetApplication>
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>1.4.1</em:minVersion>
<em:maxVersion>3.5.*</em:maxVersion>
</Description>
</em:targetApplication>
<!-- Firefox -->
<em:targetApplication>
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>1.4.1</em:minVersion>
<em:maxVersion>3.6.*</em:maxVersion>
</Description>
</em:targetApplication>
  还可以改得更加大,那么就可以支持4.0 的firefox了


最新内容请见作者的GitHub页:http://qaseven.github.io/
相关文章
|
6月前
|
Web App开发 测试技术 Python
零基础学会用Airtest-Selenium对Firefox进行自动化测试
零基础学会用Airtest-Selenium对Firefox进行自动化测试
110 0
|
Web App开发 Windows
Selenium Chrome浏览器版本与chromedriver驱动兼容版本对照表
Selenium Chrome浏览器版本与chromedriver驱动兼容版本对照表
1678 0
Selenium Chrome浏览器版本与chromedriver驱动兼容版本对照表
|
Web App开发
selenium之 chromedriver与chrome版本映射表(更新至v2.43)
selenium之 chromedriver与chrome版本映射表(更新至v2.43)
959 0
|
6月前
|
Web App开发 前端开发 程序员
【 selenium】selenium4新版本使用指南
【 selenium】selenium4新版本使用指南
1235 1
|
6月前
|
Web App开发 数据采集 IDE
【selenium】selenium4新版本自动获取驱动的常见问题
【selenium】selenium4新版本自动获取驱动的常见问题
795 0
|
Python
wallhaven壁纸下载-selenium版本
wallhaven壁纸下载-selenium版本
116 0
|
Web App开发
Selenium自动化chrome驱动版本匹配但是调用浏览器失败:Only local connections are allowed. 问题解决
Selenium自动化chrome驱动版本匹配但是调用浏览器失败:Only local connections are allowed. 问题解决
435 0
|
Web App开发 Windows
WINDOWS下测试NPAPI插件,请使用FireFox 49版本
WINDOWS下测试NPAPI插件,请使用FireFox 49版本
283 0
|
Web App开发 安全 Linux
Firefox 99 正式发布,最后的两位数版本
Firefox 99 正式发布,最后的两位数版本
159 0
Firefox 99 正式发布,最后的两位数版本
|
Web App开发
error:selenium操作Firefox报错socket.error: [Errno 10054]
error:selenium操作Firefox报错socket.error: [Errno 10054]
115 0
error:selenium操作Firefox报错socket.error: [Errno 10054]