I am trying to write a program that will log me in to my Wells Fargo account. However, after running my code, it just takes me to the same page and doesn't log me in. I tried putting the log in section in a loop and it continuously loops.
Here is the code :
from selenium import webdriver
import time
browser = webdriver.Chrome()
browser.get('https://connect.secure.wellsfargo.com/auth/login/present?
origin=cob&error=yes&LOB=CONS&destination=AccountSummary')
userID = browser.find_element_by_name('j_username')
userID.clear()
userID.send_keys('my_username')
password = browser.find_element_by_name('j_password')
password.clear()
password.send_keys('my_password')
password.submit()
time.sleep(5)
browser.quit
Below is a screenshot.
And here is the copy pasted error code I receive :
[9152:6848:1218/202615.262:ERROR:service_manager.cc(157)] Connection InterfaceProviderSpec prevented service: content_renderer from binding interface: blink::mojom::ReportingServiceProxy exposed by: content_browser
I've tried googling that error code along with key phrases and parts of the error code and have not found a solution yet.

To login into your
Wells Fargoaccount you can use the following code block :Update :
If you still face the same issue (after going through
Error: Connection InterfaceProviderSpec prevented service: content_renderer from binding interfaceand"service_manager:connector" prevented service: content_renderer from binding interface) I would suggest to uninstallChrome BrowserthroughRevo Uninstallerand runCCleanerto wipe oout all the OS chores and installChrome Browserafresh.