am trying to open multiple windows of the same URL using selenium, I used a for loop to open the multiple windows:
for i in range(x):
driver = web driver.Chrome(executable_path="path")
driver.get('testing')
but the problem is that the for loop wait until each element to open and load and when it finish automating the website and then it opens the next window. I want all of the windows open simultaneously and execute simultaneously to shorten the time needed, thank you in advance.