Skip to content

Commit

Permalink
Fix path to chrome driver in selenium module
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnazary committed Dec 1, 2024
1 parent 1a82798 commit f5ab52f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stockdex/selenium_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, use_custom_user_agent: bool = False):
self.chrome_options.add_argument("--no-sandbox")
self.chrome_options.add_argument("--disable-dev-shm-usage")
self.chrome_options.binary_location = os.path.join(
os.getcwd(), "chromedriver_linux64"
os.getcwd(), "stockdex/chromedriver_linux64"
)
self.chrome_options.add_argument("--disable-gpu")
self.chrome_options.add_argument("--disable-extensions")
Expand Down

0 comments on commit f5ab52f

Please sign in to comment.