Skip to content

Commit 9dec7b7

Browse files
committed
Update the comments
1 parent 330b500 commit 9dec7b7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

seleniumbase/console_scripts/run.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def show_inject_objects_usage():
119119
print(" seleniumbase inject-objects [SELENIUMBASE_PYTHON_FILE]")
120120
print(" Options:")
121121
print(" -c, --comments (Add object selectors to the comments.)")
122-
print(" (Default: No added comments.)")
122+
print(" (Default: No added comments.)")
123123
print(" Output:")
124124
print(' Takes the page objects found in the "page_objects.py"')
125125
print(' file and uses those to replace matching selectors in')
@@ -134,7 +134,7 @@ def show_objectify_usage():
134134
print(" seleniumbase objectify [SELENIUMBASE_PYTHON_FILE]")
135135
print(" Options:")
136136
print(" -c, --comments (Add object selectors to the comments.)")
137-
print(" (Default: No added comments.)")
137+
print(" (Default: No added comments.)")
138138
print(" Output:")
139139
print(' A modified version of the file where the selectors')
140140
print(' have been replaced with variable names defined in')
@@ -152,7 +152,7 @@ def show_revert_objects_usage():
152152
print(" seleniumbase revert-objects [SELENIUMBASE_PYTHON_FILE]")
153153
print(" Options:")
154154
print(" -c, --comments (Keep existing comments for the lines.)")
155-
print(" (Default: No comments are kept.)")
155+
print(" (Default: No comments are kept.)")
156156
print(" Output:")
157157
print(' Reverts the changes made by "seleniumbase objectify" or')
158158
print(' "seleniumbase inject-objects" when run against a')

seleniumbase/utilities/selenium_ide/objectify.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def invalid_objectify_run_command():
3535
exp += " seleniumbase objectify [SELENIUMBASE_PYTHON_FILE]\n"
3636
exp += " Options:\n"
3737
exp += " -c, --comments (Add object selectors to the comments.)\n"
38-
exp += " (Default: No added comments.)\n"
38+
exp += " (Default: No added comments.)\n"
3939
exp += " Output:\n"
4040
exp += " Converts a SeleniumBase Python file into one that uses\n"
4141
exp += " the Page Object Pattern by converting page selectors\n"
@@ -52,7 +52,7 @@ def invalid_inject_objects_run_command():
5252
exp += " seleniumbase inject-objects [SELENIUMBASE_PYTHON_FILE]\n"
5353
exp += " Options:\n"
5454
exp += " -c, --comments (Add object selectors to the comments.)\n"
55-
exp += " (Default: No added comments.)\n"
55+
exp += " (Default: No added comments.)\n"
5656
exp += " Output:\n"
5757
exp += ' Takes the page objects found in the "page_objects.py"\n'
5858
exp += " file and uses those to replace matching selectors in\n"
@@ -77,7 +77,7 @@ def invalid_revert_objects_run_command():
7777
exp += " seleniumbase revert-objects [SELENIUMBASE_PYTHON_FILE]\n"
7878
exp += " Options:\n"
7979
exp += " -c, --comments (Keep existing comments for the lines.)\n"
80-
exp += " (Default: No comments are kept.)\n"
80+
exp += " (Default: No comments are kept.)\n"
8181
exp += " Output:\n"
8282
exp += ' Reverts the changes made by "seleniumbase objectify" or\n'
8383
exp += ' "seleniumbase inject-objects" when run against a\n'

0 commit comments

Comments
 (0)