From eef973f91783c005bcbe4083cb1496e25ea5fa27 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Thu, 8 Feb 2018 15:04:51 -0500 Subject: [PATCH] Set the pytest selenium plugin to be active by default. --- seleniumbase/plugins/pytest_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seleniumbase/plugins/pytest_plugin.py b/seleniumbase/plugins/pytest_plugin.py index 29f5b643..14cee420 100644 --- a/seleniumbase/plugins/pytest_plugin.py +++ b/seleniumbase/plugins/pytest_plugin.py @@ -21,7 +21,7 @@ def pytest_addoption(parser): Example: (--browser=firefox)""") parser.addoption('--with-selenium', action="store_true", dest='with_selenium', - default=False, + default=True, help="Use if tests need to be run with a web browser.") parser.addoption('--env', action='store', dest='environment',