We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef8bf26 commit 3fe79caCopy full SHA for 3fe79ca
examples/verify_undetected.py
@@ -18,12 +18,14 @@ def fail_me(self):
18
self.fail('Selenium was detected! Try using: "pytest --uc"')
19
20
def test_browser_is_undetected(self):
21
+ if not (self.undetectable):
22
+ self.get_new_driver(undetectable=True)
23
self.open("https://nowsecure.nl/#relax")
24
try:
25
self.verify_success()
26
except Exception:
27
self.clear_all_cookies()
- self.get_new_driver(devtools=True)
28
+ self.get_new_driver()
29
30
31
0 commit comments