how to press enter in selenium python? how to press enter in selenium python? selenium selenium

how to press enter in selenium python?


It need more clicks:

search_button=driver.find_element_by_xpath("""/html/body/span/section/nav/div[2]/div/div/div[2]/input""")    search_button.send_keys("fast")    while True:        search_button.send_keys(u'\ue007')


That is very interesting. Another solution is better. It is very important to know that, you must press 2 Enter press on Instagram search box. So, for eliminating while loop, you can use this code:search_button.send_keys("#fast")

time.sleep(5)search_button.send_keys(u'\ue007')search_button.send_keys(u'\ue007')