Ouvrir dans un nouvel tab Selenium Python
#open link in new tab
link = "https://www.google.com/"
driver.execute_script(f"window.open('{link}','_blank');")
#open link in new window
link = "https://www.google.com/"
driver.execute_script(f"window.open('{link}');")
The God of Monkeys