File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ SeleniumBase provides additional ``pytest`` command-line options for tests:
405
405
--locale=LOCALE_CODE # (Set the Language Locale Code for the web browser.)
406
406
--start-page=URL # (The starting URL for the web browser when tests begin.)
407
407
--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.)
409
409
--slow # (Slow down the automation. Faster than using Demo Mode.)
410
410
--demo # (Slow down and visually see test actions as they occur.)
411
411
--demo-sleep=SECONDS # (Set the wait time after Demo Mode actions.)
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ SeleniumBase provides additional ``pytest`` command-line options for tests:
116
116
--locale=LOCALE_CODE # (Set the Language Locale Code for the web browser.)
117
117
--start-page=URL # (The starting URL for the web browser when tests begin.)
118
118
--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.)
120
120
--slow # (Slow down the automation. Faster than using Demo Mode.)
121
121
--demo # (Slow down and visually see test actions as they occur.)
122
122
--demo-sleep=SECONDS # (Set the wait time after Demo Mode actions.)
Original file line number Diff line number Diff line change 1
1
# -*- 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 . """
3
3
4
4
import sys
5
5
import time
12
12
13
13
class Base (Plugin ):
14
14
"""
15
- This parser plugin includes the following command-line options for Nose :
15
+ This plugin adds the following command-line options to nosetests :
16
16
--env=ENV (Set the test env. Access with "self.env" in tests.)
17
17
--data=DATA (Extra test data. Access with "self.data" in tests.)
18
18
--var1=DATA (Extra test data. Access with "self.var1" in tests.)
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ def pytest_addoption(parser):
37
37
--locale=LOCALE_CODE (Set the Language Locale Code for the web browser.)
38
38
--start-page=URL (The starting URL for the web browser when tests begin.)
39
39
--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.)
41
41
--slow (Slow down the automation. Faster than using Demo Mode.)
42
42
--demo (Slow down and visually see test actions as they occur.)
43
43
--demo-sleep=SECONDS (Set the wait time after Demo Mode actions.)
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
- """ This is the nosetests Selenium plugin for test configuration. """
2
+ """ This is the Nosetest plugin for setting Selenium test configuration. """
3
3
4
4
import sys
5
5
from nose .plugins import Plugin
@@ -27,7 +27,7 @@ class SeleniumBrowser(Plugin):
27
27
--headed (Run tests with a GUI on Linux OS.)
28
28
--locale=LOCALE_CODE (Set the Language Locale Code for the web browser.)
29
29
--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.)
31
31
--slow (Slow down the automation. Faster than using Demo Mode.)
32
32
--demo (Slow down and visually see test actions as they occur.)
33
33
--demo-sleep=SECONDS (Set the wait time after Demo Mode actions.)
You can’t perform that action at this time.
0 commit comments