前提・実現したいこと
googlecolabでおこなっています。
seleniumを用いたスクレイピングを行いたいです。
発生している問題・エラーメッセージ
PermissionError Traceback (most recent call last)
/usr/local/lib/python3.6/dist-packages/selenium/webdriver/common/service.py in start(self)
75 stderr=self.log_file,
---> 76 stdin=PIPE)
77 except TypeError:
4 frames
PermissionError: [Errno 13] Permission denied: '/content/drive/MyDrive/chromedriver.exe'
During handling of the above exception, another exception occurred:
WebDriverException Traceback (most recent call last)
/usr/local/lib/python3.6/dist-packages/selenium/webdriver/common/service.py in start(self)
86 raise WebDriverException(
87 "'%s' executable may have wrong permissions. %s" % (
---> 88 os.path.basename(self.path), self.start_error_message)
89 )
90 else:
WebDriverException: Message: 'chromedriver.exe' executable may have wrong permissions. Please see https://sites.google.com/a/chromium.org/chromedriver/home
### 該当のソースコード from selenium import webdriver import time browser = webdriver.Chrome('/content/drive/MyDrive/chromedriver.exe')←エラー ### 試したこと 何をしたらいいのかわかりません。