Skip to content

Commit b1267e5

Browse files
committed
Update an example test
1 parent f8eff16 commit b1267e5

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

examples/test_repeat_tests.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@
1010
class RepeatTests(BaseCase):
1111
@parameterized.expand([[]] * 2)
1212
def test_repeat_this_test_with_parameterized(self):
13-
self.page_load_strategy = "none"
1413
self.open("seleniumbase.github.io")
1514
self.click('a[href="help_docs/method_summary/"]')
1615
self.assert_text("API Reference", "h1")
1716

1817

1918
@pytest.mark.parametrize("", [[]] * 2)
2019
def test_repeat_this_test_with_pytest_parametrize(sb):
21-
sb.page_load_strategy = "none"
2220
sb.open("seleniumbase.github.io")
2321
sb.click('a[href="seleniumbase/console_scripts/ReadMe/"]')
2422
sb.assert_text("Console Scripts", "h1")
@@ -27,7 +25,6 @@ def test_repeat_this_test_with_pytest_parametrize(sb):
2725
class RepeatTestsWithPytest:
2826
@pytest.mark.parametrize("", [[]] * 2)
2927
def test_repeat_test_with_pytest_parametrize(self, sb):
30-
sb.page_load_strategy = "none"
3128
sb.open("seleniumbase.github.io")
3229
sb.click('a[href="help_docs/customizing_test_runs/"]')
3330
sb.assert_text("Command Line Options", "h1")

0 commit comments

Comments
 (0)