I'm trying to write a python3 code which will open a internal website of Innovaphone and click on the link and then click a button to activate it. I need to do this after 99 hours.
I'm getting error.
Missing module docstring.
Instance of 'Webdriver' has no 'find_element_by_link_text' member
selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH.
I tried the below code;
from selenium import webdriver
browser= webdriver.Firefox()
browser.get('https://192.168.1.1/')
new_releases = browser.find_element_by_link_text('New Releases')
new_releases.click()
There is a clickable link in the webpage and I don't know how to get the link elements.
Thank you for all your help.