Code Monkey home page Code Monkey logo

Comments (1)

lukeis avatar lukeis commented on May 25, 2024

please only log issues on this repository for the website www.seleniumhq.org itself.

If you have a concise reproducible test case, please log it at github.com/SeleniumHQ/selenium

From what I could see in your files you are not ensuring that quit() is called at the end of your methods, any exception earlier could cause the code to terminate earlier and thus not call driver.quit(); Selenium does not auto close the browser, you must ensure it is done. For example using something like this:

WebDriver driver = new FirefoxDriver();
try {
  /* your code here */
} finally {
  driver.quit();
}

If you have futher questions please post them to the selenium-users google group:
https://groups.google.com/forum/#!forum/selenium-users

from www.seleniumhq.org.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.