Chrome起動用のショートカットを作成
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222 --user-data-dir="C:/Users/ユーザ名/AppData/Local/Google/Chrome/User Data"
ショートカットから 起動したChromeを 使用して検索とかして 以下実行
Python
1from selenium import webdriver
2from selenium.webdriver.chrome.options import Options
3
4from time import sleep
5
6
7sleep(10)
8options = Options()
9options.add_experimental_option("debuggerAddress", "127.0.0.1:9222")
10
11driver = webdriver.Chrome( 'ChromeDriver PATH',options=options)
12
13driver.get('https://www.google.co.jp')
14
15
16print (driver.current_url)
参考サイト
【SeleniumのChromeDriverで起動済みのブラウザを操作する】
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/14 05:41
2020/07/14 05:47
2020/07/14 05:50
2020/07/14 06:18
2020/07/14 06:40