Skip to content

Commit cd89abe

Browse files
committed
Update the docs
1 parent 3bfa7ed commit cd89abe

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ SeleniumBase provides additional ``pytest`` command-line options for tests:
405405
--locale=LOCALE_CODE # (Set the Language Locale Code for the web browser.)
406406
--start-page=URL # (The starting URL for the web browser when tests begin.)
407407
--archive-logs # (Archive old log files instead of deleting them.)
408-
--time-limit=SECONDS # (Safely fail any test that exceeds the limit limit.)
408+
--time-limit=SECONDS # (Safely fail any test that exceeds the time limit.)
409409
--slow # (Slow down the automation. Faster than using Demo Mode.)
410410
--demo # (Slow down and visually see test actions as they occur.)
411411
--demo-sleep=SECONDS # (Set the wait time after Demo Mode actions.)

help_docs/customizing_test_runs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ SeleniumBase provides additional ``pytest`` command-line options for tests:
116116
--locale=LOCALE_CODE # (Set the Language Locale Code for the web browser.)
117117
--start-page=URL # (The starting URL for the web browser when tests begin.)
118118
--archive-logs # (Archive old log files instead of deleting them.)
119-
--time-limit=SECONDS # (Safely fail any test that exceeds the limit limit.)
119+
--time-limit=SECONDS # (Safely fail any test that exceeds the time limit.)
120120
--slow # (Slow down the automation. Faster than using Demo Mode.)
121121
--demo # (Slow down and visually see test actions as they occur.)
122122
--demo-sleep=SECONDS # (Set the wait time after Demo Mode actions.)

seleniumbase/plugins/base_plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
""" This is the Nose plugin for setting a test environment and saving logs. """
2+
""" This is the Nosetest plugin for setting base configuration and logging. """
33

44
import sys
55
import time
@@ -12,7 +12,7 @@
1212

1313
class Base(Plugin):
1414
"""
15-
This parser plugin includes the following command-line options for Nose:
15+
This plugin adds the following command-line options to nosetests:
1616
--env=ENV (Set the test env. Access with "self.env" in tests.)
1717
--data=DATA (Extra test data. Access with "self.data" in tests.)
1818
--var1=DATA (Extra test data. Access with "self.var1" in tests.)

seleniumbase/plugins/pytest_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def pytest_addoption(parser):
3737
--locale=LOCALE_CODE (Set the Language Locale Code for the web browser.)
3838
--start-page=URL (The starting URL for the web browser when tests begin.)
3939
--archive-logs (Archive old log files instead of deleting them.)
40-
--time-limit=SECONDS (Safely fail any test that exceeds the limit limit.)
40+
--time-limit=SECONDS (Safely fail any test that exceeds the time limit.)
4141
--slow (Slow down the automation. Faster than using Demo Mode.)
4242
--demo (Slow down and visually see test actions as they occur.)
4343
--demo-sleep=SECONDS (Set the wait time after Demo Mode actions.)

seleniumbase/plugins/selenium_plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
""" This is the nosetests Selenium plugin for test configuration. """
2+
""" This is the Nosetest plugin for setting Selenium test configuration. """
33

44
import sys
55
from nose.plugins import Plugin
@@ -27,7 +27,7 @@ class SeleniumBrowser(Plugin):
2727
--headed (Run tests with a GUI on Linux OS.)
2828
--locale=LOCALE_CODE (Set the Language Locale Code for the web browser.)
2929
--start-page=URL (The starting URL for the web browser when tests begin.)
30-
--time-limit=SECONDS (Safely fail any test that exceeds the limit limit.)
30+
--time-limit=SECONDS (Safely fail any test that exceeds the time limit.)
3131
--slow (Slow down the automation. Faster than using Demo Mode.)
3232
--demo (Slow down and visually see test actions as they occur.)
3333
--demo-sleep=SECONDS (Set the wait time after Demo Mode actions.)

0 commit comments

Comments
 (0)