Update example tests

This commit is contained in:
Michael Mintz 2023-06-07 21:53:15 -04:00
parent 3df27bdbfc
commit 9f1378297b
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ from seleniumbase import BaseCase
if __name__ == "__main__":
from pytest import main
main([__file__, "--uc", "--uc-cdp", "--guest", "-s"])
main([__file__, "--uc", "--uc-cdp", "-s"])
class CDPTests(BaseCase):

View File

@ -5,7 +5,7 @@ from seleniumbase import BaseCase
if __name__ == "__main__":
from pytest import main
main([__file__, "--uc", "--guest", "--uc-cdp", "-s"])
main([__file__, "--uc", "--uc-cdp", "-s"])
class UndetectedTest(BaseCase):