I want to create a script that open links automatically. But i want the program to open the link in a one page pop up.. i tried to open two links one by one in the same tab, but it always open it in a new Tab in the same Browser. this is the code:
import webbrowser
import time
search = input("Enter URL Here : ")
search1 = input("Enter Other URL Here : ")
min = int(input("Enter Wait Time : "))
webbrowser.open(search)
time.sleep(min)
webbrowser.open(search1, new=0)
How can I get the URL to be opened in the same Tab as it should be using new=0?