Python Forum

Full Version: I can't open a link with Selenium in Python
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I'm having problems with Selenium in Python.

I'm learning Selenium in python and I can't click on a link.

Usei o:
link.send_keys('ENTER')
link.send_keys('\ue007')
link.click()
link.execute_script("click();")
none of them worked the error thrown is:

selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable 
I noticed that when I manually click on the link that is visually looking like a button the URL doesn't change, this happens with all links similar to it in the same DIV. I saw that in the cambo of all the links are with "#" I looked in the document for a web element with that ID and I didn't find it. Can someone help me?