Skip to content

Commit

Permalink
Update OrcidBrowser.py
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro authored Oct 5, 2023
1 parent e9d9f3d commit b1e0a9f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion orcid/OrcidBrowser.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ def __init__(self):
print(self.signin_page)
print(self.auth_page)
print('------------------------------------------')
self.ff = webdriver.Firefox(options=options)
try:
self.ff = webdriver.Firefox(options=options)
except Exception as e:
print("Exception occurred:" + str(e))
else:
ops = Options()

Expand Down

0 comments on commit b1e0a9f

Please sign in to comment.