Firefox已停止为Selenium 2.45工作

问题描述 投票:0回答:2

当我在intelliJ IDEA中运行测试套件时,我遇到了这个问题。

错误详情如下:

Problem signature:
Problem Event Name: APPCRASH
Application Name:   firefox.exe
Application Version:    39.0.0.5659
Application Timestamp:  55933a80
Fault Module Name:  xul.dll
Fault Module Version:   39.0.0.5659
Fault Module Timestamp: 55934bcf
Exception Code: c0000005
Exception Offset:   001e39c7
OS Version: 6.1.7601.2.1.0.256.4
Locale ID:  1033
Additional Information 1:   0a9e
Additional Information 2:   0a9e372d3b4ad19135b953a78882e789
Additional Information 3:   0a9e
Additional Information 4:   0a9e372d3b4ad19135b953a78882e789

Read our privacy statement online:
http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

If the online privacy statement is not available, please read our privacy statement offline:
C:\windows\system32\en-US\erofflps.txt

Firefox版本39和selenium版本2.45

我为我的项目尝试了mvn clean install,但在本地运行测试时,firefox总是崩溃。

有解决方案吗

firefox selenium selenium-webdriver maven-3
2个回答
0
投票

根据你提供的信息,它是security issue,Windows 7抱怨,猜测有一种阻止进一步交互的弹出窗口。

尝试将Selenium更新到2.47.1的最新版本,看看它是否有帮助。

如果它在Firefox的早期版本上工作,那么试试downgrade browser


0
投票

按照以下步骤禁用弹出和错误报告。这将有助于硒测试进一步进行。

禁用Mozilla崩溃弹出窗口的步骤

1.1通过组策略编辑器关闭错误对话框

  1. 通过在“开始”搜索框或“运行”对话框中键入gpedit.msc来打开组策略编辑器。
  2. 导航到计算机配置>管理模板> Windows组件> Windows错误报告。双击右侧窗格中的“防止显示关键错误的用户界面”。 enter image description here
  3. 单击单选按钮启用,然后按确定。 enter image description here 1.2通过注册表关闭错误对话框
  4. 通过在“开始”搜索框或“Win + R运行”对话框中键入regedit来打开注册表编辑器。
  5. 导航到以下注册表项:

HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ Windows错误报告

  1. 双击右侧的DontShowUI条目并将其值更改为1,然后关闭注册表编辑器。 enter image description here 1.3禁用Windows错误报告
  2. 转到控制面板>操作中心>更改操作中心设置(左上角)>问题报告设置。 enter image description here
  3. 选择“从不检查解决方案”,然后单击“确定”。检查前询问是否也有效,因为对话框似乎不会问您。
© www.soinside.com 2019 - 2024. All rights reserved.