Filling a password form with Splinter
I'm trying to fill two forms and login to my banks website. I can get the first form for the username to fill but I can't seem to get the form for the password to fill. Here's the code I'm using: from splinter import Browser username2 = '***' password2 = '***' browser2 = Browser() browser2.visit('http://mijn.ing.nl') browser2.find_by_css('.firstfield').fill(username2) browser2.find_by_id('#easnhbcc').fill(password2) and this is the full traceback: /usr/local/bin/python2 "/Users/narekaramjan/Dropbox/Python/Python 273/Test.py" Traceback (most recent call last): File "/Users/narekaramjan/Dropbox