Hello I am using selenium. I have to send key to this input.
You Can Locate element using xpath kr css where id or classname is not unique.
driver.find_element_by_xpath("//input[@name='emailAddress']")
Or
driver.find_element_by_name('emailAddress')
Or
driver.find_element_by_css_selector("input[name='emailAddress']")
Note: you can do chaining aswell if combination of attributes are unique:
driver.find_element_by_xpath("//input[@name='emailAddress'][@type='email']")