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 elem
solved it
from selenium.webdriver.common.action_chains import ActionChains actions = ActionChains(self.driver) actions.send_keys('dummydata') actions.perform()