コマンドプロントの非表示についてはServiceクラスのcreationflagsを手動で変更する必要があるそうです。
またweb画面についてはOptionsを使用しヘッドレスモードで実装すれば表示されなくなります。
python
1from selenium.webdriver.chrome.options import Options
2from selenium.webdriver.chrome.service import Service
3from subprocess import CREATE_NO_WINDOW
4
5service = Service(r"C:\Users\たけし\OneDrive\デスクトップ\prof\chromedriver.exe")
6service.creationflags = CREATE_NO_WINDOW
7options = Options()
8options.add_argument('--headless')
9browser = webdriver.Chrome(service=service, chrome_options=options)
参考:https://github.com/SeleniumHQ/selenium/pull/8647#issuecomment-690590293
よって現在のファイルを修正するなら以下のようにするのが良いかと思います。
python
1import tkinter
2#import tkinter as tk
3import tkinter.ttk as ttk
4from tkinter import filedialog
5root = tkinter.Tk()
6root.title("登録システム")
7root.geometry("550x850")
8from selenium import webdriver
9from selenium.webdriver.common.alert import Alert
10from selenium.webdriver.support.ui import Select
11import datetime
12from webdriver_manager.chrome import ChromeDriverManager
13from selenium.webdriver.chrome.options import Options
14from selenium.webdriver.chrome.service import Service
15from subprocess import CREATE_NO_WINDOW
16
17#driver = webdriver.Chrome(ChromeDriverManager().install())
18
19service = Service(r"C:\Users\たけし\OneDrive\デスクトップ\prof\chromedriver.exe")
20service.creationflags = CREATE_NO_WINDOW
21options = Options()
22options.add_argument('--headless')
23browser = webdriver.Chrome(service=service, chrome_options=options)
24
25root.mainloop()
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/29 11:54
2021/07/29 12:12
2021/07/30 11:53
2021/07/30 14:18
2021/08/02 12:46