回答編集履歴
1
修正
answer
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
options = webdriver.ChromeOptions()
|
|
8
8
|
|
|
9
|
-
prefs = {"credentials_enable_service", False}
|
|
10
|
-
prefs = {
|
|
9
|
+
prefs = {'profile.password_manager_enabled' : False,
|
|
10
|
+
'credentials_enable_service': False}
|
|
11
|
-
options.add_experimental_option(
|
|
11
|
+
options.add_experimental_option('prefs', prefs)
|
|
12
12
|
|
|
13
13
|
driver = webdriver.Chrome(chrome_options=options)
|
|
14
14
|
```
|