0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

webdriver.Chrome() でChromedriverを開こうとしたら、chromedriverは開発元を検証できないため開けませんと表示された

Posted at

はじめに

スクレイピングでChromedriverを使用したく、環境構築時にエラーが発生したため、備忘録としてメモしておきます。

開発環境

Mac
Monterey (ver. 12.2.1)
Chrome(バージョン: 99.0.4844.51(Official Build) (x86_64))

Chromedriverの開発環境構築時に発生したエラー、経緯は以下の通り

1.

brew install chromedriver --cask でchromedriverをインストール

2.

!pip install seleniumでseleniumインストール

3.

以下の通り記述

from selenium import webdriver
import time
import pandas as pd

USER = "test_user"
PASS = "test_pw"

#Chrome起動
browser = webdriver.Chrome()
browser.implicitly_wait(3)

このとき、エラーが発生。

解決方法手順

開発元を検証出来ないと表示される際、キャンセルを選択

「chromedriverは開発元を検証出来ないため、開けません」っと表示され、
ゴミ箱に入れる
キャンセル
の2択が出ますが、

2のキャンセルを選択。

システム環境設定のセキュリティとプライバシーでそのまま許可をクリック

下の方に「このまま許可」と表示されてるはずです。

chromedriverの開発元を検証出来ません。開いてもよろしいですか?

以上のように表示されるので、開くを選択。

これでChromedriverが使えるようになりました。

参照

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?