Skip to content

Commit d9fc9eb

Browse files
committed
Update the error message for fixing a SeleniumBase install
1 parent bcd817d commit d9fc9eb

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

seleniumbase/fixtures/base_case.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8584,10 +8584,11 @@ def setUp(self, masterqa_mode=False):
85848584
# Verify that SeleniumBase is installed successfully
85858585
if not hasattr(self, "browser"):
85868586
raise Exception(
8587-
"""SeleniumBase plugins DID NOT load!\n\n"""
8588-
"""*** Please REINSTALL SeleniumBase using: >\n"""
8589-
""" >>> "pip install -r requirements.txt"\n"""
8590-
""" >>> "python setup.py install" """
8587+
'SeleniumBase plugins DID NOT load! * Please REINSTALL!\n'
8588+
'*** Either install SeleniumBase in Dev Mode from a clone:\n'
8589+
' >>> "pip install -e ." (Run in DIR with setup.py)\n'
8590+
'*** Or install the latest SeleniumBase version from PyPI:\n'
8591+
' >>> "pip install -U seleniumbase" (Run in any DIR)'
85918592
)
85928593

85938594
if not hasattr(sb_config, "_is_timeout_changed"):

0 commit comments

Comments
 (0)