Code snippet:
import selenium
from selenium import webdriver
driver = webdriver.Chrome()
urls =['fb.com','instgram.com' , 'youtube.com']
for url in urls:
driver.get(url)
driver.close()
The problem is that it opens the new link on top of the previous one. I want each site to open on a new tab.