Skip to content

Commit

Permalink
No cert check in firefox if verify is false
Browse files Browse the repository at this point in the history
  • Loading branch information
sunetfreitag committed Jan 16, 2025
1 parent b8681ef commit 1374407
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test_login_selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ def test_node_login(self):
if use_driver_service == False:
self.logger.info(f'Initialize Firefox driver without driver service')
options = FirefoxOptions()
if drv.verify == False:
options.add_argument("--ignore-certificate-errors")
# options.add_argument("--headless")
driver = webdriver.Firefox(options=options)
else:
Expand Down

0 comments on commit 1374407

Please sign in to comment.