I want to open a url in a new tab in Chrome. It worked with Process.Start(url);
before but now it opens the tab along with a new tab in a new window. I also tried with Process.Start(@"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", url);
, but it does the same.
Any solution for this?