Closed
Bug 1320630
Opened 8 years ago
Closed 7 years ago
Firefox crashes (A breakpoint has been reached) when quitting selenium webdriver
Categories
(Remote Protocol :: Marionette, defect)
Tracking
(Not tracked)
RESOLVED
WORKSFORME
People
(Reporter: vincent.tollu, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0
Build ID: 20161104212021
Steps to reproduce:
VMWare based Server 2012 R2 server
Firefox version 50
I conduct a very basic Selenium Test:
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestConnectionHomePage()
{
RemoteWebDriver driver = new FirefoxDriver();
driver.Navigate().GoToUrl("http://google.fr");
//Assert.IsTrue(2 == 4);
driver.Quit();
}
}
<package id="Selenium.WebDriver" version="3.0.1" targetFramework="net452" />
Geckodriver v0.11.1: 10th of october 216 version
Actual results:
Upon the instruction driver.Quit();, the error arises (no registered crash in about:crashes though)
---------------------------
firefox.exe - Application Error
---------------------------
The exception Breakpoint
A breakpoint has been reached.
(0x80000003) occurred in the application at location 0x6de6ed40.
Expected results:
No crash would be better.
Updated•8 years ago
|
Component: Untriaged → Marionette
Product: Core → Testing
Comment 1•7 years ago
|
||
Can’t reproduce.
Status: UNCONFIRMED → RESOLVED
Closed: 7 years ago
Resolution: --- → WORKSFORME
Updated•2 years ago
|
Product: Testing → Remote Protocol
You need to log in
before you can comment on or make changes to this bug.
Description
•