Skip to content

Commit

Permalink
Update selenium version to 4.20.0 in requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Apr 24, 2024
1 parent 06b94ec commit a9b8d27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 1 addition & 3 deletions open_webdriver/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,7 @@ def open_webdriver( # pylint: disable=too-many-arguments,too-many-branches
try:
if os.path.exists(LOG_FILE):
os.remove(LOG_FILE)
driver = webdriver.Chrome(
executable_path=driver_path, options=opts, service_log_path=LOG_FILE
)
driver = webdriver.Chrome(options=opts) # , service_log_path=LOG_FILE)
return driver
except Exception as err: # pylint: disable=broad-except
traceback.print_exc()
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
webdriver-manager==4.0.1
selenium==3.141.0
selenium==4.20.0
download
filelock
py7zr==0.20.2
urllib3==1.26.10
certifi
six

0 comments on commit a9b8d27

Please sign in to comment.