Update the documentation

This commit is contained in:
Michael Mintz 2022-11-29 00:55:29 -05:00
parent 44ab077b8a
commit 47aa867948
5 changed files with 5 additions and 5 deletions

View File

@ -37,7 +37,7 @@ pytest new_test.py --rec -q -s --url=wikipedia.org
8 # type "c" and press [ENTER] to continue
9 -> import pdb; pdb.set_trace()
return None
(Pdb++) c
(Pdb+) c
>>>>>>>>>>>>>>>>>> PDB continue >>>>>>>>>>>>>>>>>>

View File

@ -33,4 +33,4 @@ mkdocs-material==8.5.10
mkdocs-exclude-search==0.6.4
mkdocs-simple-hooks==0.1.5
mkdocs-material-extensions==1.1.1
mkdocs-minify-plugin==0.6.1
mkdocs-minify-plugin==0.6.2

View File

@ -341,7 +341,7 @@ sbase mkfile new_test.py
* Options:
``-b`` / ``--basic`` (Basic boilerplate / single-line test)
``-r`` / ``--rec`` (adds ipdb breakpoint for Recorder Mode)
``-r`` / ``--rec`` (adds Pdb+ breakpoint for Recorder Mode)
* Language Options:

View File

@ -259,7 +259,7 @@ def show_mkfile_usage():
print(" sbase mkfile new_test.py")
print(" Options:")
print(" -b / --basic (Basic boilerplate / single-line test)")
print(" -r / --rec (add pdb++ breakpoint for Recorder Mode)")
print(" -r / --rec (adds Pdb+ breakpoint for Recorder Mode)")
print(" Language Options:")
print(" --en / --English | --zh / --Chinese")
print(" --nl / --Dutch | --fr / --French")

View File

@ -1,6 +1,6 @@
"""
The setup package to install SeleniumBase dependencies and plugins.
(Uses selenium 3.x and is compatible with Python 2.7+ and Python 3.6+)
(Uses selenium 4.x and is compatible with Python 2.7+ and Python 3.6+)
"""
from setuptools import setup, find_packages # noqa: F401