Hello guys I want to loop the url in selenium every one times when it loop it have to change the url in the list when the chrome driver pop up here is my idea code:
from selenium import webdriver
List = ['http://facebook.com','http://youtube.com','http://google.com']
while True:
driver = webdriver.Chrome()
driver.get(List)
driver.quit()