File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 10
10
class RepeatTests (BaseCase ):
11
11
@parameterized .expand ([[]] * 2 )
12
12
def test_repeat_this_test_with_parameterized (self ):
13
- self .page_load_strategy = "none"
14
13
self .open ("seleniumbase.github.io" )
15
14
self .click ('a[href="help_docs/method_summary/"]' )
16
15
self .assert_text ("API Reference" , "h1" )
17
16
18
17
19
18
@pytest .mark .parametrize ("" , [[]] * 2 )
20
19
def test_repeat_this_test_with_pytest_parametrize (sb ):
21
- sb .page_load_strategy = "none"
22
20
sb .open ("seleniumbase.github.io" )
23
21
sb .click ('a[href="seleniumbase/console_scripts/ReadMe/"]' )
24
22
sb .assert_text ("Console Scripts" , "h1" )
@@ -27,7 +25,6 @@ def test_repeat_this_test_with_pytest_parametrize(sb):
27
25
class RepeatTestsWithPytest :
28
26
@pytest .mark .parametrize ("" , [[]] * 2 )
29
27
def test_repeat_test_with_pytest_parametrize (self , sb ):
30
- sb .page_load_strategy = "none"
31
28
sb .open ("seleniumbase.github.io" )
32
29
sb .click ('a[href="help_docs/customizing_test_runs/"]' )
33
30
sb .assert_text ("Command Line Options" , "h1" )
You can’t perform that action at this time.
0 commit comments