Giter Club home page Giter Club logo

Comments (7)

rarajabs avatar rarajabs commented on September 7, 2024

I guess this is your issue:

please check this commit: SeleniumHQ/selenium@cc0647a

from pytest-selenium.

birdsarah avatar birdsarah commented on September 7, 2024

Thanks for the quick response @rarelam, any tips on how I configure this in my test suite?

from pytest-selenium.

rarajabs avatar rarajabs commented on September 7, 2024

I don't think we can do anything for now, unless selenium has released new version. :(

from pytest-selenium.

bobsilverberg avatar bobsilverberg commented on September 7, 2024

I may be wrong, but I believe all that Selenium commit does is create a default value for that pref in the Firefox profile, so you should be able to do that yourself by setting that pref into the profile programatically before launching Firefox.

from pytest-selenium.

davehunt avatar davehunt commented on September 7, 2024

A new release of Selenium is needed to pick up the new default preference values, however you can use --firefox-preference startup.homepage_welcome_url.additional about:blank on the command line to set the preference yourself.

from pytest-selenium.

PanagiotisDrakatos avatar PanagiotisDrakatos commented on September 7, 2024

put this in your code if you work in java also it is similar and in other languages

FirefoxProfile profile=new FirefoxProfile();
profile.setPreference("javascript.options.showInConsole", true);
profile.setPreference("network.http.max-connections-per-server", 100);
profile.setPreference("browser.startup.homepage", "about:blank");
profile.setPreference("startup.homepage_welcome_url", "about:blank");
profile.setPreference("startup.homepage_welcome_url.additional", "about:blank");
profile.setPreference("webdriver_accept_untrusted_certs", true);
profile.setPreference("webdriver_assume_untrusted_issuer", true);
WebDriver  driver = new FirefoxDriver(profile);

pllzz let me know if i help y

from pytest-selenium.

birdsarah avatar birdsarah commented on September 7, 2024

thanks so much @davehunt that works great!

from pytest-selenium.

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.