Hello I am using selenium. I have to send key to this input.
You use any of the unique selectors for the input field: type="email" placeholder="E-posta adresi" value="" name="emailAddress" data-componentname="emailAddress"
xpath:
driver.find_element_by_xpath("//input[@name='emailAddress' and contains(@placeholder, 'E-posta adresi']")
css:
driver.find_element_by_css_selector("input[name='emailAddress'][type='email']")