Send keys without specifying element in python selenium webdriver
问题 I have a page whose source code is not available, but there is a input box where cursor is blinking. Can i write something into the text box without finding the element. I mean, some way where send key can automatically look for focussed inputbox and type input to it. My code does not work obviuosly driver.send_keys("testdata") 回答1: solved it from selenium.webdriver.common.action_chains import ActionChains actions = ActionChains(self.driver) actions.send_keys('dummydata') actions.perform()