I am using the below code to open a new chrome browser window.When i run the code it is always opening a new page in the existing tab.
import webbrowser
import pyautogui
url = 'google.com'
chrome_path = r'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe'
webbrowser.register('chrome', None, webbrowser.BackgroundBrowser(chrome_path))
webbrowser.get('chrome').open_new(url)
print(pyautogui.position())
Could any one suggest how to open a new tab instead?