what is the right code to find the email input for https://accounts.google.com/ServiceLogin?
the html is <input id="Email" class="" type="email" spellcheck="false" value="" placeholder="Email" name="Email"></input>
I'm referencing https://pypi.python.org/pypi/selenium
from selenium import webdriver
browser = webdriver.Firefox()
browser.get('https://accounts.google.com/ServiceLogin?')
for elem = browser.find_element_by_name() i've tried:
elem=browser.find_element_by_name('input id="Email"')
elem=browser.find_element_by_name('input id="Email" class="" type="email" spellcheck="false" value="" placeholder="Email" name="Email"')
elem=browser.find_element_by_name('input id="Email" class=""')
elem=browser.find_element_by_name('id="Email" class="" type="email" spellcheck="false" value="" placeholder="Email" name="Email"')
elem=browser.find_element_by_name('id="Email" class=""')
none of these work.