我正在使用通过Python实现的Webdriver在IE中运行我的selenium测试脚本;但是,当我调用webdriver.quit()时,这将导致python崩溃。当测试用例结束并调用webdriver.quit时,会弹出一个Windows提示符,详细说明python.exe已崩溃。在转到事件查看器并查看其中一个错误后,我发现了以下内容:
-General-
Faulting application name: python.exe, version: 0.0.0.0, time stamp: 0x4cf14060
Faulting module name: IEDriver.dll, version: 0.0.0.0, time stamp: 0x4e2dbecc
Exception code: 0xc0000005
Fault offset: 0x0007f0ae
Faulting process id: 0x2148
Faulting application start time: 0x01cc6ca18a2b2d5a
Faulting application path: C:\Python27\python.exe
Faulting module path: C:\Python27\lib\site-packages\selenium\webdriver\ie\IEDriver.dll
Report Id: e1f5cf3c-d894-11e0-ac1f-782bcb930798
-Detailed-
Log Name: Application
Source: Application Error
Date: 9/6/2011 10:31:18 AM
Event ID: 1000
Task Category: (100)
Level: Error
Keywords: Classic
User: N/A
Computer: Balt-002670.SYSALLI.com
Description:
Faulting application name: python.exe, version: 0.0.0.0, time stamp: 0x4cf14060
Faulting module name: IEDriver.dll, version: 0.0.0.0, time stamp: 0x4e2dbecc
Exception code: 0xc0000005
Fault offset: 0x0007f0ae
Faulting process id: 0x2148
Faulting application start time: 0x01cc6ca18a2b2d5a
Faulting application path: C:\Python27\python.exe
Faulting module path: C:\Python27\lib\site-packages\selenium\webdriver\ie\IEDriver.dll
Report Id: e1f5cf3c-d894-11e0-ac1f-782bcb930798
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Application Error" />
<EventID Qualifiers="0">1000</EventID>
<Level>2</Level>
<Task>100</Task>
<Keywords>0x80000000000000</Keywords>
<TimeCreated SystemTime="2011-09-06T14:31:18.000000000Z" />
<EventRecordID>7302</EventRecordID>
<Channel>Application</Channel>
<Computer>Balt-002670.SYSALLI.com</Computer>
<Security />
</System>
<EventData>
<Data>python.exe</Data>
<Data>0.0.0.0</Data>
<Data>4cf14060</Data>
<Data>IEDriver.dll</Data>
<Data>0.0.0.0</Data>
<Data>4e2dbecc</Data>
<Data>c0000005</Data>
<Data>0007f0ae</Data>
<Data>2148</Data>
<Data>01cc6ca18a2b2d5a</Data>
<Data>C:\Python27\python.exe</Data>
<Data>C:\Python27\lib\site-packages\selenium\webdriver\ie\IEDriver.dll</Data>
<Data>e1f5cf3c-d894-11e0-ac1f-782bcb930798</Data>
</EventData>
</Event>
通过调试方法,我确定以下代码行导致崩溃:
RemoteWebDriver.quit(个体)
此函数调用位于webdriver.py模块的IE版本中。
系统规格:
操作系统:Windows 7
浏览器:IE 9
Selenium版本:2.0
正如Tourman建议的那样,我向Selenium开发者提出了一个问题。这个问题可以在这里找到: http://code.google.com/p/selenium/issues/detail?id=2408
答案 0 :(得分:0)
这听起来像是Webdriver中的一个错误,但是如果没有堆栈跟踪和有问题的功能代码,那么就没有什么可看的了。
我会把它提交给开发者: