Given that this is the element of the text box (Got this from Chrome inspect element https://www.mousehuntgame.com/login.php):
<input name="username" class="username" type="text" placeholder="Enter
your username" onkeyup="app.pages.LoginPage.checkEnter(event, 'login');">
I am trying to input some text into the input box. I searched for the element by name, and used send_keys() to input some text into the text box
elem = driver.find_element_by_name("username")
elem.send_keys("aa")
I receive an exception:
ElementNotVisibleException: Message: element not interactable
I suspect i am not using find_element_by correctly. Where am I going wrong?
Additionally: Is there a way to tell in Chrome what I have selected from a find_element_by method? Is there some sort of method to highlight in the browser, the thing I have selected with my find_element_by method?