I am trying to click on one link from a list of links, wait one second (not added yet) and then click on the next link. Using selenium and bs4. This is my code:
links = ['https://www.bing.com', 'https://www.google.com', 'https://www.yahoo.com']
for url in links:
url = "'"+url+"'"
print(url,'\n')
browser = webdriver.Firefox
browser.get(url)
and this is the error I am getting:
Traceback (most recent call last):
File "C:/Users/SK/PycharmProjects/untitled/linkedin_bot.py", line 38, in <module>
browser.get(url)
TypeError: get() missing 1 required positional argument: 'url'
What exactly am I doing wrong and how to solve it? Thanks