Skip to content Skip to sidebar Skip to footer

Logging Into Wells Fargo Using Selenium

I am trying to log into my bank account on Wells Fargo using Selenium Webdriver. However, I keep getting redirected to the below page whether I use Chrome, Firefox or Edge. I am a

Solution 1:

Try this code:

from selenium.webdriver import Chrome

browser = Chrome()
browser.get('https://wellsfargo.com')

#GET user element and POST username to element
user = browser.find_element_by_id('userid')
user.send_keys('USERNAME')

#GET user element and POST password to element
passwd = browser.find_element_by_id('password')
passwd.send_keys('PASSWORD')
passwd.submit()
# ===> you should be logged in and redirected to account page. <=== # 

Please tell me how it works out for you. since im not the bank client, i cannot fo beyond this point. :)


Post a Comment for "Logging Into Wells Fargo Using Selenium"