I would like always click on the first link on Google using selenium robot for python. So for example if I write this :
driver.get("http://www.google.com")
elem = driver.find_element_by_name("q")
elem.send_keys("Tennis")
I would like to click on the first link that appears on Google
Thank you for your help !!